summaryrefslogtreecommitdiff
path: root/download
blob: 33e515120e7e172804767397899d1fcdac592842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#!/bin/sh
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
# 
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org.  If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************

# environment setup yet?
if [ -z "$TARFILE_LOCATION" ]; then
    . ./Env.Host.sh
fi

# we want to clone if we are in the bootstrap git repo and clone does not exist yet
# we need to test for a .git in order not to clone after rsync if we are called in
# the inner autogen of the buid-repo based build

check_file()
{
    echo "Looking for $1 ..."
    if test -f $1; then
	    echo "ok"
    else
	    echo "missing required archive; run './download' again";
	    exit 1;
    fi
}

if [ -d .git ] ; then
    if [ -z "$GIT_LINK_SRC" ]; then
        ./g -f clone
    else
        # space-saving clone from another local workdir
        mkdir clone
        for i in $GIT_REPO_NAMES ; do
            bin/git-new-workdir $GIT_LINK_SRC/$i clone/$i
            for i in clone/$i/* ; do
                ln -sfn $i $(basename $i)
            done
        done
    fi
fi

if [ ! -d "$TARFILE_LOCATION" ]; then
    mkdir $TARFILE_LOCATION
fi
if [ ! -d "$TARFILE_LOCATION" ]; then
    echo "Error: Cannot create $TARFILE_LOCATION."
    exit 1
fi

FILELIST="$1"
if [ -z "$FILELIST" ]; then
    echo "No filelist provided, using the default ooo.lst."
    FILELIST="ooo.lst"
fi

# check for wget and md5sum
wget=
md5sum=
curl=`which curl 2>/dev/null`

for i in wget /usr/bin/wget /usr/local/bin/wget /usr/sfw/bin/wget /opt/sfw/bin/wget /opt/local/bin/wget; do
    eval "$i --version" > /dev/null 2>&1
    ret=$?
    if [ $ret -eq 0 ]; then
        wget=$i
        break
    fi
done

if [ -z "$wget" -a -z "$curl" ]; then
    echo "ERROR: neither  wget nor curl found!"
    exit 1
fi

for i in md5 md5sum /usr/local/bin/md5sum gmd5sum /usr/sfw/bin/md5sum /opt/sfw/bin/gmd5sum /opt/local/bin/md5sum; do
    if [ "$i" = "md5" ]; then
        eval "$i -x" > /dev/null 2>&1
    else
        eval "$i --version" > /dev/null 2>&1
    fi
    ret=$?
    if [ $ret -eq 0 ]; then
        md5sum=$i
        break
    fi
done

if [ "$md5sum" = "md5" ]; then
    if md5 -r < /dev/null > /dev/null 2>/dev/null; then
        md5special=-r
    elif md5 -n < /dev/null > /dev/null 2>/dev/null; then
        md5special=-n
    fi
fi

if [ -z "$md5sum" ]; then
    echo "Warning: no md5sum: found!"
fi

start_dir=`pwd`
logfile=$TARFILE_LOCATION/fetch.log
date >> $logfile

downloaditem()
{
    if [ "$1" != "" ]; then
        if [ ! -f "../$2" ]; then
            echo $2
            if [ ! -z "$wget" ]; then
                $wget --progress=dot:mega -N $1/$2 2>&1 | tee -a $logfile
            else
                echo fetching $2
                $curl $file_date_check -O $1/$2 2>&1 | tee -a $logfile
            fi
            wret=$?
            if [ $wret -ne 0 ]; then
                mv $2 ${i}_broken
                failed="$failed $2"
                wret=0
            fi
            if [ -f $2 -a -n "$3" -a -n "$md5sum" ]; then
                sum=`$md5sum $md5special $2 | sed "s/ .*//"`
                if [ "$sum" != "$3" ]; then
                    echo checksum failure for $2 2>&1 | tee -a $logfile
                    failed="$failed $2"
                    mv $2 ${i}_broken
                else
                    mv $2 ..
                fi
            else
                mv $2 ..
            fi
        fi
    fi
}

filelist=`cat $FILELIST`
mkdir -p $TARFILE_LOCATION/tmp
cd $TARFILE_LOCATION/tmp
echo $$ > fetch-running
for i in $filelist ; do
#    echo $i
    if [ "$i" != `echo $i | sed "s/^http:\///"` ]; then
        tarurl=$i
    # TODO: check for comment    
    else
        if [ "$tarurl" != "" ]; then
            sum=`echo $i | sed "s/-.*//"`
            downloaditem $tarurl $i $sum
        fi
    fi
done

if [ "$COM" = "MSC" ]; then
    downloaditem "http://download.microsoft.com/download/platformsdk/Redist/5.0.2195.1/W9XNT4/EN-US/" "dbghinst.EXE" "096f1d53d9ba09cde27d6f7c2ea6cc47"
    downloaditem "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/" "WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd"

    msvcver=`$SRC_ROOT/oowintool --msvc-ver`
    case "$msvcver" in
        9.0)
          downloaditem "http://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/" "vcredist_x86.exe" "35da2bf2befd998980a495b6f4f55e60"
          downloaditem "http://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/" "vcredist_x64.exe" "e2ada570911edaaae7d1b3c979345fce"
        ;;
    *)
        ;;
    esac

fi

if [ -f $start_dir/bootstrap.ver -a ! -d $start_dir/.git ] ; then
    # bootstrap is from sources, so get the other source tarballs
    . $start_dir/bootstrap.ver
    lo_src_dir="$start_dir/src"
    mkdir -p "$lo_src_dir"
    for piece in `cat $start_dir/bin/repo-list` ; do
        tarname="libreoffice-$piece-$lo_bootstrap_ver"
        if [ ! -f "$TARFILE_LOCATION/$tarname.tar.bz2" ] ; then
	    downloaditem "http://download.documentfoundation.org/libreoffice/src/" "$tarname.tar.bz2" ""
	fi
	$start_dir/bin/unpack-sources $start_dir $TARFILE_LOCATION/$tarname.tar.bz2
    done
fi

rm $TARFILE_LOCATION/tmp/*-*
cd $start_dir

if [ ! -z "$failed" ]; then
    echo
    echo ERROR: failed on:
    for i in $failed ; do
        echo $i
    done
    exit 1
fi

if [ "$COM" = "MSC" -a -n "$md5sum" ]; then
    # This can be run only on Windows itself (Cygwin)
    TMPUNPACK=`cygpath -d $TARFILE_LOCATION/tmp`
    chmod a+w $TARFILE_LOCATION/tmp
    if [ ! -f ./external/dbghelp/dbghelp.dll -a -f $TARFILE_LOCATION/dbghinst.EXE ]; then
	if [ ! -x $TARFILE_LOCATION/dbghinst.EXE ]; then
	    chmod +x $TARFILE_LOCATION/dbghinst.EXE
	fi
        $TARFILE_LOCATION/dbghinst.EXE /T:$TMPUNPACK /C
        sum=`$md5sum $md5special $TARFILE_LOCATION/tmp/dbghelp.exe | sed "s/ .*//"`
        if [ "$sum" = "cd3086a91e37965dd761ef5fd5df5b15" ]; then
            unzip -LL -j -o -d ./external/dbghelp $TARFILE_LOCATION/tmp/dbghelp.exe
        fi
    fi
    if [ ! -f ./external/gdiplus/gdiplus.dll -a -f $TARFILE_LOCATION/WindowsXP-KB975337-x86-ENU.exe ]; then
	gdiplus_dll_path=asms/10/msft/windows/gdiplus/gdiplus.dll

	# Run it through cmd so that the UAC prompt is displayed
	echo
	echo "NOTE: We are running the Microsoft KB975337 security fix installer"
	echo "to get gdiplus.dll. You will most probably get a UAC prompt now."
	echo "If you trust us, just enter your administrator password."
	echo "The security fix is run with the /extract switch to just unpack"
	echo "its files."
	echo "If you don't trust us, just get gdiplus.dll yourself and put it"
	echo "in external/gdiplus/gdiplus.dll."
	echo "gdiplus.dll is included in the LibreOffice installer for the benefit of"
	echo "Windows 2000 users."
	# A few empty lines so that the above is visible even if the taskbar's auto-hide is turned on,
	# and the UAC prompt caused it to taise (with a blinking icon for the UAC prompt)
	echo
	echo
	echo
        cmd /c "`cygpath -d $TARFILE_LOCATION/WindowsXP-KB975337-x86-ENU.exe` /extract:$TMPUNPACK /q"
	if [ -f $TARFILE_LOCATION/tmp/$gdiplus_dll_path ]; then
	    echo "Extraction succeeded"
	    sum=`$md5sum $md5special $TARFILE_LOCATION/tmp/$gdiplus_dll_path | sed "s/ .*//"`
	    if [ "$sum" = "4721ab485e0c29cd1617a5f296b9cc47" ]; then
		cp $TARFILE_LOCATION/tmp/$gdiplus_dll_path ./external/gdiplus/gdiplus.dll
	    else
		echo "But unexpected checksum of $gdiplus_dll_path"
	    fi
	else
	    echo "WindowsXP-KB975337-x86-ENU.exe did not unpack the expected $gdiplus_dll_path"
        fi
    fi
    if [ ! -f ./external/vcredist/vcredist_x86.exe -a -f $TARFILE_LOCATION/vcredist_x86.exe ]; then
        cp $TARFILE_LOCATION/vcredist_x86.exe ./external/vcredist/vcredist_x86.exe
    fi
    if [ ! -f ./external/vcredist/vcredist_x64.exe -a -f $TARFILE_LOCATION/vcredist_x64.exe ]; then
        cp $TARFILE_LOCATION/vcredist_x64.exe ./external/vcredist/vcredist_x64.exe
    fi
fi

# OxygenOffice extras
for pack in $OOOP_FONTS_PACK $OOOP_GALLERY_PACK $OOOP_SAMPLES_PACK $OOOP_TEMPLATES_PACK ; do
    check_file $TARFILE_LOCATION/$pack
    echo "Unpacking OxygenOffice extra '$pack' ..."
    unzip -o -q $TARFILE_LOCATION/$pack -d $SRC_ROOT/extras/source
done

# Extensions copy
for pack in $BARCODE_EXTENSION_PACK $DIAGRAM_EXTENSION_PACK $VALIDATOR_EXTENSION_PACK $WATCH_WINDOW_EXTENSION_PACK $NUMBERTEXT_EXTENSION_PACK $HUNART_EXTENSION_PACK $TYPO_EXTENSION_PACK $GOOGLE_DOCS_EXTENSION_PACK $OOOBLOGGER_EXTENSION_PACK $LIGHTPROOF_HU_PACK $LIGHTPROOF_RU_PACK $LIGHTPROOF_EN_US_PACK $SUNTEMPLATES_DE_PACK $SUNTEMPLATES_EN_US_PACK $SUNTEMPLATES_ES_PACK $SUNTEMPLATES_FR_PACK $SUNTEMPLATES_HU_PACK $SUNTEMPLATES_IT_PACK; do
    check_file $TARFILE_LOCATION/$pack
    packfilename=`echo "$pack" | cut -f 2- -s -d - | cut -f 1 -d _`
    echo "Copy extension: '$pack' as '$packfilename.oxt' ..."
    mkdir -p $SRC_ROOT/extras/source/extensions/ || exit 1
    cp $TARFILE_LOCATION/$pack $SRC_ROOT/extras/source/extensions/$packfilename.oxt || exit 1
done

[ -x "post_download" ] || { echo "'post_download' script not found, run ./autogen.sh." ; exit 1 ; }

# Save the config.log from the main configure script
# and restore it after running post_download.
mv config.log config.log.save

./post_download --build=$BUILD_PLATFORM --host=$HOST_PLATFORM
post_download_status=$?

test -f config.log && mv config.log post_download.log
mv config.log.save config.log

exit $post_download_status

# Local Variables:
# tab-width: 4
# indent-tabs-mode: nil
# End:

# vim:set shiftwidth=4 softtabstop=4 expandtab:
='width: 1.5%;'/> -rw-r--r--source/ar/helpcontent2/source/text/shared/02.po94
-rw-r--r--source/ar/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ar/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/ar/helpcontent2/source/text/shared/guide.po76
-rw-r--r--source/ar/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/ar/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ar/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ar/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/ar/helpcontent2/source/text/simpress/guide.po38
-rw-r--r--source/ar/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/ar/helpcontent2/source/text/swriter.po66
-rw-r--r--source/ar/helpcontent2/source/text/swriter/00.po48
-rw-r--r--source/ar/helpcontent2/source/text/swriter/01.po206
-rw-r--r--source/ar/helpcontent2/source/text/swriter/02.po315
-rw-r--r--source/ar/helpcontent2/source/text/swriter/04.po14
-rw-r--r--source/ar/helpcontent2/source/text/swriter/guide.po330
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office.po298
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office/UI.po153
-rw-r--r--source/ar/oox/messages.po26
-rw-r--r--source/ar/readlicense_oo/docs.po6
-rw-r--r--source/ar/reportdesign/messages.po26
-rw-r--r--source/ar/sc/messages.po123
-rw-r--r--source/ar/scaddins/messages.po26
-rw-r--r--source/ar/sccomp/messages.po26
-rw-r--r--source/ar/scp2/source/math.po22
-rw-r--r--source/ar/sd/messages.po817
-rw-r--r--source/ar/sfx2/messages.po538
-rw-r--r--source/ar/shell/messages.po26
-rw-r--r--source/ar/shell/source/win32/shlxthandler/res.po49
-rw-r--r--source/ar/starmath/messages.po766
-rw-r--r--source/ar/svl/messages.po26
-rw-r--r--source/ar/svtools/messages.po31
-rw-r--r--source/ar/svx/messages.po3599
-rw-r--r--source/ar/sw/messages.po2933
-rw-r--r--source/ar/uui/messages.po262
-rw-r--r--source/ar/vcl/messages.po206
-rw-r--r--source/ar/wizards/messages.po26
-rw-r--r--source/ar/wizards/source/resources.po9
-rw-r--r--source/ar/writerperfect/messages.po20
-rw-r--r--source/ar/xmlsecurity/messages.po33
-rw-r--r--source/as/cui/messages.po611
-rw-r--r--source/as/dbaccess/messages.po6
-rw-r--r--source/as/framework/messages.po122
-rw-r--r--source/as/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/as/sc/messages.po86
-rw-r--r--source/as/sd/messages.po775
-rw-r--r--source/as/sfx2/messages.po446
-rw-r--r--source/as/starmath/messages.po738
-rw-r--r--source/as/svx/messages.po3499
-rw-r--r--source/as/sw/messages.po2819
-rw-r--r--source/as/uui/messages.po236
-rw-r--r--source/as/vcl/messages.po176
-rw-r--r--source/as/writerperfect/messages.po18
-rw-r--r--source/ast/accessibility/messages.po4
-rw-r--r--source/ast/avmedia/messages.po4
-rw-r--r--source/ast/basctl/messages.po8
-rw-r--r--source/ast/basic/messages.po4
-rw-r--r--source/ast/chart2/messages.po14
-rw-r--r--source/ast/connectivity/messages.po4
-rw-r--r--source/ast/cui/messages.po631
-rw-r--r--source/ast/dbaccess/messages.po15
-rw-r--r--source/ast/desktop/messages.po4
-rw-r--r--source/ast/editeng/messages.po4
-rw-r--r--source/ast/extensions/messages.po36
-rw-r--r--source/ast/filter/messages.po6
-rw-r--r--source/ast/forms/messages.po4
-rw-r--r--source/ast/formula/messages.po4
-rw-r--r--source/ast/fpicker/messages.po4
-rw-r--r--source/ast/framework/messages.po128
-rw-r--r--source/ast/helpcontent2/source/auxiliary.po8
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared/03.po3771
-rw-r--r--source/ast/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po71
-rw-r--r--source/ast/helpcontent2/source/text/sdatabase.po473
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po196
-rw-r--r--source/ast/helpcontent2/source/text/shared/02.po110
-rw-r--r--source/ast/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ast/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/ast/helpcontent2/source/text/shared/guide.po84
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po44
-rw-r--r--source/ast/helpcontent2/source/text/simpress.po470
-rw-r--r--source/ast/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ast/helpcontent2/source/text/simpress/01.po42
-rw-r--r--source/ast/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ast/helpcontent2/source/text/smath/01.po52
-rw-r--r--source/ast/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ast/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ast/helpcontent2/source/text/swriter/01.po226
-rw-r--r--source/ast/helpcontent2/source/text/swriter/02.po329
-rw-r--r--source/ast/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po378
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po170
-rw-r--r--source/ast/oox/messages.po4
-rw-r--r--source/ast/reportdesign/messages.po11
-rw-r--r--source/ast/sc/messages.po164
-rw-r--r--source/ast/scaddins/messages.po4
-rw-r--r--source/ast/sccomp/messages.po4
-rw-r--r--source/ast/sd/messages.po802
-rw-r--r--source/ast/sfx2/messages.po485
-rw-r--r--source/ast/shell/messages.po4
-rw-r--r--source/ast/starmath/messages.po746
-rw-r--r--source/ast/svl/messages.po4
-rw-r--r--source/ast/svtools/messages.po6
-rw-r--r--source/ast/svx/messages.po3552
-rw-r--r--source/ast/sw/messages.po2893
-rw-r--r--source/ast/uui/messages.po242
-rw-r--r--source/ast/vcl/messages.po182
-rw-r--r--source/ast/wizards/messages.po4
-rw-r--r--source/ast/writerperfect/messages.po24
-rw-r--r--source/ast/xmlsecurity/messages.po4
-rw-r--r--source/az/cui/messages.po611
-rw-r--r--source/az/dbaccess/messages.po6
-rw-r--r--source/az/framework/messages.po122
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--source/az/sc/messages.po86
-rw-r--r--source/az/sd/messages.po772
-rw-r--r--source/az/sfx2/messages.po447
-rw-r--r--source/az/starmath/messages.po738
-rw-r--r--source/az/svx/messages.po3474
-rw-r--r--source/az/sw/messages.po2811
-rw-r--r--source/az/uui/messages.po236
-rw-r--r--source/az/vcl/messages.po176
-rw-r--r--source/az/writerperfect/messages.po18
-rw-r--r--source/be/cui/messages.po611
-rw-r--r--source/be/dbaccess/messages.po6
-rw-r--r--source/be/framework/messages.po122
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/be/sc/messages.po86
-rw-r--r--source/be/sd/messages.po774
-rw-r--r--source/be/sfx2/messages.po448
-rw-r--r--source/be/starmath/messages.po738
-rw-r--r--source/be/svx/messages.po3481
-rw-r--r--source/be/sw/messages.po2817
-rw-r--r--source/be/uui/messages.po236
-rw-r--r--source/be/vcl/messages.po176
-rw-r--r--source/be/writerperfect/messages.po18
-rw-r--r--source/bg/accessibility/messages.po36
-rw-r--r--source/bg/avmedia/messages.po32
-rw-r--r--source/bg/basctl/messages.po34
-rw-r--r--source/bg/basic/messages.po36
-rw-r--r--source/bg/chart2/messages.po70
-rw-r--r--source/bg/connectivity/messages.po32
-rw-r--r--source/bg/cui/messages.po777
-rw-r--r--source/bg/dbaccess/messages.po50
-rw-r--r--source/bg/desktop/messages.po32
-rw-r--r--source/bg/dictionaries/es.po12
-rw-r--r--source/bg/dictionaries/pt_PT.po12
-rw-r--r--source/bg/dictionaries/sq_AL.po10
-rw-r--r--source/bg/editeng/messages.po32
-rw-r--r--source/bg/extensions/messages.po32
-rw-r--r--source/bg/filter/messages.po34
-rw-r--r--source/bg/forms/messages.po34
-rw-r--r--source/bg/formula/messages.po32
-rw-r--r--source/bg/fpicker/messages.po40
-rw-r--r--source/bg/framework/messages.po154
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/python.po32
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po42
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared/03.po3709
-rw-r--r--source/bg/helpcontent2/source/text/scalc.po10
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po20
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po233
-rw-r--r--source/bg/helpcontent2/source/text/scalc/04.po10
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po70
-rw-r--r--source/bg/helpcontent2/source/text/sdatabase.po659
-rw-r--r--source/bg/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po266
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/bg/helpcontent2/source/text/shared/02.po154
-rw-r--r--source/bg/helpcontent2/source/text/shared/04.po24
-rw-r--r--source/bg/helpcontent2/source/text/shared/explorer/database.po618
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po84
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po142
-rw-r--r--source/bg/helpcontent2/source/text/simpress.po488
-rw-r--r--source/bg/helpcontent2/source/text/simpress/00.po14
-rw-r--r--source/bg/helpcontent2/source/text/simpress/01.po46
-rw-r--r--source/bg/helpcontent2/source/text/simpress/04.po18
-rw-r--r--source/bg/helpcontent2/source/text/simpress/guide.po68
-rw-r--r--source/bg/helpcontent2/source/text/smath/01.po68
-rw-r--r--source/bg/helpcontent2/source/text/swriter.po142
-rw-r--r--source/bg/helpcontent2/source/text/swriter/00.po74
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po244
-rw-r--r--source/bg/helpcontent2/source/text/swriter/02.po343
-rw-r--r--source/bg/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po442
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po256
-rw-r--r--source/bg/oox/messages.po32
-rw-r--r--source/bg/reportdesign/messages.po32
-rw-r--r--source/bg/sc/messages.po201
-rw-r--r--source/bg/scaddins/messages.po32
-rw-r--r--source/bg/sccomp/messages.po34
-rw-r--r--source/bg/sd/messages.po822
-rw-r--r--source/bg/sfx2/messages.po602
-rw-r--r--source/bg/shell/messages.po34
-rw-r--r--source/bg/starmath/messages.po772
-rw-r--r--source/bg/svl/messages.po32
-rw-r--r--source/bg/svtools/messages.po36
-rw-r--r--source/bg/svx/messages.po3521
-rw-r--r--source/bg/sw/messages.po3034
-rw-r--r--source/bg/uui/messages.po268
-rw-r--r--source/bg/vcl/messages.po208
-rw-r--r--source/bg/wizards/messages.po34
-rw-r--r--source/bg/writerperfect/messages.po48
-rw-r--r--source/bg/xmlsecurity/messages.po34
-rw-r--r--source/bn-IN/cui/messages.po611
-rw-r--r--source/bn-IN/dbaccess/messages.po6
-rw-r--r--source/bn-IN/framework/messages.po122
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po190
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress.po464
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/bn-IN/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter.po64
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/bn-IN/sc/messages.po86
-rw-r--r--source/bn-IN/sd/messages.po774
-rw-r--r--source/bn-IN/sfx2/messages.po448
-rw-r--r--source/bn-IN/starmath/messages.po738
-rw-r--r--source/bn-IN/svx/messages.po3499
-rw-r--r--source/bn-IN/sw/messages.po2827
-rw-r--r--source/bn-IN/uui/messages.po236
-rw-r--r--source/bn-IN/vcl/messages.po176
-rw-r--r--source/bn-IN/writerperfect/messages.po18
-rw-r--r--source/bn/cui/messages.po611
-rw-r--r--source/bn/dbaccess/messages.po6
-rw-r--r--source/bn/framework/messages.po122
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/bn/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/bn/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po190
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/bn/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/bn/helpcontent2/source/text/simpress.po464
-rw-r--r--source/bn/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/bn/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/bn/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/bn/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/bn/helpcontent2/source/text/swriter.po64
-rw-r--r--source/bn/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/bn/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/bn/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/bn/sc/messages.po86
-rw-r--r--source/bn/sd/messages.po772
-rw-r--r--source/bn/sfx2/messages.po446
-rw-r--r--source/bn/starmath/messages.po738
-rw-r--r--source/bn/svx/messages.po3499
-rw-r--r--source/bn/sw/messages.po2826
-rw-r--r--source/bn/uui/messages.po236
-rw-r--r--source/bn/vcl/messages.po176
-rw-r--r--source/bn/writerperfect/messages.po18
-rw-r--r--source/bo/cui/messages.po611
-rw-r--r--source/bo/dbaccess/messages.po6
-rw-r--r--source/bo/framework/messages.po122
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/bo/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po63
-rw-r--r--source/bo/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po190
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/bo/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po76
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/bo/helpcontent2/source/text/simpress.po464
-rw-r--r--source/bo/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/bo/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/bo/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/bo/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/bo/helpcontent2/source/text/swriter.po64
-rw-r--r--source/bo/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po214
-rw-r--r--source/bo/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/bo/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po360
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/bo/sc/messages.po86
-rw-r--r--source/bo/sd/messages.po772
-rw-r--r--source/bo/sfx2/messages.po446
-rw-r--r--source/bo/starmath/messages.po738
-rw-r--r--source/bo/svx/messages.po3499
-rw-r--r--source/bo/sw/messages.po2826
-rw-r--r--source/bo/uui/messages.po236
-rw-r--r--source/bo/vcl/messages.po176
-rw-r--r--source/bo/writerperfect/messages.po18
-rw-r--r--source/br/cui/messages.po611
-rw-r--r--source/br/dbaccess/messages.po6
-rw-r--r--source/br/framework/messages.po122
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/br/sc/messages.po86
-rw-r--r--source/br/sd/messages.po774
-rw-r--r--source/br/sfx2/messages.po446
-rw-r--r--source/br/starmath/messages.po738
-rw-r--r--source/br/svx/messages.po3499
-rw-r--r--source/br/sw/messages.po2817
-rw-r--r--source/br/uui/messages.po236
-rw-r--r--source/br/vcl/messages.po176
-rw-r--r--source/br/writerperfect/messages.po18
-rw-r--r--source/brx/cui/messages.po611
-rw-r--r--source/brx/dbaccess/messages.po6
-rw-r--r--source/brx/framework/messages.po122
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/brx/sc/messages.po86
-rw-r--r--source/brx/sd/messages.po772
-rw-r--r--source/brx/sfx2/messages.po446
-rw-r--r--source/brx/starmath/messages.po738
-rw-r--r--source/brx/svx/messages.po3499
-rw-r--r--source/brx/sw/messages.po2818
-rw-r--r--source/brx/uui/messages.po236
-rw-r--r--source/brx/vcl/messages.po176
-rw-r--r--source/brx/writerperfect/messages.po18
-rw-r--r--source/bs/cui/messages.po611
-rw-r--r--source/bs/dbaccess/messages.po6
-rw-r--r--source/bs/framework/messages.po122
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/bs/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po57
-rw-r--r--source/bs/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po200
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/bs/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/bs/helpcontent2/source/text/simpress.po464
-rw-r--r--source/bs/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/bs/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/bs/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/bs/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/bs/helpcontent2/source/text/swriter.po60
-rw-r--r--source/bs/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/bs/helpcontent2/source/text/swriter/02.po311
-rw-r--r--source/bs/helpcontent2/source/text/swriter/04.po14
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po328
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/bs/sc/messages.po86
-rw-r--r--source/bs/sd/messages.po775
-rw-r--r--source/bs/sfx2/messages.po446
-rw-r--r--source/bs/starmath/messages.po738
-rw-r--r--source/bs/svx/messages.po3499
-rw-r--r--source/bs/sw/messages.po2818
-rw-r--r--source/bs/uui/messages.po236
-rw-r--r--source/bs/vcl/messages.po176
-rw-r--r--source/bs/writerperfect/messages.po18
-rw-r--r--source/ca-valencia/cui/messages.po629
-rw-r--r--source/ca-valencia/dbaccess/messages.po6
-rw-r--r--source/ca-valencia/framework/messages.po122
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po71
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po188
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po236
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po104
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress.po484
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ca-valencia/helpcontent2/source/text/smath/01.po62
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po232
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po392
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/ca-valencia/sc/messages.po86
-rw-r--r--source/ca-valencia/sd/messages.po774
-rw-r--r--source/ca-valencia/sfx2/messages.po448
-rw-r--r--source/ca-valencia/starmath/messages.po738
-rw-r--r--source/ca-valencia/svx/messages.po3481
-rw-r--r--source/ca-valencia/sw/messages.po2827
-rw-r--r--source/ca-valencia/uui/messages.po236
-rw-r--r--source/ca-valencia/vcl/messages.po176
-rw-r--r--source/ca-valencia/writerperfect/messages.po18
-rw-r--r--source/ca/basic/messages.po6
-rw-r--r--source/ca/chart2/messages.po42
-rw-r--r--source/ca/cui/messages.po645
-rw-r--r--source/ca/dbaccess/messages.po6
-rw-r--r--source/ca/extensions/messages.po10
-rw-r--r--source/ca/framework/messages.po126
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/python.po30
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po4021
-rw-r--r--source/ca/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po82
-rw-r--r--source/ca/helpcontent2/source/text/scalc/04.po29
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/ca/helpcontent2/source/text/sdatabase.po482
-rw-r--r--source/ca/helpcontent2/source/text/sdraw.po9
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/guide.po18
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po869
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po438
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po104
-rw-r--r--source/ca/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared/explorer/database.po608
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po100
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/ca/helpcontent2/source/text/simpress.po490
-rw-r--r--source/ca/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/ca/helpcontent2/source/text/simpress/01.po44
-rw-r--r--source/ca/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ca/helpcontent2/source/text/smath/01.po65
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po73
-rw-r--r--source/ca/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po283
-rw-r--r--source/ca/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/ca/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po477
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po193
-rw-r--r--source/ca/sc/messages.po114
-rw-r--r--source/ca/sd/messages.po788
-rw-r--r--source/ca/sfx2/messages.po488
-rw-r--r--source/ca/starmath/messages.po744
-rw-r--r--source/ca/svtools/messages.po10
-rw-r--r--source/ca/svx/messages.po3493
-rw-r--r--source/ca/sw/messages.po2883
-rw-r--r--source/ca/uui/messages.po238
-rw-r--r--source/ca/vcl/messages.po178
-rw-r--r--source/ca/writerperfect/messages.po20
-rw-r--r--source/ckb/cui/messages.po611
-rw-r--r--source/ckb/dbaccess/messages.po6
-rw-r--r--source/ckb/framework/messages.po124
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po126
-rw-r--r--source/ckb/sc/messages.po86
-rw-r--r--source/ckb/sd/messages.po774
-rw-r--r--source/ckb/sfx2/messages.po448
-rw-r--r--source/ckb/starmath/messages.po738
-rw-r--r--source/ckb/svx/messages.po3481
-rw-r--r--source/ckb/sw/messages.po2815
-rw-r--r--source/ckb/uui/messages.po238
-rw-r--r--source/ckb/vcl/messages.po176
-rw-r--r--source/ckb/writerperfect/messages.po20
-rw-r--r--source/cs/chart2/messages.po38
-rw-r--r--source/cs/cui/messages.po647
-rw-r--r--source/cs/dbaccess/messages.po6
-rw-r--r--source/cs/framework/messages.po126
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/python.po24
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po48
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po3741
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po77
-rw-r--r--source/cs/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po246
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po104
-rw-r--r--source/cs/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/explorer/database.po604
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po84
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/cs/helpcontent2/source/text/simpress.po488
-rw-r--r--source/cs/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/cs/helpcontent2/source/text/simpress/01.po42
-rw-r--r--source/cs/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/cs/helpcontent2/source/text/smath/01.po64
-rw-r--r--source/cs/helpcontent2/source/text/swriter.po142
-rw-r--r--source/cs/helpcontent2/source/text/swriter/00.po70
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po244
-rw-r--r--source/cs/helpcontent2/source/text/swriter/02.po337
-rw-r--r--source/cs/helpcontent2/source/text/swriter/04.po26
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po400
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po166
-rw-r--r--source/cs/sc/messages.po96
-rw-r--r--source/cs/sd/messages.po788
-rw-r--r--source/cs/sfx2/messages.po480
-rw-r--r--source/cs/starmath/messages.po740
-rw-r--r--source/cs/svx/messages.po3485
-rw-r--r--source/cs/sw/messages.po2873
-rw-r--r--source/cs/uui/messages.po238
-rw-r--r--source/cs/vcl/messages.po178
-rw-r--r--source/cs/writerperfect/messages.po20
-rw-r--r--source/cy/chart2/messages.po40
-rw-r--r--source/cy/cui/messages.po665
-rw-r--r--source/cy/dbaccess/messages.po6
-rw-r--r--source/cy/framework/messages.po126
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po204
-rw-r--r--source/cy/sc/messages.po98
-rw-r--r--source/cy/sd/messages.po786
-rw-r--r--source/cy/sfx2/messages.po498
-rw-r--r--source/cy/starmath/messages.po740
-rw-r--r--source/cy/svx/messages.po3485
-rw-r--r--source/cy/sw/messages.po2879
-rw-r--r--source/cy/uui/messages.po238
-rw-r--r--source/cy/vcl/messages.po178
-rw-r--r--source/cy/writerperfect/messages.po20
-rw-r--r--source/da/accessibility/messages.po10
-rw-r--r--source/da/avmedia/messages.po10
-rw-r--r--source/da/basctl/messages.po12
-rw-r--r--source/da/basic/messages.po10
-rw-r--r--source/da/chart2/messages.po48
-rw-r--r--source/da/connectivity/messages.po8
-rw-r--r--source/da/cui/messages.po757
-rw-r--r--source/da/dbaccess/messages.po20
-rw-r--r--source/da/desktop/messages.po10
-rw-r--r--source/da/editeng/messages.po12
-rw-r--r--source/da/extensions/messages.po19
-rw-r--r--source/da/extras/source/gallery/share.po8
-rw-r--r--source/da/filter/messages.po12
-rw-r--r--source/da/filter/source/config/fragments/filters.po12
-rw-r--r--source/da/forms/messages.po30
-rw-r--r--source/da/formula/messages.po10
-rw-r--r--source/da/fpicker/messages.po18
-rw-r--r--source/da/framework/messages.po132
-rw-r--r--source/da/helpcontent2/source/text/sbasic/python.po30
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po44
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po6701
-rw-r--r--source/da/helpcontent2/source/text/scalc.po8
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po269
-rw-r--r--source/da/helpcontent2/source/text/scalc/02.po22
-rw-r--r--source/da/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po124
-rw-r--r--source/da/helpcontent2/source/text/schart/01.po26
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po625
-rw-r--r--source/da/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/da/helpcontent2/source/text/sdraw/04.po10
-rw-r--r--source/da/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/da/helpcontent2/source/text/shared.po30
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po242
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po1587
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po274
-rw-r--r--source/da/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/05.po18
-rw-r--r--source/da/helpcontent2/source/text/shared/06.po4
-rw-r--r--source/da/helpcontent2/source/text/shared/autopi.po6
-rw-r--r--source/da/helpcontent2/source/text/shared/explorer/database.po650
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po86
-rw-r--r--source/da/helpcontent2/source/text/shared/help.po4
-rw-r--r--source/da/helpcontent2/source/text/shared/menu.po30
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po412
-rw-r--r--source/da/helpcontent2/source/text/simpress.po486
-rw-r--r--source/da/helpcontent2/source/text/simpress/00.po22
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po44
-rw-r--r--source/da/helpcontent2/source/text/simpress/04.po28
-rw-r--r--source/da/helpcontent2/source/text/simpress/guide.po68
-rw-r--r--source/da/helpcontent2/source/text/smath.po10
-rw-r--r--source/da/helpcontent2/source/text/smath/01.po64
-rw-r--r--source/da/helpcontent2/source/text/swriter.po130
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po372
-rw-r--r--source/da/helpcontent2/source/text/swriter/02.po333
-rw-r--r--source/da/helpcontent2/source/text/swriter/04.po28
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po654
-rw-r--r--source/da/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/da/nlpsolver/src/locale.po12
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office.po32
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po338
-rw-r--r--source/da/oox/messages.po10
-rw-r--r--source/da/reportdesign/messages.po10
-rw-r--r--source/da/sc/messages.po164
-rw-r--r--source/da/scaddins/messages.po10
-rw-r--r--source/da/sccomp/messages.po10
-rw-r--r--source/da/scp2/source/ooo.po8
-rw-r--r--source/da/scp2/source/winexplorerext.po10
-rw-r--r--source/da/sd/messages.po838
-rw-r--r--source/da/setup_native/source/mac.po10
-rw-r--r--source/da/sfx2/messages.po558
-rw-r--r--source/da/shell/messages.po10
-rw-r--r--source/da/starmath/messages.po752
-rw-r--r--source/da/svl/messages.po10
-rw-r--r--source/da/svtools/messages.po18
-rw-r--r--source/da/svx/messages.po3613
-rw-r--r--source/da/sw/messages.po3109
-rw-r--r--source/da/uui/messages.po246
-rw-r--r--source/da/vcl/messages.po200
-rw-r--r--source/da/wizards/messages.po10
-rw-r--r--source/da/writerperfect/messages.po28
-rw-r--r--source/da/xmlsecurity/messages.po12
-rw-r--r--source/de/basctl/messages.po8
-rw-r--r--source/de/chart2/messages.po72
-rw-r--r--source/de/connectivity/messages.po20
-rw-r--r--source/de/cui/messages.po919
-rw-r--r--source/de/dbaccess/messages.po52
-rw-r--r--source/de/desktop/messages.po10
-rw-r--r--source/de/dictionaries/bo.po15
-rw-r--r--source/de/dictionaries/en/dialog.po51
-rw-r--r--source/de/dictionaries/hu_HU/dialog.po46
-rw-r--r--source/de/dictionaries/sk_SK.po18
-rw-r--r--source/de/dictionaries/sr.po18
-rw-r--r--source/de/editeng/messages.po52
-rw-r--r--source/de/extensions/messages.po26
-rw-r--r--source/de/extras/source/autocorr/emoji.po1591
-rw-r--r--source/de/filter/messages.po14
-rw-r--r--source/de/filter/source/config/fragments/filters.po20
-rw-r--r--source/de/filter/source/config/fragments/internalgraphicfilters.po20
-rw-r--r--source/de/forms/messages.po10
-rw-r--r--source/de/formula/messages.po6
-rw-r--r--source/de/framework/messages.po130
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po20
-rw-r--r--source/de/helpcontent2/source/text/sbasic/python.po30
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po124
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po3719
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po245
-rw-r--r--source/de/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/04.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po84
-rw-r--r--source/de/helpcontent2/source/text/schart/01.po22
-rw-r--r--source/de/helpcontent2/source/text/sdatabase.po581
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/de/helpcontent2/source/text/sdraw/guide.po12
-rw-r--r--source/de/helpcontent2/source/text/shared.po94
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po392
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po364
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po164
-rw-r--r--source/de/helpcontent2/source/text/shared/04.po22
-rw-r--r--source/de/helpcontent2/source/text/shared/05.po24
-rw-r--r--source/de/helpcontent2/source/text/shared/06.po36
-rw-r--r--source/de/helpcontent2/source/text/shared/07.po19
-rw-r--r--source/de/helpcontent2/source/text/shared/autokorr.po62
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po24
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po632
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po150
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po58
-rw-r--r--source/de/helpcontent2/source/text/simpress.po498
-rw-r--r--source/de/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po74
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po12
-rw-r--r--source/de/helpcontent2/source/text/simpress/04.po40
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po86
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po492
-rw-r--r--source/de/helpcontent2/source/text/swriter.po64
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po44
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po286
-rw-r--r--source/de/helpcontent2/source/text/swriter/02.po345
-rw-r--r--source/de/helpcontent2/source/text/swriter/04.po30
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po420
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/de/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/de/librelogo/source/pythonpath.po8
-rw-r--r--source/de/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po352
-rw-r--r--source/de/readlicense_oo/docs.po26
-rw-r--r--source/de/sc/messages.po258
-rw-r--r--source/de/scaddins/messages.po8
-rw-r--r--source/de/scp2/source/activex.po16
-rw-r--r--source/de/scp2/source/ooo.po44
-rw-r--r--source/de/sd/messages.po844
-rw-r--r--source/de/sfx2/messages.po555
-rw-r--r--source/de/shell/messages.po10
-rw-r--r--source/de/starmath/messages.po746
-rw-r--r--source/de/svtools/messages.po56
-rw-r--r--source/de/svx/messages.po3577
-rw-r--r--source/de/sw/messages.po3097
-rw-r--r--source/de/swext/mediawiki/help.po30
-rw-r--r--source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po10
-rw-r--r--source/de/uui/messages.po244
-rw-r--r--source/de/vcl/messages.po192
-rw-r--r--source/de/wizards/messages.po10
-rw-r--r--source/de/wizards/source/resources.po18
-rw-r--r--source/de/writerperfect/messages.po20
-rw-r--r--source/de/xmlsecurity/messages.po14
-rw-r--r--source/dgo/cui/messages.po611
-rw-r--r--source/dgo/dbaccess/messages.po6
-rw-r--r--source/dgo/framework/messages.po122
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/dgo/sc/messages.po86
-rw-r--r--source/dgo/sd/messages.po775
-rw-r--r--source/dgo/sfx2/messages.po446
-rw-r--r--source/dgo/starmath/messages.po753
-rw-r--r--source/dgo/svx/messages.po3499
-rw-r--r--source/dgo/sw/messages.po2818
-rw-r--r--source/dgo/uui/messages.po236
-rw-r--r--source/dgo/vcl/messages.po176
-rw-r--r--source/dgo/writerperfect/messages.po18
-rw-r--r--source/dsb/chart2/messages.po40
-rw-r--r--source/dsb/cui/messages.po615
-rw-r--r--source/dsb/dbaccess/messages.po6
-rw-r--r--source/dsb/framework/messages.po126
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po170
-rw-r--r--source/dsb/sc/messages.po96
-rw-r--r--source/dsb/sd/messages.po788
-rw-r--r--source/dsb/sfx2/messages.po478
-rw-r--r--source/dsb/starmath/messages.po740
-rw-r--r--source/dsb/svx/messages.po3485
-rw-r--r--source/dsb/sw/messages.po2817
-rw-r--r--source/dsb/uui/messages.po238
-rw-r--r--source/dsb/vcl/messages.po178
-rw-r--r--source/dsb/writerperfect/messages.po20
-rw-r--r--source/dz/cui/messages.po613
-rw-r--r--source/dz/dbaccess/messages.po6
-rw-r--r--source/dz/framework/messages.po122
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/dz/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po67
-rw-r--r--source/dz/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po218
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/dz/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/dz/helpcontent2/source/text/simpress.po464
-rw-r--r--source/dz/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/dz/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/dz/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/dz/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/dz/helpcontent2/source/text/swriter.po64
-rw-r--r--source/dz/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po214
-rw-r--r--source/dz/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/dz/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po360
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/dz/sc/messages.po86
-rw-r--r--source/dz/sd/messages.po772
-rw-r--r--source/dz/sfx2/messages.po446
-rw-r--r--source/dz/starmath/messages.po738
-rw-r--r--source/dz/svx/messages.po3499
-rw-r--r--source/dz/sw/messages.po2828
-rw-r--r--source/dz/uui/messages.po236
-rw-r--r--source/dz/vcl/messages.po176
-rw-r--r--source/dz/writerperfect/messages.po18
-rw-r--r--source/el/chart2/messages.po38
-rw-r--r--source/el/cui/messages.po647
-rw-r--r--source/el/dbaccess/messages.po6
-rw-r--r--source/el/framework/messages.po126
-rw-r--r--source/el/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po3709
-rw-r--r--source/el/helpcontent2/source/text/scalc/00.po20
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po93
-rw-r--r--source/el/helpcontent2/source/text/scalc/04.po10
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po76
-rw-r--r--source/el/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/el/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/el/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po262
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po612
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po150
-rw-r--r--source/el/helpcontent2/source/text/shared/04.po24
-rw-r--r--source/el/helpcontent2/source/text/shared/explorer/database.po608
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po350
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po140
-rw-r--r--source/el/helpcontent2/source/text/simpress.po488
-rw-r--r--source/el/helpcontent2/source/text/simpress/00.po14
-rw-r--r--source/el/helpcontent2/source/text/simpress/01.po46
-rw-r--r--source/el/helpcontent2/source/text/simpress/04.po18
-rw-r--r--source/el/helpcontent2/source/text/simpress/guide.po70
-rw-r--r--source/el/helpcontent2/source/text/smath/01.po68
-rw-r--r--source/el/helpcontent2/source/text/swriter.po140
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po72
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po432
-rw-r--r--source/el/helpcontent2/source/text/swriter/02.po343
-rw-r--r--source/el/helpcontent2/source/text/swriter/04.po26
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po498
-rw-r--r--source/el/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po170
-rw-r--r--source/el/sc/messages.po98
-rw-r--r--source/el/sd/messages.po788
-rw-r--r--source/el/sfx2/messages.po480
-rw-r--r--source/el/starmath/messages.po740
-rw-r--r--source/el/svx/messages.po3485
-rw-r--r--source/el/sw/messages.po2879
-rw-r--r--source/el/uui/messages.po238
-rw-r--r--source/el/vcl/messages.po178
-rw-r--r--source/el/writerperfect/messages.po20
-rw-r--r--source/en-GB/chart2/messages.po43
-rw-r--r--source/en-GB/cui/messages.po667
-rw-r--r--source/en-GB/dbaccess/messages.po10
-rw-r--r--source/en-GB/framework/messages.po124
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po3709
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po75
-rw-r--r--source/en-GB/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po192
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po238
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/explorer/database.po604
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po84
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress.po484
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/01.po40
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/en-GB/helpcontent2/source/text/smath/01.po62
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter.po64
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po232
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po398
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/en-GB/sc/messages.po96
-rw-r--r--source/en-GB/sd/messages.po786
-rw-r--r--source/en-GB/sfx2/messages.po448
-rw-r--r--source/en-GB/starmath/messages.po744
-rw-r--r--source/en-GB/svtools/messages.po10
-rw-r--r--source/en-GB/svx/messages.po3481
-rw-r--r--source/en-GB/sw/messages.po2825
-rw-r--r--source/en-GB/uui/messages.po238
-rw-r--r--source/en-GB/vcl/messages.po180
-rw-r--r--source/en-GB/writerperfect/messages.po20
-rw-r--r--source/en-ZA/cui/messages.po613
-rw-r--r--source/en-ZA/dbaccess/messages.po6
-rw-r--r--source/en-ZA/framework/messages.po122
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po220
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress.po464
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter.po64
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/en-ZA/sc/messages.po86
-rw-r--r--source/en-ZA/sd/messages.po772
-rw-r--r--source/en-ZA/sfx2/messages.po446
-rw-r--r--source/en-ZA/starmath/messages.po738
-rw-r--r--source/en-ZA/svx/messages.po3499
-rw-r--r--source/en-ZA/sw/messages.po2826
-rw-r--r--source/en-ZA/uui/messages.po236
-rw-r--r--source/en-ZA/vcl/messages.po176
-rw-r--r--source/en-ZA/writerperfect/messages.po18
-rw-r--r--source/eo/chart2/messages.po40
-rw-r--r--source/eo/cui/messages.po623
-rw-r--r--source/eo/dbaccess/messages.po6
-rw-r--r--source/eo/framework/messages.po124
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/eo/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po65
-rw-r--r--source/eo/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po206
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po206
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/eo/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/eo/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/eo/helpcontent2/source/text/simpress.po464
-rw-r--r--source/eo/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/eo/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/eo/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/eo/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po64
-rw-r--r--source/eo/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po244
-rw-r--r--source/eo/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/eo/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po398
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po178
-rw-r--r--source/eo/sc/messages.po96
-rw-r--r--source/eo/sd/messages.po786
-rw-r--r--source/eo/sfx2/messages.po452
-rw-r--r--source/eo/starmath/messages.po742
-rw-r--r--source/eo/svx/messages.po3481
-rw-r--r--source/eo/sw/messages.po2909
-rw-r--r--source/eo/uui/messages.po238
-rw-r--r--source/eo/vcl/messages.po180
-rw-r--r--source/eo/writerperfect/messages.po20
-rw-r--r--source/es/basctl/messages.po4
-rw-r--r--source/es/chart2/messages.po28
-rw-r--r--source/es/cui/messages.po679
-rw-r--r--source/es/dbaccess/messages.po14
-rw-r--r--source/es/desktop/messages.po6
-rw-r--r--source/es/extensions/messages.po20
-rw-r--r--source/es/filter/messages.po10
-rw-r--r--source/es/framework/messages.po126
-rw-r--r--source/es/helpcontent2/source/auxiliary.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po40
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po30
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po4051
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po89
-rw-r--r--source/es/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po513
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po18
-rw-r--r--source/es/helpcontent2/source/text/sdraw/00.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po280
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po344
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po122
-rw-r--r--source/es/helpcontent2/source/text/shared/04.po18
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po608
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po130
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po74
-rw-r--r--source/es/helpcontent2/source/text/simpress.po490
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po18
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po54
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po46
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po78
-rw-r--r--source/es/helpcontent2/source/text/swriter.po66
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po48
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po296
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po335
-rw-r--r--source/es/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po442
-rw-r--r--source/es/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po176
-rw-r--r--source/es/sc/messages.po101
-rw-r--r--source/es/sd/messages.po783
-rw-r--r--source/es/sfx2/messages.po482
-rw-r--r--source/es/shell/messages.po6
-rw-r--r--source/es/starmath/messages.po744
-rw-r--r--source/es/svx/messages.po3501
-rw-r--r--source/es/sw/messages.po2903
-rw-r--r--source/es/uui/messages.po238
-rw-r--r--source/es/vcl/messages.po192
-rw-r--r--source/es/writerperfect/messages.po20
-rw-r--r--source/es/xmlsecurity/messages.po4
-rw-r--r--source/et/cui/messages.po619
-rw-r--r--source/et/dbaccess/messages.po6
-rw-r--r--source/et/framework/messages.po122
-rw-r--r--source/et/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/et/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/et/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po192
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po224
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/et/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/et/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/et/helpcontent2/source/text/simpress.po480
-rw-r--r--source/et/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/et/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/et/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/et/helpcontent2/source/text/smath/01.po62
-rw-r--r--source/et/helpcontent2/source/text/swriter.po64
-rw-r--r--source/et/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/et/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/et/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/et/sc/messages.po86
-rw-r--r--source/et/sd/messages.po774
-rw-r--r--source/et/sfx2/messages.po448
-rw-r--r--source/et/starmath/messages.po738
-rw-r--r--source/et/svx/messages.po3481
-rw-r--r--source/et/sw/messages.po2821
-rw-r--r--source/et/uui/messages.po236
-rw-r--r--source/et/vcl/messages.po176
-rw-r--r--source/et/writerperfect/messages.po18
-rw-r--r--source/eu/chart2/messages.po40
-rw-r--r--source/eu/cui/messages.po653
-rw-r--r--source/eu/dbaccess/messages.po6
-rw-r--r--source/eu/framework/messages.po126
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po16
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po3717
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po77
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/eu/helpcontent2/source/text/sdatabase.po467
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po250
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po260
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po112
-rw-r--r--source/eu/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po86
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po59
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po488
-rw-r--r--source/eu/helpcontent2/source/text/simpress/00.po14
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po40
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po64
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po82
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po46
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po244
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po335
-rw-r--r--source/eu/helpcontent2/source/text/swriter/04.po24
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po412
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po188
-rw-r--r--source/eu/sc/messages.po100
-rw-r--r--source/eu/sd/messages.po788
-rw-r--r--source/eu/sfx2/messages.po492
-rw-r--r--source/eu/starmath/messages.po740
-rw-r--r--source/eu/svx/messages.po3485
-rw-r--r--source/eu/sw/messages.po2901
-rw-r--r--source/eu/uui/messages.po236
-rw-r--r--source/eu/vcl/messages.po178
-rw-r--r--source/eu/writerperfect/messages.po20
-rw-r--r--source/fa/accessibility/messages.po20
-rw-r--r--source/fa/avmedia/messages.po20
-rw-r--r--source/fa/basctl/messages.po20
-rw-r--r--source/fa/basic/messages.po20
-rw-r--r--source/fa/chart2/messages.po22
-rw-r--r--source/fa/connectivity/messages.po20
-rw-r--r--source/fa/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/fa/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po22
-rw-r--r--source/fa/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/fa/cui/messages.po657
-rw-r--r--source/fa/dbaccess/messages.po64
-rw-r--r--source/fa/desktop/messages.po20
-rw-r--r--source/fa/dictionaries/af_ZA.po10
-rw-r--r--source/fa/dictionaries/ar.po15
-rw-r--r--source/fa/dictionaries/be_BY.po10
-rw-r--r--source/fa/dictionaries/bg_BG.po15
-rw-r--r--source/fa/dictionaries/bn_BD.po15
-rw-r--r--source/fa/dictionaries/bo.po16
-rw-r--r--source/fa/dictionaries/br_FR.po15
-rw-r--r--source/fa/dictionaries/bs_BA.po15
-rw-r--r--source/fa/dictionaries/ca.po16
-rw-r--r--source/fa/dictionaries/cs_CZ.po16
-rw-r--r--source/fa/dictionaries/da_DK.po15
-rw-r--r--source/fa/dictionaries/de.po15
-rw-r--r--source/fa/dictionaries/el_GR.po15
-rw-r--r--source/fa/dictionaries/en.po15
-rw-r--r--source/fa/dictionaries/es.po12
-rw-r--r--source/fa/dictionaries/et_EE.po15
-rw-r--r--source/fa/dictionaries/fr_FR.po15
-rw-r--r--source/fa/dictionaries/gd_GB.po16
-rw-r--r--source/fa/dictionaries/gl.po15
-rw-r--r--source/fa/dictionaries/gug.po16
-rw-r--r--source/fa/dictionaries/he_IL.po15
-rw-r--r--source/fa/dictionaries/hi_IN.po16
-rw-r--r--source/fa/dictionaries/hr_HR.po15
-rw-r--r--source/fa/dictionaries/hu_HU.po15
-rw-r--r--source/fa/dictionaries/hu_HU/dialog.po76
-rw-r--r--source/fa/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po15
-rw-r--r--source/fa/dictionaries/id.po16
-rw-r--r--source/fa/dictionaries/is.po15
-rw-r--r--source/fa/dictionaries/it_IT.po15
-rw-r--r--source/fa/dictionaries/kmr_Latn.po19
-rw-r--r--source/fa/dictionaries/ko_KR.po4
-rw-r--r--source/fa/dictionaries/lo_LA.po15
-rw-r--r--source/fa/dictionaries/lt_LT.po17
-rw-r--r--source/fa/dictionaries/lv_LV.po17
-rw-r--r--source/fa/dictionaries/ne_NP.po17
-rw-r--r--source/fa/dictionaries/nl_NL.po10
-rw-r--r--source/fa/dictionaries/no.po10
-rw-r--r--source/fa/dictionaries/oc_FR.po10
-rw-r--r--source/fa/dictionaries/pl_PL.po17
-rw-r--r--source/fa/dictionaries/pt_BR.po17
-rw-r--r--source/fa/dictionaries/pt_BR/dialog.po15
-rw-r--r--source/fa/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po15
-rw-r--r--source/fa/dictionaries/pt_PT.po12
-rw-r--r--source/fa/dictionaries/ro.po17
-rw-r--r--source/fa/dictionaries/ru_RU.po17
-rw-r--r--source/fa/dictionaries/ru_RU/dialog.po48
-rw-r--r--source/fa/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po15
-rw-r--r--source/fa/dictionaries/si_LK.po18
-rw-r--r--source/fa/dictionaries/sk_SK.po17
-rw-r--r--source/fa/dictionaries/sl_SI.po17
-rw-r--r--source/fa/dictionaries/sq_AL.po10
-rw-r--r--source/fa/dictionaries/sr.po17
-rw-r--r--source/fa/dictionaries/sv_SE.po16
-rw-r--r--source/fa/dictionaries/sw_TZ.po10
-rw-r--r--source/fa/dictionaries/te_IN.po17
-rw-r--r--source/fa/dictionaries/th_TH.po18
-rw-r--r--source/fa/dictionaries/tr_TR.po16
-rw-r--r--source/fa/dictionaries/uk_UA.po17
-rw-r--r--source/fa/dictionaries/vi.po17
-rw-r--r--source/fa/dictionaries/zu_ZA.po17
-rw-r--r--source/fa/editeng/messages.po46
-rw-r--r--source/fa/extensions/messages.po22
-rw-r--r--source/fa/extensions/source/update/check/org/openoffice/Office.po15
-rw-r--r--source/fa/extras/source/gallery/share.po20
-rw-r--r--source/fa/filter/messages.po22
-rw-r--r--source/fa/forms/messages.po20
-rw-r--r--source/fa/formula/messages.po20
-rw-r--r--source/fa/fpicker/messages.po48
-rw-r--r--source/fa/framework/messages.po144
-rw-r--r--source/fa/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po18
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice.po39
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/fa/oox/messages.po20
-rw-r--r--source/fa/readlicense_oo/docs.po9
-rw-r--r--source/fa/reportdesign/messages.po170
-rw-r--r--source/fa/sc/messages.po106
-rw-r--r--source/fa/scaddins/messages.po20
-rw-r--r--source/fa/sccomp/messages.po20
-rw-r--r--source/fa/scp2/source/activex.po16
-rw-r--r--source/fa/scp2/source/base.po25
-rw-r--r--source/fa/scp2/source/calc.po10
-rw-r--r--source/fa/scp2/source/draw.po63
-rw-r--r--source/fa/scp2/source/extensions.po38
-rw-r--r--source/fa/scp2/source/gnome.po16
-rw-r--r--source/fa/scp2/source/graphicfilter.po12
-rw-r--r--source/fa/scp2/source/impress.po36
-rw-r--r--source/fa/scp2/source/ooo.po8
-rw-r--r--source/fa/scp2/source/winexplorerext.po10
-rw-r--r--source/fa/scp2/source/writer.po45
-rw-r--r--source/fa/sd/messages.po792
-rw-r--r--source/fa/setup_native/source/mac.po11
-rw-r--r--source/fa/sfx2/messages.po466
-rw-r--r--source/fa/shell/messages.po20
-rw-r--r--source/fa/starmath/messages.po760
-rw-r--r--source/fa/svl/messages.po20
-rw-r--r--source/fa/svtools/messages.po22
-rw-r--r--source/fa/svx/messages.po3567
-rw-r--r--source/fa/sw/messages.po2838
-rw-r--r--source/fa/swext/mediawiki/src.po19
-rw-r--r--source/fa/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po42
-rw-r--r--source/fa/sysui/desktop/share.po29
-rw-r--r--source/fa/uui/messages.po258
-rw-r--r--source/fa/vcl/messages.po196
-rw-r--r--source/fa/wizards/messages.po20
-rw-r--r--source/fa/wizards/source/resources.po11
-rw-r--r--source/fa/writerperfect/messages.po44
-rw-r--r--source/fa/xmlsecurity/messages.po26
-rw-r--r--source/fi/accessibility/messages.po32
-rw-r--r--source/fi/avmedia/messages.po32
-rw-r--r--source/fi/basctl/messages.po30
-rw-r--r--source/fi/basic/messages.po32
-rw-r--r--source/fi/chart2/messages.po34
-rw-r--r--source/fi/connectivity/messages.po32
-rw-r--r--source/fi/cui/messages.po709
-rw-r--r--source/fi/dbaccess/messages.po34
-rw-r--r--source/fi/desktop/messages.po32
-rw-r--r--source/fi/editeng/messages.po32
-rw-r--r--source/fi/extensions/messages.po32
-rw-r--r--source/fi/filter/messages.po30
-rw-r--r--source/fi/forms/messages.po32
-rw-r--r--source/fi/formula/messages.po32
-rw-r--r--source/fi/fpicker/messages.po32
-rw-r--r--source/fi/framework/messages.po154
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/fi/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/fi/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po186
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po224
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/fi/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/fi/helpcontent2/source/text/simpress.po474
-rw-r--r--source/fi/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/fi/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/fi/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/fi/helpcontent2/source/text/smath/01.po48
-rw-r--r--source/fi/helpcontent2/source/text/swriter.po64
-rw-r--r--source/fi/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/fi/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/fi/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po388
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po136
-rw-r--r--source/fi/oox/messages.po36
-rw-r--r--source/fi/reportdesign/messages.po32
-rw-r--r--source/fi/sc/messages.po157
-rw-r--r--source/fi/scaddins/messages.po30
-rw-r--r--source/fi/sccomp/messages.po36
-rw-r--r--source/fi/sd/messages.po814
-rw-r--r--source/fi/sfx2/messages.po484
-rw-r--r--source/fi/shell/messages.po32
-rw-r--r--source/fi/starmath/messages.po766
-rw-r--r--source/fi/svl/messages.po32
-rw-r--r--source/fi/svtools/messages.po28
-rw-r--r--source/fi/svx/messages.po3513
-rw-r--r--source/fi/sw/messages.po2857
-rw-r--r--source/fi/uui/messages.po266
-rw-r--r--source/fi/vcl/messages.po206
-rw-r--r--source/fi/wizards/messages.po32
-rw-r--r--source/fi/writerperfect/messages.po48
-rw-r--r--source/fi/xmlsecurity/messages.po34
-rw-r--r--source/fr/cui/messages.po629
-rw-r--r--source/fr/dbaccess/messages.po6
-rw-r--r--source/fr/framework/messages.po122
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/python.po26
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po3711
-rw-r--r--source/fr/helpcontent2/source/text/scalc.po10
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po20
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po85
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po56
-rw-r--r--source/fr/helpcontent2/source/text/sdatabase.po467
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po264
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po126
-rw-r--r--source/fr/helpcontent2/source/text/shared/04.po22
-rw-r--r--source/fr/helpcontent2/source/text/shared/explorer/database.po604
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po84
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/fr/helpcontent2/source/text/simpress.po488
-rw-r--r--source/fr/helpcontent2/source/text/simpress/00.po14
-rw-r--r--source/fr/helpcontent2/source/text/simpress/01.po46
-rw-r--r--source/fr/helpcontent2/source/text/simpress/guide.po54
-rw-r--r--source/fr/helpcontent2/source/text/smath/01.po72
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po82
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po54
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po244
-rw-r--r--source/fr/helpcontent2/source/text/swriter/02.po337
-rw-r--r--source/fr/helpcontent2/source/text/swriter/04.po26
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po416
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/fr/sc/messages.po86
-rw-r--r--source/fr/sd/messages.po774
-rw-r--r--source/fr/sfx2/messages.po448
-rw-r--r--source/fr/starmath/messages.po738
-rw-r--r--source/fr/svx/messages.po3487
-rw-r--r--source/fr/sw/messages.po2827
-rw-r--r--source/fr/uui/messages.po236
-rw-r--r--source/fr/vcl/messages.po176
-rw-r--r--source/fr/writerperfect/messages.po18
-rw-r--r--source/fur/cui/messages.po619
-rw-r--r--source/fur/dbaccess/messages.po6
-rw-r--r--source/fur/framework/messages.po122
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--source/fur/sc/messages.po86
-rw-r--r--source/fur/sd/messages.po772
-rw-r--r--source/fur/sfx2/messages.po444
-rw-r--r--source/fur/starmath/messages.po738
-rw-r--r--source/fur/svx/messages.po3471
-rw-r--r--source/fur/sw/messages.po2811
-rw-r--r--source/fur/uui/messages.po236
-rw-r--r--source/fur/vcl/messages.po176
-rw-r--r--source/fur/writerperfect/messages.po18
-rw-r--r--source/fy/chart2/messages.po40
-rw-r--r--source/fy/cui/messages.po669
-rw-r--r--source/fy/dbaccess/messages.po6
-rw-r--r--source/fy/framework/messages.po126
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po200
-rw-r--r--source/fy/sc/messages.po200
-rw-r--r--source/fy/sd/messages.po774
-rw-r--r--source/fy/sfx2/messages.po448
-rw-r--r--source/fy/starmath/messages.po742
-rw-r--r--source/fy/svtools/messages.po8
-rw-r--r--source/fy/svx/messages.po3481
-rw-r--r--source/fy/sw/messages.po3053
-rw-r--r--source/fy/uui/messages.po238
-rw-r--r--source/fy/vcl/messages.po180
-rw-r--r--source/fy/writerperfect/messages.po20
-rw-r--r--source/ga/accessibility/messages.po36
-rw-r--r--source/ga/avmedia/messages.po32
-rw-r--r--source/ga/basctl/messages.po32
-rw-r--r--source/ga/basic/messages.po36
-rw-r--r--source/ga/chart2/messages.po46
-rw-r--r--source/ga/connectivity/messages.po32
-rw-r--r--source/ga/cui/messages.po641
-rw-r--r--source/ga/dbaccess/messages.po40
-rw-r--r--source/ga/desktop/messages.po32
-rw-r--r--source/ga/dictionaries/da_DK.po16
-rw-r--r--source/ga/editeng/messages.po32
-rw-r--r--source/ga/extensions/messages.po32
-rw-r--r--source/ga/filter/messages.po32
-rw-r--r--source/ga/forms/messages.po36
-rw-r--r--source/ga/formula/messages.po32
-rw-r--r--source/ga/fpicker/messages.po32
-rw-r--r--source/ga/framework/messages.po152
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/ga/oox/messages.po36
-rw-r--r--source/ga/reportdesign/messages.po36
-rw-r--r--source/ga/sc/messages.po120
-rw-r--r--source/ga/scaddins/messages.po36
-rw-r--r--source/ga/sccomp/messages.po36
-rw-r--r--source/ga/sd/messages.po808
-rw-r--r--source/ga/sfx2/messages.po482
-rw-r--r--source/ga/shell/messages.po36
-rw-r--r--source/ga/starmath/messages.po772
-rw-r--r--source/ga/svl/messages.po36
-rw-r--r--source/ga/svtools/messages.po36
-rw-r--r--source/ga/svx/messages.po3513
-rw-r--r--source/ga/sw/messages.po2851
-rw-r--r--source/ga/uui/messages.po270
-rw-r--r--source/ga/vcl/messages.po210
-rw-r--r--source/ga/wizards/messages.po36
-rw-r--r--source/ga/writerperfect/messages.po50
-rw-r--r--source/ga/xmlsecurity/messages.po38
-rw-r--r--source/gd/cui/messages.po611
-rw-r--r--source/gd/dbaccess/messages.po6
-rw-r--r--source/gd/framework/messages.po122
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/gd/sc/messages.po86
-rw-r--r--source/gd/sd/messages.po774
-rw-r--r--source/gd/sfx2/messages.po448
-rw-r--r--source/gd/starmath/messages.po738
-rw-r--r--source/gd/svx/messages.po3481
-rw-r--r--source/gd/sw/messages.po2817
-rw-r--r--source/gd/uui/messages.po236
-rw-r--r--source/gd/vcl/messages.po176
-rw-r--r--source/gd/writerperfect/messages.po18
-rw-r--r--source/gl/chart2/messages.po39
-rw-r--r--source/gl/cui/messages.po661
-rw-r--r--source/gl/dbaccess/messages.po6
-rw-r--r--source/gl/framework/messages.po126
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po3715
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po85
-rw-r--r--source/gl/helpcontent2/source/text/scalc/05.po80
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/gl/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po190
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po354
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/gl/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/gl/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po86
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/gl/helpcontent2/source/text/simpress.po484
-rw-r--r--source/gl/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/gl/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/gl/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/gl/helpcontent2/source/text/smath/01.po62
-rw-r--r--source/gl/helpcontent2/source/text/swriter.po76
-rw-r--r--source/gl/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po234
-rw-r--r--source/gl/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/gl/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po404
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po196
-rw-r--r--source/gl/reportdesign/messages.po6
-rw-r--r--source/gl/sc/messages.po98
-rw-r--r--source/gl/sd/messages.po792
-rw-r--r--source/gl/sfx2/messages.po492
-rw-r--r--source/gl/starmath/messages.po746
-rw-r--r--source/gl/svtools/messages.po8
-rw-r--r--source/gl/svx/messages.po3489
-rw-r--r--source/gl/sw/messages.po2907
-rw-r--r--source/gl/uui/messages.po236
-rw-r--r--source/gl/vcl/messages.po180
-rw-r--r--source/gl/writerperfect/messages.po20
-rw-r--r--source/gu/cui/messages.po613
-rw-r--r--source/gu/dbaccess/messages.po6
-rw-r--r--source/gu/framework/messages.po122
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/gu/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po67
-rw-r--r--source/gu/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po218
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/gu/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/gu/helpcontent2/source/text/simpress.po464
-rw-r--r--source/gu/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/gu/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/gu/helpcontent2/source/text/simpress/guide.po40
-rw-r--r--source/gu/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/gu/helpcontent2/source/text/swriter.po64
-rw-r--r--source/gu/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po214
-rw-r--r--source/gu/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/gu/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po358
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/gu/sc/messages.po86
-rw-r--r--source/gu/sd/messages.po775
-rw-r--r--source/gu/sfx2/messages.po446
-rw-r--r--source/gu/starmath/messages.po738
-rw-r--r--source/gu/svx/messages.po3499
-rw-r--r--source/gu/sw/messages.po2827
-rw-r--r--source/gu/uui/messages.po236
-rw-r--r--source/gu/vcl/messages.po176
-rw-r--r--source/gu/writerperfect/messages.po18
-rw-r--r--source/gug/cui/messages.po611
-rw-r--r--source/gug/dbaccess/messages.po6
-rw-r--r--source/gug/framework/messages.po122
-rw-r--r--source/gug/helpcontent2/source/auxiliary.po8
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po40
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po30
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po4051
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po14
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po89
-rw-r--r--source/gug/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/gug/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po513
-rw-r--r--source/gug/helpcontent2/source/text/sdraw.po18
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/00.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po280
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po344
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po122
-rw-r--r--source/gug/helpcontent2/source/text/shared/04.po18
-rw-r--r--source/gug/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/explorer/database.po608
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po130
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po74
-rw-r--r--source/gug/helpcontent2/source/text/simpress.po490
-rw-r--r--source/gug/helpcontent2/source/text/simpress/00.po18
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po54
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po46
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po78
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po66
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po48
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po296
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po335
-rw-r--r--source/gug/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po442
-rw-r--r--source/gug/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/gug/sc/messages.po86
-rw-r--r--source/gug/sd/messages.po774
-rw-r--r--source/gug/sfx2/messages.po446
-rw-r--r--source/gug/starmath/messages.po738
-rw-r--r--source/gug/svx/messages.po3504
-rw-r--r--source/gug/sw/messages.po2817
-rw-r--r--source/gug/uui/messages.po236
-rw-r--r--source/gug/vcl/messages.po176
-rw-r--r--source/gug/writerperfect/messages.po18
-rw-r--r--source/he/basctl/messages.po11
-rw-r--r--source/he/chart2/messages.po47
-rw-r--r--source/he/cui/messages.po631
-rw-r--r--source/he/dbaccess/messages.po6
-rw-r--r--source/he/dictionaries/da_DK.po14
-rw-r--r--source/he/extensions/messages.po9
-rw-r--r--source/he/extras/source/autocorr/emoji.po159
-rw-r--r--source/he/filter/messages.po10
-rw-r--r--source/he/filter/source/config/fragments/filters.po14
-rw-r--r--source/he/fpicker/messages.po10
-rw-r--r--source/he/framework/messages.po124
-rw-r--r--source/he/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/he/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po63
-rw-r--r--source/he/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po182
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po210
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/he/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po70
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/he/helpcontent2/source/text/simpress.po464
-rw-r--r--source/he/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/he/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/he/helpcontent2/source/text/simpress/guide.po40
-rw-r--r--source/he/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/he/helpcontent2/source/text/swriter.po64
-rw-r--r--source/he/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/he/helpcontent2/source/text/swriter/02.po311
-rw-r--r--source/he/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office.po22
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po134
-rw-r--r--source/he/sc/messages.po335
-rw-r--r--source/he/scp2/source/extensions.po30
-rw-r--r--source/he/sd/messages.po779
-rw-r--r--source/he/sfx2/messages.po465
-rw-r--r--source/he/starmath/messages.po738
-rw-r--r--source/he/svtools/messages.po20
-rw-r--r--source/he/svx/messages.po3516
-rw-r--r--source/he/sw/messages.po3269
-rw-r--r--source/he/swext/mediawiki/help.po19
-rw-r--r--source/he/uui/messages.po238
-rw-r--r--source/he/vcl/messages.po210
-rw-r--r--source/he/writerperfect/messages.po20
-rw-r--r--source/hi/cui/messages.po611
-rw-r--r--source/hi/dbaccess/messages.po6
-rw-r--r--source/hi/framework/messages.po122
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/hi/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/hi/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po182
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po198
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/hi/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/hi/helpcontent2/source/text/simpress.po464
-rw-r--r--source/hi/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/hi/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/hi/helpcontent2/source/text/simpress/guide.po38
-rw-r--r--source/hi/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/hi/helpcontent2/source/text/swriter.po56
-rw-r--r--source/hi/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/hi/helpcontent2/source/text/swriter/02.po311
-rw-r--r--source/hi/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po330
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/hi/sc/messages.po86
-rw-r--r--source/hi/sd/messages.po772
-rw-r--r--source/hi/sfx2/messages.po446
-rw-r--r--source/hi/starmath/messages.po738
-rw-r--r--source/hi/svx/messages.po3499
-rw-r--r--source/hi/sw/messages.po2819
-rw-r--r--source/hi/uui/messages.po236
-rw-r--r--source/hi/vcl/messages.po176
-rw-r--r--source/hi/writerperfect/messages.po18
-rw-r--r--source/hr/cui/messages.po611
-rw-r--r--source/hr/dbaccess/messages.po6
-rw-r--r--source/hr/framework/messages.po122
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/hr/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/hr/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po182
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po196
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/hr/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/hr/helpcontent2/source/text/simpress.po464
-rw-r--r--source/hr/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/hr/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/hr/helpcontent2/source/text/simpress/guide.po38
-rw-r--r--source/hr/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/hr/helpcontent2/source/text/swriter.po64
-rw-r--r--source/hr/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/hr/helpcontent2/source/text/swriter/02.po311
-rw-r--r--source/hr/helpcontent2/source/text/swriter/04.po14
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po326
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/hr/sc/messages.po86
-rw-r--r--source/hr/sd/messages.po774
-rw-r--r--source/hr/sfx2/messages.po448
-rw-r--r--source/hr/starmath/messages.po738
-rw-r--r--source/hr/svx/messages.po3481
-rw-r--r--source/hr/sw/messages.po2817
-rw-r--r--source/hr/uui/messages.po236
-rw-r--r--source/hr/vcl/messages.po176
-rw-r--r--source/hr/writerperfect/messages.po18
-rw-r--r--source/hsb/chart2/messages.po40
-rw-r--r--source/hsb/cui/messages.po615
-rw-r--r--source/hsb/dbaccess/messages.po6
-rw-r--r--source/hsb/framework/messages.po126
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po170
-rw-r--r--source/hsb/sc/messages.po96
-rw-r--r--source/hsb/sd/messages.po788
-rw-r--r--source/hsb/sfx2/messages.po478
-rw-r--r--source/hsb/starmath/messages.po740
-rw-r--r--source/hsb/svx/messages.po3485
-rw-r--r--source/hsb/sw/messages.po2863
-rw-r--r--source/hsb/uui/messages.po238
-rw-r--r--source/hsb/vcl/messages.po178
-rw-r--r--source/hsb/writerperfect/messages.po20
-rw-r--r--source/hu/accessibility/messages.po36
-rw-r--r--source/hu/avmedia/messages.po32
-rw-r--r--source/hu/basctl/messages.po68
-rw-r--r--source/hu/basic/messages.po36
-rw-r--r--source/hu/chart2/messages.po76
-rw-r--r--source/hu/connectivity/messages.po32
-rw-r--r--source/hu/cui/messages.po1531
-rw-r--r--source/hu/dbaccess/messages.po94
-rw-r--r--source/hu/desktop/messages.po54
-rw-r--r--source/hu/dictionaries/da_DK.po16
-rw-r--r--source/hu/dictionaries/es.po12
-rw-r--r--source/hu/dictionaries/ko_KR.po12
-rw-r--r--source/hu/dictionaries/sq_AL.po12
-rw-r--r--source/hu/editeng/messages.po32
-rw-r--r--source/hu/extensions/messages.po51
-rw-r--r--source/hu/filter/messages.po212
-rw-r--r--source/hu/forms/messages.po36
-rw-r--r--source/hu/formula/messages.po58
-rw-r--r--source/hu/fpicker/messages.po32
-rw-r--r--source/hu/framework/messages.po152
-rw-r--r--source/hu/helpcontent2/source/auxiliary.po60
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/hu/helpcontent2/source/text/scalc.po38
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/hu/helpcontent2/source/text/scalc/02.po22
-rw-r--r--source/hu/helpcontent2/source/text/scalc/06.po15
-rw-r--r--source/hu/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/hu/helpcontent2/source/text/sdraw.po142
-rw-r--r--source/hu/helpcontent2/source/text/shared.po116
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po186
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po226
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/hu/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/hu/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/hu/helpcontent2/source/text/simpress.po536
-rw-r--r--source/hu/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/hu/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/hu/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/hu/helpcontent2/source/text/smath.po12
-rw-r--r--source/hu/helpcontent2/source/text/smath/01.po60
-rw-r--r--source/hu/helpcontent2/source/text/swriter.po138
-rw-r--r--source/hu/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/hu/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/hu/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po382
-rw-r--r--source/hu/helpcontent2/source/text/swriter/librelogo.po12
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po228
-rw-r--r--source/hu/oox/messages.po32
-rw-r--r--source/hu/readlicense_oo/docs.po16
-rw-r--r--source/hu/reportdesign/messages.po32
-rw-r--r--source/hu/sc/messages.po875
-rw-r--r--source/hu/scaddins/messages.po34
-rw-r--r--source/hu/sccomp/messages.po34
-rw-r--r--source/hu/scp2/source/ooo.po10
-rw-r--r--source/hu/sd/messages.po932
-rw-r--r--source/hu/sfx2/messages.po556
-rw-r--r--source/hu/shell/messages.po36
-rw-r--r--source/hu/starmath/messages.po864
-rw-r--r--source/hu/svl/messages.po32
-rw-r--r--source/hu/svtools/messages.po48
-rw-r--r--source/hu/svx/messages.po4296
-rw-r--r--source/hu/sw/messages.po4367
-rw-r--r--source/hu/uui/messages.po272
-rw-r--r--source/hu/vcl/messages.po236
-rw-r--r--source/hu/wizards/messages.po36
-rw-r--r--source/hu/wizards/source/resources.po12
-rw-r--r--source/hu/writerperfect/messages.po48
-rw-r--r--source/hu/xmlsecurity/messages.po34
-rw-r--r--source/id/cui/messages.po619
-rw-r--r--source/id/dbaccess/messages.po6
-rw-r--r--source/id/framework/messages.po124
-rw-r--r--source/id/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/id/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po75
-rw-r--r--source/id/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po192
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/id/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/id/helpcontent2/source/text/shared/explorer/database.po605
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/id/helpcontent2/source/text/simpress.po480
-rw-r--r--source/id/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/id/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/id/helpcontent2/source/text/smath/01.po60
-rw-r--r--source/id/helpcontent2/source/text/swriter.po64
-rw-r--r--source/id/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po232
-rw-r--r--source/id/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/id/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po392
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/id/sc/messages.po86
-rw-r--r--source/id/sd/messages.po774
-rw-r--r--source/id/sfx2/messages.po448
-rw-r--r--source/id/starmath/messages.po738
-rw-r--r--source/id/svx/messages.po3481
-rw-r--r--source/id/sw/messages.po2825
-rw-r--r--source/id/uui/messages.po238
-rw-r--r--source/id/vcl/messages.po176
-rw-r--r--source/id/writerperfect/messages.po20
-rw-r--r--source/is/cui/messages.po611
-rw-r--r--source/is/dbaccess/messages.po6
-rw-r--r--source/is/dictionaries/da_DK.po14
-rw-r--r--source/is/dictionaries/ko_KR.po12
-rw-r--r--source/is/framework/messages.po122
-rw-r--r--source/is/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/is/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/is/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po204
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/is/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po72
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/is/helpcontent2/source/text/simpress.po480
-rw-r--r--source/is/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/is/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/is/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/is/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/is/helpcontent2/source/text/swriter.po64
-rw-r--r--source/is/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po202
-rw-r--r--source/is/helpcontent2/source/text/swriter/02.po317
-rw-r--r--source/is/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po324
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/is/sc/messages.po86
-rw-r--r--source/is/sd/messages.po774
-rw-r--r--source/is/sfx2/messages.po448
-rw-r--r--source/is/starmath/messages.po738
-rw-r--r--source/is/svx/messages.po3481
-rw-r--r--source/is/sw/messages.po2817
-rw-r--r--source/is/uui/messages.po236
-rw-r--r--source/is/vcl/messages.po176
-rw-r--r--source/is/wizards/source/resources.po8
-rw-r--r--source/is/writerperfect/messages.po18
-rw-r--r--source/it/cui/messages.po629
-rw-r--r--source/it/dbaccess/messages.po6
-rw-r--r--source/it/framework/messages.po122
-rw-r--r--source/it/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po3709
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po81
-rw-r--r--source/it/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po240
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po244
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/it/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po84
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/it/helpcontent2/source/text/simpress.po480
-rw-r--r--source/it/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/it/helpcontent2/source/text/smath/01.po64
-rw-r--r--source/it/helpcontent2/source/text/swriter.po70
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po244
-rw-r--r--source/it/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/it/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po400
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/it/sc/messages.po86
-rw-r--r--source/it/sd/messages.po774
-rw-r--r--source/it/sfx2/messages.po448
-rw-r--r--source/it/starmath/messages.po738
-rw-r--r--source/it/svx/messages.po3481
-rw-r--r--source/it/sw/messages.po2827
-rw-r--r--source/it/uui/messages.po236
-rw-r--r--source/it/vcl/messages.po176
-rw-r--r--source/it/writerperfect/messages.po18
-rw-r--r--source/ja/cui/messages.po637
-rw-r--r--source/ja/dbaccess/messages.po6
-rw-r--r--source/ja/dictionaries/da_DK.po14
-rw-r--r--source/ja/filter/messages.po154
-rw-r--r--source/ja/framework/messages.po128
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ja/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/ja/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po220
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/ja/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ja/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/ja/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ja/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ja/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/ja/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ja/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/ja/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ja/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/ja/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/ja/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/ja/sc/messages.po86
-rw-r--r--source/ja/sd/messages.po774
-rw-r--r--source/ja/sfx2/messages.po448
-rw-r--r--source/ja/starmath/messages.po738
-rw-r--r--source/ja/svx/messages.po3520
-rw-r--r--source/ja/sw/messages.po2827
-rw-r--r--source/ja/uui/messages.po236
-rw-r--r--source/ja/vcl/messages.po176
-rw-r--r--source/ja/writerperfect/messages.po20
-rw-r--r--source/jv/cui/messages.po611
-rw-r--r--source/jv/dbaccess/messages.po6
-rw-r--r--source/jv/framework/messages.po122
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--source/jv/sc/messages.po86
-rw-r--r--source/jv/sd/messages.po772
-rw-r--r--source/jv/sfx2/messages.po447
-rw-r--r--source/jv/starmath/messages.po738
-rw-r--r--source/jv/svx/messages.po3471
-rw-r--r--source/jv/sw/messages.po2820
-rw-r--r--source/jv/uui/messages.po236
-rw-r--r--source/jv/vcl/messages.po176
-rw-r--r--source/jv/writerperfect/messages.po18
-rw-r--r--source/ka/cui/messages.po611
-rw-r--r--source/ka/dbaccess/messages.po6
-rw-r--r--source/ka/framework/messages.po122
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ka/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po59
-rw-r--r--source/ka/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po200
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/ka/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/ka/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ka/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ka/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/ka/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/ka/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/ka/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ka/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po214
-rw-r--r--source/ka/helpcontent2/source/text/swriter/02.po317
-rw-r--r--source/ka/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po324
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/ka/sc/messages.po86
-rw-r--r--source/ka/sd/messages.po772
-rw-r--r--source/ka/sfx2/messages.po446
-rw-r--r--source/ka/starmath/messages.po738
-rw-r--r--source/ka/svx/messages.po3499
-rw-r--r--source/ka/sw/messages.po2825
-rw-r--r--source/ka/uui/messages.po236
-rw-r--r--source/ka/vcl/messages.po176
-rw-r--r--source/ka/writerperfect/messages.po18
-rw-r--r--source/kab/cui/messages.po611
-rw-r--r--source/kab/dbaccess/messages.po6
-rw-r--r--source/kab/framework/messages.po122
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/kab/sc/messages.po86
-rw-r--r--source/kab/sd/messages.po774
-rw-r--r--source/kab/sfx2/messages.po448
-rw-r--r--source/kab/starmath/messages.po738
-rw-r--r--source/kab/svx/messages.po3481
-rw-r--r--source/kab/sw/messages.po2817
-rw-r--r--source/kab/uui/messages.po236
-rw-r--r--source/kab/vcl/messages.po176
-rw-r--r--source/kab/writerperfect/messages.po18
-rw-r--r--source/kk/chart2/messages.po6
-rw-r--r--source/kk/cui/messages.po635
-rw-r--r--source/kk/dbaccess/messages.po6
-rw-r--r--source/kk/dictionaries/es.po5
-rw-r--r--source/kk/filter/messages.po16
-rw-r--r--source/kk/framework/messages.po124
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po140
-rw-r--r--source/kk/sc/messages.po92
-rw-r--r--source/kk/sd/messages.po774
-rw-r--r--source/kk/sfx2/messages.po468
-rw-r--r--source/kk/starmath/messages.po738
-rw-r--r--source/kk/svtools/messages.po6
-rw-r--r--source/kk/svx/messages.po3485
-rw-r--r--source/kk/sw/messages.po2821
-rw-r--r--source/kk/uui/messages.po238
-rw-r--r--source/kk/vcl/messages.po176
-rw-r--r--source/kk/writerperfect/messages.po20
-rw-r--r--source/kl/cui/messages.po611
-rw-r--r--source/kl/dbaccess/messages.po6
-rw-r--r--source/kl/framework/messages.po122
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po126
-rw-r--r--source/kl/sc/messages.po86
-rw-r--r--source/kl/sd/messages.po772
-rw-r--r--source/kl/sfx2/messages.po447
-rw-r--r--source/kl/starmath/messages.po738
-rw-r--r--source/kl/svx/messages.po3471
-rw-r--r--source/kl/sw/messages.po2811
-rw-r--r--source/kl/uui/messages.po236
-rw-r--r--source/kl/vcl/messages.po176
-rw-r--r--source/kl/writerperfect/messages.po18
-rw-r--r--source/km/cui/messages.po613
-rw-r--r--source/km/dbaccess/messages.po6
-rw-r--r--source/km/framework/messages.po122
-rw-r--r--source/km/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/km/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/km/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po186
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po224
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/km/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/km/helpcontent2/source/text/simpress.po464
-rw-r--r--source/km/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/km/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/km/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/km/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/km/helpcontent2/source/text/swriter.po64
-rw-r--r--source/km/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/km/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/km/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po378
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/km/sc/messages.po86
-rw-r--r--source/km/sd/messages.po775
-rw-r--r--source/km/sfx2/messages.po446
-rw-r--r--source/km/starmath/messages.po738
-rw-r--r--source/km/svx/messages.po3499
-rw-r--r--source/km/sw/messages.po2827
-rw-r--r--source/km/uui/messages.po236
-rw-r--r--source/km/vcl/messages.po176
-rw-r--r--source/km/writerperfect/messages.po18
-rw-r--r--source/kmr-Latn/cui/messages.po611
-rw-r--r--source/kmr-Latn/dbaccess/messages.po6
-rw-r--r--source/kmr-Latn/framework/messages.po122
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/kmr-Latn/sc/messages.po86
-rw-r--r--source/kmr-Latn/sd/messages.po772
-rw-r--r--source/kmr-Latn/sfx2/messages.po446
-rw-r--r--source/kmr-Latn/starmath/messages.po738
-rw-r--r--source/kmr-Latn/svx/messages.po3499
-rw-r--r--source/kmr-Latn/sw/messages.po2818
-rw-r--r--source/kmr-Latn/uui/messages.po236
-rw-r--r--source/kmr-Latn/vcl/messages.po176
-rw-r--r--source/kmr-Latn/writerperfect/messages.po18
-rw-r--r--source/kn/cui/messages.po611
-rw-r--r--source/kn/dbaccess/messages.po6
-rw-r--r--source/kn/framework/messages.po122
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/kn/sc/messages.po86
-rw-r--r--source/kn/sd/messages.po775
-rw-r--r--source/kn/sfx2/messages.po446
-rw-r--r--source/kn/starmath/messages.po738
-rw-r--r--source/kn/svx/messages.po3499
-rw-r--r--source/kn/sw/messages.po2819
-rw-r--r--source/kn/uui/messages.po236
-rw-r--r--source/kn/vcl/messages.po176
-rw-r--r--source/kn/writerperfect/messages.po18
-rw-r--r--source/ko/cui/messages.po615
-rw-r--r--source/ko/dbaccess/messages.po6
-rw-r--r--source/ko/framework/messages.po122
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ko/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/ko/helpcontent2/source/text/scalc/04.po10
-rw-r--r--source/ko/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po186
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po222
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/ko/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/ko/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ko/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ko/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/ko/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ko/helpcontent2/source/text/smath/01.po60
-rw-r--r--source/ko/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ko/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/ko/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/ko/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po378
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/ko/sc/messages.po86
-rw-r--r--source/ko/sd/messages.po774
-rw-r--r--source/ko/sfx2/messages.po448
-rw-r--r--source/ko/starmath/messages.po738
-rw-r--r--source/ko/svx/messages.po3481
-rw-r--r--source/ko/sw/messages.po2825
-rw-r--r--source/ko/uui/messages.po236
-rw-r--r--source/ko/vcl/messages.po176
-rw-r--r--source/ko/writerperfect/messages.po18
-rw-r--r--source/kok/cui/messages.po611
-rw-r--r--source/kok/dbaccess/messages.po6
-rw-r--r--source/kok/framework/messages.po122
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/kok/sc/messages.po86
-rw-r--r--source/kok/sd/messages.po772
-rw-r--r--source/kok/sfx2/messages.po446
-rw-r--r--source/kok/starmath/messages.po738
-rw-r--r--source/kok/svx/messages.po3499
-rw-r--r--source/kok/sw/messages.po2818
-rw-r--r--source/kok/uui/messages.po236
-rw-r--r--source/kok/vcl/messages.po176
-rw-r--r--source/kok/writerperfect/messages.po18
-rw-r--r--source/ks/cui/messages.po611
-rw-r--r--source/ks/dbaccess/messages.po6
-rw-r--r--source/ks/framework/messages.po122
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po122
-rw-r--r--source/ks/sc/messages.po86
-rw-r--r--source/ks/sd/messages.po772
-rw-r--r--source/ks/sfx2/messages.po446
-rw-r--r--source/ks/starmath/messages.po738
-rw-r--r--source/ks/svx/messages.po3499
-rw-r--r--source/ks/sw/messages.po2818
-rw-r--r--source/ks/uui/messages.po236
-rw-r--r--source/ks/vcl/messages.po176
-rw-r--r--source/ks/writerperfect/messages.po18
-rw-r--r--source/ky/cui/messages.po611
-rw-r--r--source/ky/dbaccess/messages.po6
-rw-r--r--source/ky/framework/messages.po122
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--source/ky/sc/messages.po86
-rw-r--r--source/ky/sd/messages.po772
-rw-r--r--source/ky/sfx2/messages.po444
-rw-r--r--source/ky/starmath/messages.po738
-rw-r--r--source/ky/svx/messages.po3471
-rw-r--r--source/ky/sw/messages.po2811
-rw-r--r--source/ky/uui/messages.po236
-rw-r--r--source/ky/vcl/messages.po176
-rw-r--r--source/ky/writerperfect/messages.po18
-rw-r--r--source/lb/cui/messages.po611
-rw-r--r--source/lb/dbaccess/messages.po6
-rw-r--r--source/lb/framework/messages.po122
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/lb/sc/messages.po86
-rw-r--r--source/lb/sd/messages.po772
-rw-r--r--source/lb/sfx2/messages.po446
-rw-r--r--source/lb/starmath/messages.po738
-rw-r--r--source/lb/svx/messages.po3491
-rw-r--r--source/lb/sw/messages.po2811
-rw-r--r--source/lb/uui/messages.po236
-rw-r--r--source/lb/vcl/messages.po177
-rw-r--r--source/lb/writerperfect/messages.po18
-rw-r--r--source/lo/cui/messages.po611
-rw-r--r--source/lo/dbaccess/messages.po6
-rw-r--r--source/lo/framework/messages.po122
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/lo/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/lo/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po180
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po190
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po92
-rw-r--r--source/lo/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/lo/helpcontent2/source/text/simpress.po464
-rw-r--r--source/lo/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/lo/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/lo/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/lo/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/lo/helpcontent2/source/text/swriter.po56
-rw-r--r--source/lo/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po196
-rw-r--r--source/lo/helpcontent2/source/text/swriter/02.po303
-rw-r--r--source/lo/helpcontent2/source/text/swriter/04.po14
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po324
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po122
-rw-r--r--source/lo/sc/messages.po86
-rw-r--r--source/lo/sd/messages.po772
-rw-r--r--source/lo/sfx2/messages.po446
-rw-r--r--source/lo/starmath/messages.po738
-rw-r--r--source/lo/svx/messages.po3499
-rw-r--r--source/lo/sw/messages.po2818
-rw-r--r--source/lo/uui/messages.po236
-rw-r--r--source/lo/vcl/messages.po176
-rw-r--r--source/lo/writerperfect/messages.po18
-rw-r--r--source/lt/cui/messages.po617
-rw-r--r--source/lt/dbaccess/messages.po6
-rw-r--r--source/lt/framework/messages.po122
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po14
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po3711
-rw-r--r--source/lt/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po77
-rw-r--r--source/lt/helpcontent2/source/text/sdatabase.po467
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po206
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po202
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po98
-rw-r--r--source/lt/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/lt/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/lt/helpcontent2/source/text/simpress.po484
-rw-r--r--source/lt/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/lt/helpcontent2/source/text/simpress/01.po40
-rw-r--r--source/lt/helpcontent2/source/text/simpress/guide.po44
-rw-r--r--source/lt/helpcontent2/source/text/smath/01.po64
-rw-r--r--source/lt/helpcontent2/source/text/swriter.po70
-rw-r--r--source/lt/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po244
-rw-r--r--source/lt/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/lt/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po410
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/lt/sc/messages.po86
-rw-r--r--source/lt/sd/messages.po774
-rw-r--r--source/lt/sfx2/messages.po448
-rw-r--r--source/lt/starmath/messages.po738
-rw-r--r--source/lt/svx/messages.po3481
-rw-r--r--source/lt/sw/messages.po2825
-rw-r--r--source/lt/uui/messages.po236
-rw-r--r--source/lt/vcl/messages.po176
-rw-r--r--source/lt/writerperfect/messages.po18
-rw-r--r--source/lv/cui/messages.po613
-rw-r--r--source/lv/dbaccess/messages.po6
-rw-r--r--source/lv/framework/messages.po122
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/lv/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/lv/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po200
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/lv/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po72
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/lv/helpcontent2/source/text/simpress.po464
-rw-r--r--source/lv/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/lv/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/lv/helpcontent2/source/text/simpress/guide.po38
-rw-r--r--source/lv/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/lv/helpcontent2/source/text/swriter.po64
-rw-r--r--source/lv/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po202
-rw-r--r--source/lv/helpcontent2/source/text/swriter/02.po317
-rw-r--r--source/lv/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po326
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/lv/sc/messages.po86
-rw-r--r--source/lv/sd/messages.po774
-rw-r--r--source/lv/sfx2/messages.po448
-rw-r--r--source/lv/starmath/messages.po738
-rw-r--r--source/lv/svx/messages.po3481
-rw-r--r--source/lv/sw/messages.po2817
-rw-r--r--source/lv/uui/messages.po236
-rw-r--r--source/lv/vcl/messages.po176
-rw-r--r--source/lv/writerperfect/messages.po18
-rw-r--r--source/mai/cui/messages.po611
-rw-r--r--source/mai/dbaccess/messages.po6
-rw-r--r--source/mai/framework/messages.po122
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/mai/sc/messages.po86
-rw-r--r--source/mai/sd/messages.po772
-rw-r--r--source/mai/sfx2/messages.po446
-rw-r--r--source/mai/starmath/messages.po738
-rw-r--r--source/mai/svx/messages.po3499
-rw-r--r--source/mai/sw/messages.po2820
-rw-r--r--source/mai/uui/messages.po236
-rw-r--r--source/mai/vcl/messages.po176
-rw-r--r--source/mai/writerperfect/messages.po18
-rw-r--r--source/mk/cui/messages.po613
-rw-r--r--source/mk/dbaccess/messages.po6
-rw-r--r--source/mk/framework/messages.po122
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/mk/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po67
-rw-r--r--source/mk/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po218
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/mk/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/mk/helpcontent2/source/text/simpress.po464
-rw-r--r--source/mk/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/mk/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/mk/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/mk/helpcontent2/source/text/swriter.po64
-rw-r--r--source/mk/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po214
-rw-r--r--source/mk/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/mk/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po374
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/mk/sc/messages.po86
-rw-r--r--source/mk/sd/messages.po772
-rw-r--r--source/mk/sfx2/messages.po446
-rw-r--r--source/mk/starmath/messages.po738
-rw-r--r--source/mk/svx/messages.po3499
-rw-r--r--source/mk/sw/messages.po2826
-rw-r--r--source/mk/uui/messages.po236
-rw-r--r--source/mk/vcl/messages.po176
-rw-r--r--source/mk/writerperfect/messages.po18
-rw-r--r--source/ml/cui/messages.po611
-rw-r--r--source/ml/dbaccess/messages.po6
-rw-r--r--source/ml/framework/messages.po122
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/ml/sc/messages.po86
-rw-r--r--source/ml/sd/messages.po772
-rw-r--r--source/ml/sfx2/messages.po446
-rw-r--r--source/ml/starmath/messages.po738
-rw-r--r--source/ml/svx/messages.po3499
-rw-r--r--source/ml/sw/messages.po2819
-rw-r--r--source/ml/uui/messages.po236
-rw-r--r--source/ml/vcl/messages.po176
-rw-r--r--source/ml/writerperfect/messages.po18
-rw-r--r--source/mn/cui/messages.po615
-rw-r--r--source/mn/dbaccess/messages.po8
-rw-r--r--source/mn/framework/messages.po124
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/mn/sc/messages.po86
-rw-r--r--source/mn/sd/messages.po772
-rw-r--r--source/mn/sfx2/messages.po448
-rw-r--r--source/mn/starmath/messages.po740
-rw-r--r--source/mn/svx/messages.po3499
-rw-r--r--source/mn/sw/messages.po2820
-rw-r--r--source/mn/uui/messages.po238
-rw-r--r--source/mn/vcl/messages.po178
-rw-r--r--source/mn/writerperfect/messages.po20
-rw-r--r--source/mni/cui/messages.po611
-rw-r--r--source/mni/dbaccess/messages.po6
-rw-r--r--source/mni/framework/messages.po122
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/mni/sc/messages.po86
-rw-r--r--source/mni/sd/messages.po775
-rw-r--r--source/mni/sfx2/messages.po446
-rw-r--r--source/mni/starmath/messages.po738
-rw-r--r--source/mni/svx/messages.po3499
-rw-r--r--source/mni/sw/messages.po2820
-rw-r--r--source/mni/uui/messages.po236
-rw-r--r--source/mni/vcl/messages.po176
-rw-r--r--source/mni/writerperfect/messages.po18
-rw-r--r--source/mr/cui/messages.po611
-rw-r--r--source/mr/dbaccess/messages.po6
-rw-r--r--source/mr/framework/messages.po122
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/mr/sc/messages.po86
-rw-r--r--source/mr/sd/messages.po775
-rw-r--r--source/mr/sfx2/messages.po446
-rw-r--r--source/mr/starmath/messages.po738
-rw-r--r--source/mr/svx/messages.po3499
-rw-r--r--source/mr/sw/messages.po2818
-rw-r--r--source/mr/uui/messages.po236
-rw-r--r--source/mr/vcl/messages.po176
-rw-r--r--source/mr/writerperfect/messages.po18
-rw-r--r--source/my/cui/messages.po611
-rw-r--r--source/my/dbaccess/messages.po6
-rw-r--r--source/my/framework/messages.po122
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/my/sc/messages.po86
-rw-r--r--source/my/sd/messages.po772
-rw-r--r--source/my/sfx2/messages.po446
-rw-r--r--source/my/starmath/messages.po738
-rw-r--r--source/my/svx/messages.po3499
-rw-r--r--source/my/sw/messages.po2818
-rw-r--r--source/my/uui/messages.po236
-rw-r--r--source/my/vcl/messages.po176
-rw-r--r--source/my/writerperfect/messages.po18
-rw-r--r--source/nb/chart2/messages.po10
-rw-r--r--source/nb/cui/messages.po654
-rw-r--r--source/nb/dbaccess/messages.po6
-rw-r--r--source/nb/framework/messages.po122
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/python.po18
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po3709
-rw-r--r--source/nb/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po67
-rw-r--r--source/nb/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po204
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po220
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/nb/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/nb/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po84
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/nb/helpcontent2/source/text/simpress.po480
-rw-r--r--source/nb/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/nb/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/nb/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/nb/helpcontent2/source/text/smath/01.po60
-rw-r--r--source/nb/helpcontent2/source/text/swriter.po64
-rw-r--r--source/nb/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po234
-rw-r--r--source/nb/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/nb/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po398
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/nb/sc/messages.po86
-rw-r--r--source/nb/sd/messages.po774
-rw-r--r--source/nb/sfx2/messages.po456
-rw-r--r--source/nb/starmath/messages.po738
-rw-r--r--source/nb/svx/messages.po3481
-rw-r--r--source/nb/sw/messages.po2825
-rw-r--r--source/nb/uui/messages.po236
-rw-r--r--source/nb/vcl/messages.po176
-rw-r--r--source/nb/wizards/source/resources.po10
-rw-r--r--source/nb/writerperfect/messages.po18
-rw-r--r--source/ne/cui/messages.po613
-rw-r--r--source/ne/dbaccess/messages.po6
-rw-r--r--source/ne/framework/messages.po122
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ne/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po67
-rw-r--r--source/ne/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po214
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/ne/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/ne/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ne/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ne/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/ne/helpcontent2/source/text/simpress/guide.po40
-rw-r--r--source/ne/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/ne/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ne/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po214
-rw-r--r--source/ne/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/ne/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po372
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/ne/sc/messages.po86
-rw-r--r--source/ne/sd/messages.po772
-rw-r--r--source/ne/sfx2/messages.po446
-rw-r--r--source/ne/starmath/messages.po738
-rw-r--r--source/ne/svx/messages.po3499
-rw-r--r--source/ne/sw/messages.po2826
-rw-r--r--source/ne/uui/messages.po236
-rw-r--r--source/ne/vcl/messages.po176
-rw-r--r--source/ne/writerperfect/messages.po18
-rw-r--r--source/nl/chart2/messages.po38
-rw-r--r--source/nl/cui/messages.po657
-rw-r--r--source/nl/dbaccess/messages.po8
-rw-r--r--source/nl/desktop/messages.po6
-rw-r--r--source/nl/extensions/messages.po6
-rw-r--r--source/nl/framework/messages.po126
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po10
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/guide.po24
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/python.po46
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po194
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/01.po83
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/02.po14
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po3735
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po12
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po303
-rw-r--r--source/nl/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/guide.po12
-rw-r--r--source/nl/helpcontent2/source/text/shared.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po242
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po252
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po104
-rw-r--r--source/nl/helpcontent2/source/text/shared/04.po14
-rw-r--r--source/nl/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po218
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po96
-rw-r--r--source/nl/helpcontent2/source/text/simpress.po488
-rw-r--r--source/nl/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po46
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po70
-rw-r--r--source/nl/helpcontent2/source/text/smath/01.po136
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po82
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po46
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po380
-rw-r--r--source/nl/helpcontent2/source/text/swriter/02.po337
-rw-r--r--source/nl/helpcontent2/source/text/swriter/04.po28
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po426
-rw-r--r--source/nl/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office.po14
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po180
-rw-r--r--source/nl/sc/messages.po98
-rw-r--r--source/nl/sd/messages.po800
-rw-r--r--source/nl/sfx2/messages.po478
-rw-r--r--source/nl/starmath/messages.po740
-rw-r--r--source/nl/svx/messages.po3485
-rw-r--r--source/nl/sw/messages.po2945
-rw-r--r--source/nl/uui/messages.po240
-rw-r--r--source/nl/vcl/messages.po182
-rw-r--r--source/nl/wizards/source/resources.po10
-rw-r--r--source/nl/writerperfect/messages.po20
-rw-r--r--source/nn/basctl/messages.po8
-rw-r--r--source/nn/chart2/messages.po36
-rw-r--r--source/nn/cui/messages.po1005
-rw-r--r--source/nn/dbaccess/messages.po44
-rw-r--r--source/nn/desktop/messages.po6
-rw-r--r--source/nn/dictionaries/da_DK.po14
-rw-r--r--source/nn/extensions/messages.po25
-rw-r--r--source/nn/extras/source/autocorr/emoji.po8
-rw-r--r--source/nn/filter/messages.po14
-rw-r--r--source/nn/framework/messages.po124
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/python.po26
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po20
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po3709
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po12
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po91
-rw-r--r--source/nn/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/nn/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/nn/helpcontent2/source/text/sdatabase.po593
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared.po4
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po320
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po258
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/nn/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared/05.po18
-rw-r--r--source/nn/helpcontent2/source/text/shared/autopi.po4
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po618
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po98
-rw-r--r--source/nn/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po62
-rw-r--r--source/nn/helpcontent2/source/text/simpress.po486
-rw-r--r--source/nn/helpcontent2/source/text/simpress/00.po16
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po44
-rw-r--r--source/nn/helpcontent2/source/text/simpress/02.po4
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po48
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po72
-rw-r--r--source/nn/helpcontent2/source/text/smath/guide.po8
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po80
-rw-r--r--source/nn/helpcontent2/source/text/swriter/00.po52
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po306
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po381
-rw-r--r--source/nn/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po416
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office.po22
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po268
-rw-r--r--source/nn/readlicense_oo/docs.po16
-rw-r--r--source/nn/sc/messages.po244
-rw-r--r--source/nn/scp2/source/ooo.po10
-rw-r--r--source/nn/sd/messages.po819
-rw-r--r--source/nn/sfx2/messages.po490
-rw-r--r--source/nn/starmath/messages.po846
-rw-r--r--source/nn/svtools/messages.po26
-rw-r--r--source/nn/svx/messages.po3668
-rw-r--r--source/nn/sw/messages.po3567
-rw-r--r--source/nn/uui/messages.po242
-rw-r--r--source/nn/vcl/messages.po194
-rw-r--r--source/nn/wizards/source/resources.po4
-rw-r--r--source/nn/writerperfect/messages.po20
-rw-r--r--source/nr/cui/messages.po611
-rw-r--r--source/nr/dbaccess/messages.po6
-rw-r--r--source/nr/framework/messages.po122
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/nr/sc/messages.po86
-rw-r--r--source/nr/sd/messages.po772
-rw-r--r--source/nr/sfx2/messages.po446
-rw-r--r--source/nr/starmath/messages.po738
-rw-r--r--source/nr/svx/messages.po3501
-rw-r--r--source/nr/sw/messages.po2820
-rw-r--r--source/nr/uui/messages.po236
-rw-r--r--source/nr/vcl/messages.po176
-rw-r--r--source/nr/writerperfect/messages.po18
-rw-r--r--source/nso/cui/messages.po611
-rw-r--r--source/nso/dbaccess/messages.po6
-rw-r--r--source/nso/framework/messages.po122
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/nso/sc/messages.po86
-rw-r--r--source/nso/sd/messages.po772
-rw-r--r--source/nso/sfx2/messages.po446
-rw-r--r--source/nso/starmath/messages.po738
-rw-r--r--source/nso/svx/messages.po3499
-rw-r--r--source/nso/sw/messages.po2818
-rw-r--r--source/nso/uui/messages.po236
-rw-r--r--source/nso/vcl/messages.po176
-rw-r--r--source/nso/writerperfect/messages.po18
-rw-r--r--source/oc/cui/messages.po621
-rw-r--r--source/oc/dbaccess/messages.po8
-rw-r--r--source/oc/editeng/messages.po10
-rw-r--r--source/oc/extensions/messages.po6
-rw-r--r--source/oc/formula/messages.po4
-rw-r--r--source/oc/framework/messages.po124
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/oc/readlicense_oo/docs.po8
-rw-r--r--source/oc/sc/messages.po94
-rw-r--r--source/oc/sd/messages.po782
-rw-r--r--source/oc/setup_native/source/mac.po4
-rw-r--r--source/oc/sfx2/messages.po458
-rw-r--r--source/oc/starmath/messages.po738
-rw-r--r--source/oc/svx/messages.po3489
-rw-r--r--source/oc/sw/messages.po2855
-rw-r--r--source/oc/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po50
-rw-r--r--source/oc/sysui/desktop/share.po80
-rw-r--r--source/oc/uui/messages.po238
-rw-r--r--source/oc/vcl/messages.po176
-rw-r--r--source/oc/writerperfect/messages.po20
-rw-r--r--source/oc/xmlsecurity/messages.po8
-rw-r--r--source/om/cui/messages.po613
-rw-r--r--source/om/dbaccess/messages.po6
-rw-r--r--source/om/framework/messages.po122
-rw-r--r--source/om/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/om/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/om/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po220
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/om/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/om/helpcontent2/source/text/simpress.po464
-rw-r--r--source/om/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/om/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/om/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/om/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/om/helpcontent2/source/text/swriter.po64
-rw-r--r--source/om/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/om/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/om/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/om/sc/messages.po86
-rw-r--r--source/om/sd/messages.po772
-rw-r--r--source/om/sfx2/messages.po446
-rw-r--r--source/om/starmath/messages.po738
-rw-r--r--source/om/svx/messages.po3499
-rw-r--r--source/om/sw/messages.po2826
-rw-r--r--source/om/uui/messages.po236
-rw-r--r--source/om/vcl/messages.po176
-rw-r--r--source/om/writerperfect/messages.po18
-rw-r--r--source/or/cui/messages.po611
-rw-r--r--source/or/dbaccess/messages.po6
-rw-r--r--source/or/framework/messages.po122
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/or/sc/messages.po86
-rw-r--r--source/or/sd/messages.po772
-rw-r--r--source/or/sfx2/messages.po446
-rw-r--r--source/or/starmath/messages.po738
-rw-r--r--source/or/svx/messages.po3499
-rw-r--r--source/or/sw/messages.po2818
-rw-r--r--source/or/uui/messages.po236
-rw-r--r--source/or/vcl/messages.po176
-rw-r--r--source/or/writerperfect/messages.po18
-rw-r--r--source/pa-IN/cui/messages.po611
-rw-r--r--source/pa-IN/dbaccess/messages.po6
-rw-r--r--source/pa-IN/framework/messages.po122
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/pa-IN/sc/messages.po86
-rw-r--r--source/pa-IN/sd/messages.po772
-rw-r--r--source/pa-IN/sfx2/messages.po446
-rw-r--r--source/pa-IN/starmath/messages.po738
-rw-r--r--source/pa-IN/svx/messages.po3499
-rw-r--r--source/pa-IN/sw/messages.po2818
-rw-r--r--source/pa-IN/uui/messages.po236
-rw-r--r--source/pa-IN/vcl/messages.po176
-rw-r--r--source/pa-IN/writerperfect/messages.po18
-rw-r--r--source/pl/chart2/messages.po38
-rw-r--r--source/pl/cui/messages.po665
-rw-r--r--source/pl/dbaccess/messages.po12
-rw-r--r--source/pl/framework/messages.po126
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/pl/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po71
-rw-r--r--source/pl/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po186
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po226
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/pl/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/pl/helpcontent2/source/text/simpress.po464
-rw-r--r--source/pl/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/pl/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/pl/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/pl/helpcontent2/source/text/smath/01.po48
-rw-r--r--source/pl/helpcontent2/source/text/swriter.po64
-rw-r--r--source/pl/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/pl/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/pl/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po386
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po170
-rw-r--r--source/pl/sc/messages.po100
-rw-r--r--source/pl/sd/messages.po788
-rw-r--r--source/pl/sfx2/messages.po482
-rw-r--r--source/pl/starmath/messages.po744
-rw-r--r--source/pl/svx/messages.po3487
-rw-r--r--source/pl/sw/messages.po2879
-rw-r--r--source/pl/uui/messages.po244
-rw-r--r--source/pl/vcl/messages.po182
-rw-r--r--source/pl/writerperfect/messages.po20
-rw-r--r--source/pt-BR/chart2/messages.po46
-rw-r--r--source/pt-BR/cui/messages.po693
-rw-r--r--source/pt-BR/dbaccess/messages.po6
-rw-r--r--source/pt-BR/dictionaries/en/dialog.po55
-rw-r--r--source/pt-BR/extensions/messages.po16
-rw-r--r--source/pt-BR/extras/source/autocorr/emoji.po14
-rw-r--r--source/pt-BR/filter/messages.po6
-rw-r--r--source/pt-BR/forms/messages.po6
-rw-r--r--source/pt-BR/framework/messages.po126
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/python.po30
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po20
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po4555
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po84
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdatabase.po471
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po248
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po308
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po114
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/explorer/database.po604
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po92
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po42
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress.po486
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/01.po42
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/guide.po46
-rw-r--r--source/pt-BR/helpcontent2/source/text/smath/01.po64
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po74
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po46
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po270
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/02.po329
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/04.po24
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po416
-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.po196
-rw-r--r--source/pt-BR/reportdesign/messages.po8
-rw-r--r--source/pt-BR/sc/messages.po104
-rw-r--r--source/pt-BR/sd/messages.po788
-rw-r--r--source/pt-BR/sfx2/messages.po492
-rw-r--r--source/pt-BR/starmath/messages.po754
-rw-r--r--source/pt-BR/svtools/messages.po8
-rw-r--r--source/pt-BR/svx/messages.po3489
-rw-r--r--source/pt-BR/sw/messages.po2895
-rw-r--r--source/pt-BR/uui/messages.po238
-rw-r--r--source/pt-BR/vcl/messages.po182
-rw-r--r--source/pt-BR/wizards/messages.po6
-rw-r--r--source/pt-BR/writerperfect/messages.po20
-rw-r--r--source/pt-BR/xmlsecurity/messages.po6
-rw-r--r--source/pt/chart2/messages.po38
-rw-r--r--source/pt/cui/messages.po651
-rw-r--r--source/pt/dbaccess/messages.po6
-rw-r--r--source/pt/extensions/messages.po8
-rw-r--r--source/pt/framework/messages.po126
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/python.po18
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po3709
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po18
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po71
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/pt/helpcontent2/source/text/sdatabase.po467
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po194
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po236
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po122
-rw-r--r--source/pt/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po604
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/pt/helpcontent2/source/text/simpress.po484
-rw-r--r--source/pt/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po40
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/pt/helpcontent2/source/text/smath/01.po62
-rw-r--r--source/pt/helpcontent2/source/text/swriter.po64
-rw-r--r--source/pt/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po234
-rw-r--r--source/pt/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/pt/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po398
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po176
-rw-r--r--source/pt/sc/messages.po98
-rw-r--r--source/pt/sd/messages.po788
-rw-r--r--source/pt/sfx2/messages.po482
-rw-r--r--source/pt/starmath/messages.po740
-rw-r--r--source/pt/svx/messages.po3485
-rw-r--r--source/pt/sw/messages.po2923
-rw-r--r--source/pt/uui/messages.po238
-rw-r--r--source/pt/vcl/messages.po178
-rw-r--r--source/pt/writerperfect/messages.po20
-rw-r--r--source/ro/cui/messages.po611
-rw-r--r--source/ro/dbaccess/messages.po6
-rw-r--r--source/ro/framework/messages.po122
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ro/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/ro/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po180
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po190
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po92
-rw-r--r--source/ro/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/ro/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ro/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ro/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/ro/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/ro/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/ro/helpcontent2/source/text/swriter.po56
-rw-r--r--source/ro/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po196
-rw-r--r--source/ro/helpcontent2/source/text/swriter/02.po303
-rw-r--r--source/ro/helpcontent2/source/text/swriter/04.po14
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po324
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/ro/sc/messages.po86
-rw-r--r--source/ro/sd/messages.po774
-rw-r--r--source/ro/sfx2/messages.po446
-rw-r--r--source/ro/starmath/messages.po738
-rw-r--r--source/ro/svx/messages.po3499
-rw-r--r--source/ro/sw/messages.po2817
-rw-r--r--source/ro/uui/messages.po236
-rw-r--r--source/ro/vcl/messages.po176
-rw-r--r--source/ro/writerperfect/messages.po18
-rw-r--r--source/ru/cui/messages.po631
-rw-r--r--source/ru/dbaccess/messages.po6
-rw-r--r--source/ru/extensions/messages.po6
-rw-r--r--source/ru/framework/messages.po124
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ru/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/ru/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po220
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/ru/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/ru/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ru/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ru/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/ru/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/ru/helpcontent2/source/text/smath/01.po50
-rw-r--r--source/ru/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ru/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/ru/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/ru/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po378
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po136
-rw-r--r--source/ru/sc/messages.po130
-rw-r--r--source/ru/sd/messages.po774
-rw-r--r--source/ru/sfx2/messages.po448
-rw-r--r--source/ru/starmath/messages.po738
-rw-r--r--source/ru/svx/messages.po3481
-rw-r--r--source/ru/sw/messages.po2831
-rw-r--r--source/ru/uui/messages.po238
-rw-r--r--source/ru/vcl/messages.po176
-rw-r--r--source/ru/writerperfect/messages.po20
-rw-r--r--source/rw/cui/messages.po611
-rw-r--r--source/rw/dbaccess/messages.po6
-rw-r--r--source/rw/framework/messages.po122
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/rw/sc/messages.po86
-rw-r--r--source/rw/sd/messages.po772
-rw-r--r--source/rw/sfx2/messages.po446
-rw-r--r--source/rw/starmath/messages.po738
-rw-r--r--source/rw/svx/messages.po3499
-rw-r--r--source/rw/sw/messages.po2818
-rw-r--r--source/rw/uui/messages.po236
-rw-r--r--source/rw/vcl/messages.po176
-rw-r--r--source/rw/writerperfect/messages.po18
-rw-r--r--source/sa-IN/cui/messages.po611
-rw-r--r--source/sa-IN/dbaccess/messages.po6
-rw-r--r--source/sa-IN/framework/messages.po122
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/sa-IN/sc/messages.po86
-rw-r--r--source/sa-IN/sd/messages.po775
-rw-r--r--source/sa-IN/sfx2/messages.po446
-rw-r--r--source/sa-IN/starmath/messages.po738
-rw-r--r--source/sa-IN/svx/messages.po3499
-rw-r--r--source/sa-IN/sw/messages.po2820
-rw-r--r--source/sa-IN/uui/messages.po236
-rw-r--r--source/sa-IN/vcl/messages.po176
-rw-r--r--source/sa-IN/writerperfect/messages.po18
-rw-r--r--source/sah/cui/messages.po611
-rw-r--r--source/sah/dbaccess/messages.po6
-rw-r--r--source/sah/framework/messages.po122
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--source/sah/sc/messages.po86
-rw-r--r--source/sah/sd/messages.po772
-rw-r--r--source/sah/sfx2/messages.po444
-rw-r--r--source/sah/starmath/messages.po738
-rw-r--r--source/sah/svx/messages.po3471
-rw-r--r--source/sah/sw/messages.po2811
-rw-r--r--source/sah/uui/messages.po236
-rw-r--r--source/sah/vcl/messages.po176
-rw-r--r--source/sah/writerperfect/messages.po18
-rw-r--r--source/sat/cui/messages.po611
-rw-r--r--source/sat/dbaccess/messages.po6
-rw-r--r--source/sat/framework/messages.po122
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po129
-rw-r--r--source/sat/sc/messages.po86
-rw-r--r--source/sat/sd/messages.po775
-rw-r--r--source/sat/sfx2/messages.po446
-rw-r--r--source/sat/starmath/messages.po738
-rw-r--r--source/sat/svx/messages.po3499
-rw-r--r--source/sat/sw/messages.po2820
-rw-r--r--source/sat/uui/messages.po236
-rw-r--r--source/sat/vcl/messages.po176
-rw-r--r--source/sat/writerperfect/messages.po18
-rw-r--r--source/sd/cui/messages.po611
-rw-r--r--source/sd/dbaccess/messages.po6
-rw-r--r--source/sd/framework/messages.po122
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/sd/sc/messages.po86
-rw-r--r--source/sd/sd/messages.po775
-rw-r--r--source/sd/sfx2/messages.po446
-rw-r--r--source/sd/starmath/messages.po738
-rw-r--r--source/sd/svx/messages.po3499
-rw-r--r--source/sd/sw/messages.po2818
-rw-r--r--source/sd/uui/messages.po236
-rw-r--r--source/sd/vcl/messages.po176
-rw-r--r--source/sd/writerperfect/messages.po18
-rw-r--r--source/si/cui/messages.po611
-rw-r--r--source/si/dbaccess/messages.po6
-rw-r--r--source/si/framework/messages.po122
-rw-r--r--source/si/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/si/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/si/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po182
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po204
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/si/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/si/helpcontent2/source/text/simpress.po464
-rw-r--r--source/si/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/si/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/si/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/si/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/si/helpcontent2/source/text/swriter.po64
-rw-r--r--source/si/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po202
-rw-r--r--source/si/helpcontent2/source/text/swriter/02.po317
-rw-r--r--source/si/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po328
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/si/sc/messages.po86
-rw-r--r--source/si/sd/messages.po772
-rw-r--r--source/si/sfx2/messages.po446
-rw-r--r--source/si/starmath/messages.po738
-rw-r--r--source/si/svx/messages.po3499
-rw-r--r--source/si/sw/messages.po2818
-rw-r--r--source/si/uui/messages.po236
-rw-r--r--source/si/vcl/messages.po176
-rw-r--r--source/si/writerperfect/messages.po18
-rw-r--r--source/sid/cui/messages.po611
-rw-r--r--source/sid/dbaccess/messages.po6
-rw-r--r--source/sid/framework/messages.po122
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/sid/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po59
-rw-r--r--source/sid/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po202
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/sid/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/sid/helpcontent2/source/text/simpress.po464
-rw-r--r--source/sid/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/sid/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/sid/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/sid/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/sid/helpcontent2/source/text/swriter.po64
-rw-r--r--source/sid/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po210
-rw-r--r--source/sid/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/sid/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po378
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/sid/sc/messages.po86
-rw-r--r--source/sid/sd/messages.po772
-rw-r--r--source/sid/sfx2/messages.po446
-rw-r--r--source/sid/starmath/messages.po738
-rw-r--r--source/sid/svx/messages.po3499
-rw-r--r--source/sid/sw/messages.po2822
-rw-r--r--source/sid/uui/messages.po236
-rw-r--r--source/sid/vcl/messages.po176
-rw-r--r--source/sid/writerperfect/messages.po18
-rw-r--r--source/sk/cui/messages.po629
-rw-r--r--source/sk/dbaccess/messages.po6
-rw-r--r--source/sk/framework/messages.po124
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/sk/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po57
-rw-r--r--source/sk/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po218
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po100
-rw-r--r--source/sk/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/sk/helpcontent2/source/text/simpress.po464
-rw-r--r--source/sk/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/sk/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/sk/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/sk/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po64
-rw-r--r--source/sk/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/sk/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/sk/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po342
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po132
-rw-r--r--source/sk/sc/messages.po88
-rw-r--r--source/sk/sd/messages.po786
-rw-r--r--source/sk/sfx2/messages.po448
-rw-r--r--source/sk/starmath/messages.po738
-rw-r--r--source/sk/svx/messages.po3481
-rw-r--r--source/sk/sw/messages.po2827
-rw-r--r--source/sk/uui/messages.po236
-rw-r--r--source/sk/vcl/messages.po176
-rw-r--r--source/sk/writerperfect/messages.po20
-rw-r--r--source/sk/xmlsecurity/messages.po6
-rw-r--r--source/sq/cui/messages.po611
-rw-r--r--source/sq/dbaccess/messages.po6
-rw-r--r--source/sq/framework/messages.po122
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/sq/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/sq/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po182
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po198
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/sq/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/sq/helpcontent2/source/text/simpress.po464
-rw-r--r--source/sq/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/sq/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/sq/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/sq/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/sq/helpcontent2/source/text/swriter.po64
-rw-r--r--source/sq/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/sq/helpcontent2/source/text/swriter/02.po311
-rw-r--r--source/sq/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po328
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/sq/sc/messages.po86
-rw-r--r--source/sq/sd/messages.po774
-rw-r--r--source/sq/sfx2/messages.po446
-rw-r--r--source/sq/starmath/messages.po738
-rw-r--r--source/sq/svx/messages.po3498
-rw-r--r--source/sq/sw/messages.po2817
-rw-r--r--source/sq/uui/messages.po236
-rw-r--r--source/sq/vcl/messages.po176
-rw-r--r--source/sq/writerperfect/messages.po18
-rw-r--r--source/sr-Latn/cui/messages.po611
-rw-r--r--source/sr-Latn/dbaccess/messages.po6
-rw-r--r--source/sr-Latn/framework/messages.po122
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po125
-rw-r--r--source/sr-Latn/sc/messages.po86
-rw-r--r--source/sr-Latn/sd/messages.po772
-rw-r--r--source/sr-Latn/sfx2/messages.po447
-rw-r--r--source/sr-Latn/starmath/messages.po738
-rw-r--r--source/sr-Latn/svx/messages.po3521
-rw-r--r--source/sr-Latn/sw/messages.po2817
-rw-r--r--source/sr-Latn/uui/messages.po236
-rw-r--r--source/sr-Latn/vcl/messages.po176
-rw-r--r--source/sr-Latn/writerperfect/messages.po18
-rw-r--r--source/sr/cui/messages.po3032
-rw-r--r--source/sr/dbaccess/messages.po6
-rw-r--r--source/sr/extras/source/autocorr/emoji.po19
-rw-r--r--source/sr/filter/messages.po21
-rw-r--r--source/sr/framework/messages.po124
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/sr/sc/messages.po123
-rw-r--r--source/sr/scp2/source/base.po23
-rw-r--r--source/sr/scp2/source/xsltfilter.po14
-rw-r--r--source/sr/sd/messages.po772
-rw-r--r--source/sr/sfx2/messages.po447
-rw-r--r--source/sr/starmath/messages.po738
-rw-r--r--source/sr/svx/messages.po3521
-rw-r--r--source/sr/sw/messages.po2895
-rw-r--r--source/sr/uui/messages.po238
-rw-r--r--source/sr/vcl/messages.po176
-rw-r--r--source/sr/wizards/messages.po391
-rw-r--r--source/sr/writerperfect/messages.po20
-rw-r--r--source/ss/cui/messages.po611
-rw-r--r--source/ss/dbaccess/messages.po6
-rw-r--r--source/ss/framework/messages.po122
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/ss/sc/messages.po86
-rw-r--r--source/ss/sd/messages.po772
-rw-r--r--source/ss/sfx2/messages.po446
-rw-r--r--source/ss/starmath/messages.po738
-rw-r--r--source/ss/svx/messages.po3501
-rw-r--r--source/ss/sw/messages.po2818
-rw-r--r--source/ss/uui/messages.po236
-rw-r--r--source/ss/vcl/messages.po176
-rw-r--r--source/ss/writerperfect/messages.po18
-rw-r--r--source/st/cui/messages.po611
-rw-r--r--source/st/dbaccess/messages.po6
-rw-r--r--source/st/framework/messages.po122
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/st/sc/messages.po86
-rw-r--r--source/st/sd/messages.po772
-rw-r--r--source/st/sfx2/messages.po446
-rw-r--r--source/st/starmath/messages.po738
-rw-r--r--source/st/svx/messages.po3501
-rw-r--r--source/st/sw/messages.po2818
-rw-r--r--source/st/uui/messages.po236
-rw-r--r--source/st/vcl/messages.po176
-rw-r--r--source/st/writerperfect/messages.po18
-rw-r--r--source/sv/accessibility/messages.po36
-rw-r--r--source/sv/avmedia/messages.po34
-rw-r--r--source/sv/basctl/messages.po28
-rw-r--r--source/sv/basic/messages.po36
-rw-r--r--source/sv/chart2/messages.po32
-rw-r--r--source/sv/connectivity/messages.po32
-rw-r--r--source/sv/cui/messages.po651
-rw-r--r--source/sv/dbaccess/messages.po38
-rw-r--r--source/sv/dictionaries/da_DK.po16
-rw-r--r--source/sv/dictionaries/es.po12
-rw-r--r--source/sv/dictionaries/pt_PT.po12
-rw-r--r--source/sv/dictionaries/sq_AL.po12
-rw-r--r--source/sv/editeng/messages.po32
-rw-r--r--source/sv/extensions/messages.po32
-rw-r--r--source/sv/filter/messages.po146
-rw-r--r--source/sv/forms/messages.po36
-rw-r--r--source/sv/formula/messages.po32
-rw-r--r--source/sv/fpicker/messages.po36
-rw-r--r--source/sv/framework/messages.po154
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/sv/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po186
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po224
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/sv/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/sv/helpcontent2/source/text/simpress.po464
-rw-r--r--source/sv/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/sv/helpcontent2/source/text/smath/01.po48
-rw-r--r--source/sv/helpcontent2/source/text/swriter.po64
-rw-r--r--source/sv/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/sv/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/sv/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po378
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/sv/oox/messages.po32
-rw-r--r--source/sv/reportdesign/messages.po30
-rw-r--r--source/sv/sc/messages.po116
-rw-r--r--source/sv/scaddins/messages.po32
-rw-r--r--source/sv/sccomp/messages.po36
-rw-r--r--source/sv/sd/messages.po975
-rw-r--r--source/sv/sfx2/messages.po476
-rw-r--r--source/sv/shell/messages.po16
-rw-r--r--source/sv/starmath/messages.po772
-rw-r--r--source/sv/svl/messages.po32
-rw-r--r--source/sv/svtools/messages.po36
-rw-r--r--source/sv/svx/messages.po3511
-rw-r--r--source/sv/sw/messages.po2853
-rw-r--r--source/sv/uui/messages.po266
-rw-r--r--source/sv/vcl/messages.po208
-rw-r--r--source/sv/wizards/messages.po36
-rw-r--r--source/sv/writerperfect/messages.po50
-rw-r--r--source/sv/xmlsecurity/messages.po34
-rw-r--r--source/sw-TZ/cui/messages.po611
-rw-r--r--source/sw-TZ/dbaccess/messages.po6
-rw-r--r--source/sw-TZ/framework/messages.po122
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po122
-rw-r--r--source/sw-TZ/sc/messages.po86
-rw-r--r--source/sw-TZ/sd/messages.po772
-rw-r--r--source/sw-TZ/sfx2/messages.po446
-rw-r--r--source/sw-TZ/starmath/messages.po738
-rw-r--r--source/sw-TZ/svx/messages.po3499
-rw-r--r--source/sw-TZ/sw/messages.po2818
-rw-r--r--source/sw-TZ/uui/messages.po236
-rw-r--r--source/sw-TZ/vcl/messages.po176
-rw-r--r--source/sw-TZ/writerperfect/messages.po18
-rw-r--r--source/szl/cui/messages.po611
-rw-r--r--source/szl/dbaccess/messages.po6
-rw-r--r--source/szl/framework/messages.po122
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/szl/sc/messages.po86
-rw-r--r--source/szl/sd/messages.po774
-rw-r--r--source/szl/sfx2/messages.po448
-rw-r--r--source/szl/starmath/messages.po738
-rw-r--r--source/szl/svx/messages.po3481
-rw-r--r--source/szl/sw/messages.po2815
-rw-r--r--source/szl/uui/messages.po236
-rw-r--r--source/szl/vcl/messages.po176
-rw-r--r--source/szl/writerperfect/messages.po18
-rw-r--r--source/ta/cui/messages.po613
-rw-r--r--source/ta/dbaccess/messages.po6
-rw-r--r--source/ta/framework/messages.po122
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ta/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po57
-rw-r--r--source/ta/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po182
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po200
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po98
-rw-r--r--source/ta/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/ta/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ta/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ta/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/ta/helpcontent2/source/text/simpress/guide.po40
-rw-r--r--source/ta/helpcontent2/source/text/smath/01.po48
-rw-r--r--source/ta/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ta/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po196
-rw-r--r--source/ta/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/ta/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po334
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/ta/sc/messages.po86
-rw-r--r--source/ta/sd/messages.po774
-rw-r--r--source/ta/sfx2/messages.po446
-rw-r--r--source/ta/starmath/messages.po738
-rw-r--r--source/ta/svx/messages.po3499
-rw-r--r--source/ta/sw/messages.po2821
-rw-r--r--source/ta/uui/messages.po236
-rw-r--r--source/ta/vcl/messages.po176
-rw-r--r--source/ta/writerperfect/messages.po18
-rw-r--r--source/te/cui/messages.po611
-rw-r--r--source/te/dbaccess/messages.po6
-rw-r--r--source/te/framework/messages.po122
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/te/sc/messages.po86
-rw-r--r--source/te/sd/messages.po772
-rw-r--r--source/te/sfx2/messages.po446
-rw-r--r--source/te/starmath/messages.po738
-rw-r--r--source/te/svx/messages.po3499
-rw-r--r--source/te/sw/messages.po2819
-rw-r--r--source/te/uui/messages.po236
-rw-r--r--source/te/vcl/messages.po176
-rw-r--r--source/te/writerperfect/messages.po18
-rw-r--r--source/tg/cui/messages.po611
-rw-r--r--source/tg/dbaccess/messages.po6
-rw-r--r--source/tg/framework/messages.po122
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/tg/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po67
-rw-r--r--source/tg/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po200
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po100
-rw-r--r--source/tg/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po72
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/tg/helpcontent2/source/text/simpress.po464
-rw-r--r--source/tg/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/tg/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/tg/helpcontent2/source/text/simpress/guide.po40
-rw-r--r--source/tg/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/tg/helpcontent2/source/text/swriter.po64
-rw-r--r--source/tg/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/tg/helpcontent2/source/text/swriter/02.po315
-rw-r--r--source/tg/helpcontent2/source/text/swriter/04.po14
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po324
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/tg/sc/messages.po86
-rw-r--r--source/tg/sd/messages.po772
-rw-r--r--source/tg/sfx2/messages.po446
-rw-r--r--source/tg/starmath/messages.po738
-rw-r--r--source/tg/svx/messages.po3499
-rw-r--r--source/tg/sw/messages.po2818
-rw-r--r--source/tg/uui/messages.po236
-rw-r--r--source/tg/vcl/messages.po176
-rw-r--r--source/tg/writerperfect/messages.po18
-rw-r--r--source/th/cui/messages.po611
-rw-r--r--source/th/dbaccess/messages.po6
-rw-r--r--source/th/framework/messages.po122
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/th/sc/messages.po86
-rw-r--r--source/th/sd/messages.po775
-rw-r--r--source/th/sfx2/messages.po446
-rw-r--r--source/th/starmath/messages.po738
-rw-r--r--source/th/svx/messages.po3499
-rw-r--r--source/th/sw/messages.po2818
-rw-r--r--source/th/uui/messages.po236
-rw-r--r--source/th/vcl/messages.po176
-rw-r--r--source/th/writerperfect/messages.po18
-rw-r--r--source/ti/cui/messages.po611
-rw-r--r--source/ti/dbaccess/messages.po6
-rw-r--r--source/ti/framework/messages.po122
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po120
-rw-r--r--source/ti/sc/messages.po86
-rw-r--r--source/ti/sd/messages.po772
-rw-r--r--source/ti/sfx2/messages.po444
-rw-r--r--source/ti/starmath/messages.po738
-rw-r--r--source/ti/svx/messages.po3471
-rw-r--r--source/ti/sw/messages.po2811
-rw-r--r--source/ti/uui/messages.po236
-rw-r--r--source/ti/vcl/messages.po176
-rw-r--r--source/ti/writerperfect/messages.po18
-rw-r--r--source/tn/cui/messages.po611
-rw-r--r--source/tn/dbaccess/messages.po6
-rw-r--r--source/tn/framework/messages.po122
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/tn/sc/messages.po86
-rw-r--r--source/tn/sd/messages.po772
-rw-r--r--source/tn/sfx2/messages.po446
-rw-r--r--source/tn/starmath/messages.po738
-rw-r--r--source/tn/svx/messages.po3500
-rw-r--r--source/tn/sw/messages.po2818
-rw-r--r--source/tn/uui/messages.po236
-rw-r--r--source/tn/vcl/messages.po176
-rw-r--r--source/tn/writerperfect/messages.po18
-rw-r--r--source/tr/cui/messages.po629
-rw-r--r--source/tr/dbaccess/messages.po6
-rw-r--r--source/tr/framework/messages.po124
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po71
-rw-r--r--source/tr/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po186
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po232
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/tr/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/tr/helpcontent2/source/text/simpress.po464
-rw-r--r--source/tr/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/tr/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/tr/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/tr/helpcontent2/source/text/smath/01.po60
-rw-r--r--source/tr/helpcontent2/source/text/swriter.po64
-rw-r--r--source/tr/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po232
-rw-r--r--source/tr/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/tr/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po392
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/tr/sc/messages.po86
-rw-r--r--source/tr/sd/messages.po774
-rw-r--r--source/tr/sfx2/messages.po448
-rw-r--r--source/tr/starmath/messages.po738
-rw-r--r--source/tr/svx/messages.po3481
-rw-r--r--source/tr/sw/messages.po2827
-rw-r--r--source/tr/uui/messages.po238
-rw-r--r--source/tr/vcl/messages.po176
-rw-r--r--source/tr/writerperfect/messages.po20
-rw-r--r--source/ts/cui/messages.po611
-rw-r--r--source/ts/dbaccess/messages.po6
-rw-r--r--source/ts/framework/messages.po122
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/ts/sc/messages.po86
-rw-r--r--source/ts/sd/messages.po772
-rw-r--r--source/ts/sfx2/messages.po446
-rw-r--r--source/ts/starmath/messages.po738
-rw-r--r--source/ts/svx/messages.po3501
-rw-r--r--source/ts/sw/messages.po2818
-rw-r--r--source/ts/uui/messages.po236
-rw-r--r--source/ts/vcl/messages.po176
-rw-r--r--source/ts/writerperfect/messages.po18
-rw-r--r--source/tt/cui/messages.po611
-rw-r--r--source/tt/dbaccess/messages.po6
-rw-r--r--source/tt/framework/messages.po122
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po122
-rw-r--r--source/tt/sc/messages.po86
-rw-r--r--source/tt/sd/messages.po772
-rw-r--r--source/tt/sfx2/messages.po446
-rw-r--r--source/tt/starmath/messages.po738
-rw-r--r--source/tt/svx/messages.po3488
-rw-r--r--source/tt/sw/messages.po2815
-rw-r--r--source/tt/uui/messages.po236
-rw-r--r--source/tt/vcl/messages.po176
-rw-r--r--source/tt/writerperfect/messages.po18
-rw-r--r--source/ug/cui/messages.po611
-rw-r--r--source/ug/dbaccess/messages.po6
-rw-r--r--source/ug/framework/messages.po122
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/ug/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po55
-rw-r--r--source/ug/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po202
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po96
-rw-r--r--source/ug/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/explorer/database.po600
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/ug/helpcontent2/source/text/simpress.po464
-rw-r--r--source/ug/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ug/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/ug/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/ug/helpcontent2/source/text/smath/01.po42
-rw-r--r--source/ug/helpcontent2/source/text/swriter.po64
-rw-r--r--source/ug/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/ug/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/ug/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po324
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/ug/sc/messages.po86
-rw-r--r--source/ug/sd/messages.po772
-rw-r--r--source/ug/sfx2/messages.po446
-rw-r--r--source/ug/starmath/messages.po738
-rw-r--r--source/ug/svx/messages.po3499
-rw-r--r--source/ug/sw/messages.po2819
-rw-r--r--source/ug/uui/messages.po236
-rw-r--r--source/ug/vcl/messages.po176
-rw-r--r--source/ug/writerperfect/messages.po18
-rw-r--r--source/uk/cui/messages.po693
-rw-r--r--source/uk/dbaccess/messages.po10
-rw-r--r--source/uk/dictionaries/es.po12
-rw-r--r--source/uk/dictionaries/pt_PT.po12
-rw-r--r--source/uk/dictionaries/sq_AL.po12
-rw-r--r--source/uk/filter/messages.po6
-rw-r--r--source/uk/framework/messages.po124
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/python.po18
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po87
-rw-r--r--source/uk/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po190
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po306
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po98
-rw-r--r--source/uk/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po94
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/uk/helpcontent2/source/text/simpress.po484
-rw-r--r--source/uk/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/uk/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/uk/helpcontent2/source/text/smath.po12
-rw-r--r--source/uk/helpcontent2/source/text/smath/01.po60
-rw-r--r--source/uk/helpcontent2/source/text/swriter.po70
-rw-r--r--source/uk/helpcontent2/source/text/swriter/00.po38
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po274
-rw-r--r--source/uk/helpcontent2/source/text/swriter/02.po323
-rw-r--r--source/uk/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po394
-rw-r--r--source/uk/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po162
-rw-r--r--source/uk/sc/messages.po132
-rw-r--r--source/uk/sd/messages.po794
-rw-r--r--source/uk/sfx2/messages.po474
-rw-r--r--source/uk/starmath/messages.po746
-rw-r--r--source/uk/svtools/messages.po10
-rw-r--r--source/uk/svx/messages.po3481
-rw-r--r--source/uk/sw/messages.po2839
-rw-r--r--source/uk/uui/messages.po238
-rw-r--r--source/uk/vcl/messages.po181
-rw-r--r--source/uk/writerperfect/messages.po20
-rw-r--r--source/uk/xmlsecurity/messages.po8
-rw-r--r--source/ur/cui/messages.po611
-rw-r--r--source/ur/dbaccess/messages.po6
-rw-r--r--source/ur/framework/messages.po122
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po122
-rw-r--r--source/ur/sc/messages.po86
-rw-r--r--source/ur/sd/messages.po772
-rw-r--r--source/ur/sfx2/messages.po444
-rw-r--r--source/ur/starmath/messages.po738
-rw-r--r--source/ur/svx/messages.po3471
-rw-r--r--source/ur/sw/messages.po2811
-rw-r--r--source/ur/uui/messages.po236
-rw-r--r--source/ur/vcl/messages.po176
-rw-r--r--source/ur/writerperfect/messages.po18
-rw-r--r--source/uz/cui/messages.po611
-rw-r--r--source/uz/dbaccess/messages.po6
-rw-r--r--source/uz/framework/messages.po122
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/uz/sc/messages.po86
-rw-r--r--source/uz/sd/messages.po772
-rw-r--r--source/uz/sfx2/messages.po446
-rw-r--r--source/uz/starmath/messages.po738
-rw-r--r--source/uz/svx/messages.po3500
-rw-r--r--source/uz/sw/messages.po2818
-rw-r--r--source/uz/uui/messages.po236
-rw-r--r--source/uz/vcl/messages.po176
-rw-r--r--source/uz/writerperfect/messages.po18
-rw-r--r--source/ve/cui/messages.po611
-rw-r--r--source/ve/dbaccess/messages.po6
-rw-r--r--source/ve/framework/messages.po122
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/ve/sc/messages.po86
-rw-r--r--source/ve/sd/messages.po772
-rw-r--r--source/ve/sfx2/messages.po446
-rw-r--r--source/ve/starmath/messages.po738
-rw-r--r--source/ve/svx/messages.po3500
-rw-r--r--source/ve/sw/messages.po2818
-rw-r--r--source/ve/uui/messages.po236
-rw-r--r--source/ve/vcl/messages.po176
-rw-r--r--source/ve/writerperfect/messages.po18
-rw-r--r--source/vec/accessibility/messages.po32
-rw-r--r--source/vec/avmedia/messages.po32
-rw-r--r--source/vec/basctl/messages.po32
-rw-r--r--source/vec/basic/messages.po32
-rw-r--r--source/vec/chart2/messages.po32
-rw-r--r--source/vec/connectivity/messages.po32
-rw-r--r--source/vec/cui/messages.po643
-rw-r--r--source/vec/dbaccess/messages.po36
-rw-r--r--source/vec/desktop/messages.po32
-rw-r--r--source/vec/dictionaries/da_DK.po16
-rw-r--r--source/vec/dictionaries/es.po12
-rw-r--r--source/vec/dictionaries/ko_KR.po12
-rw-r--r--source/vec/dictionaries/pt_PT.po12
-rw-r--r--source/vec/dictionaries/sq_AL.po12
-rw-r--r--source/vec/editeng/messages.po32
-rw-r--r--source/vec/extensions/messages.po32
-rw-r--r--source/vec/filter/messages.po32
-rw-r--r--source/vec/forms/messages.po32
-rw-r--r--source/vec/formula/messages.po30
-rw-r--r--source/vec/fpicker/messages.po32
-rw-r--r--source/vec/framework/messages.po152
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/vec/oox/messages.po32
-rw-r--r--source/vec/reportdesign/messages.po32
-rw-r--r--source/vec/sc/messages.po116
-rw-r--r--source/vec/scaddins/messages.po32
-rw-r--r--source/vec/sccomp/messages.po36
-rw-r--r--source/vec/sd/messages.po804
-rw-r--r--source/vec/sfx2/messages.po478
-rw-r--r--source/vec/shell/messages.po32
-rw-r--r--source/vec/starmath/messages.po768
-rw-r--r--source/vec/svl/messages.po32
-rw-r--r--source/vec/svtools/messages.po40
-rw-r--r--source/vec/svx/messages.po3511
-rw-r--r--source/vec/sw/messages.po2845
-rw-r--r--source/vec/uui/messages.po266
-rw-r--r--source/vec/vcl/messages.po206
-rw-r--r--source/vec/wizards/messages.po32
-rw-r--r--source/vec/wizards/source/resources.po8
-rw-r--r--source/vec/writerperfect/messages.po48
-rw-r--r--source/vec/xmlsecurity/messages.po32
-rw-r--r--source/vi/cui/messages.po613
-rw-r--r--source/vi/dbaccess/messages.po6
-rw-r--r--source/vi/framework/messages.po122
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/vi/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/vi/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po220
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/vi/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po66
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/vi/helpcontent2/source/text/simpress.po464
-rw-r--r--source/vi/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/vi/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/vi/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/vi/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/vi/helpcontent2/source/text/swriter.po64
-rw-r--r--source/vi/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/vi/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/vi/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/vi/sc/messages.po86
-rw-r--r--source/vi/sd/messages.po772
-rw-r--r--source/vi/sfx2/messages.po446
-rw-r--r--source/vi/starmath/messages.po738
-rw-r--r--source/vi/svx/messages.po3499
-rw-r--r--source/vi/sw/messages.po2826
-rw-r--r--source/vi/uui/messages.po236
-rw-r--r--source/vi/vcl/messages.po176
-rw-r--r--source/vi/writerperfect/messages.po18
-rw-r--r--source/xh/cui/messages.po611
-rw-r--r--source/xh/dbaccess/messages.po6
-rw-r--r--source/xh/framework/messages.po122
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po123
-rw-r--r--source/xh/sc/messages.po86
-rw-r--r--source/xh/sd/messages.po772
-rw-r--r--source/xh/sfx2/messages.po446
-rw-r--r--source/xh/starmath/messages.po738
-rw-r--r--source/xh/svx/messages.po3501
-rw-r--r--source/xh/sw/messages.po2820
-rw-r--r--source/xh/uui/messages.po236
-rw-r--r--source/xh/vcl/messages.po176
-rw-r--r--source/xh/writerperfect/messages.po18
-rw-r--r--source/zh-CN/accessibility/messages.po42
-rw-r--r--source/zh-CN/avmedia/messages.po34
-rw-r--r--source/zh-CN/basctl/messages.po34
-rw-r--r--source/zh-CN/basic/messages.po32
-rw-r--r--source/zh-CN/chart2/messages.po32
-rw-r--r--source/zh-CN/connectivity/messages.po34
-rw-r--r--source/zh-CN/cui/messages.po699
-rw-r--r--source/zh-CN/dbaccess/messages.po36
-rw-r--r--source/zh-CN/desktop/messages.po32
-rw-r--r--source/zh-CN/dictionaries/da_DK.po10
-rw-r--r--source/zh-CN/dictionaries/pt_PT.po12
-rw-r--r--source/zh-CN/dictionaries/sq_AL.po12
-rw-r--r--source/zh-CN/editeng/messages.po32
-rw-r--r--source/zh-CN/extensions/messages.po32
-rw-r--r--source/zh-CN/filter/messages.po32
-rw-r--r--source/zh-CN/forms/messages.po36
-rw-r--r--source/zh-CN/formula/messages.po32
-rw-r--r--source/zh-CN/fpicker/messages.po34
-rw-r--r--source/zh-CN/framework/messages.po152
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/python.po18
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po75
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po190
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po238
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po82
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress.po480
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath/01.po60
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po64
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po232
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po392
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office.po28
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po236
-rw-r--r--source/zh-CN/oox/messages.po32
-rw-r--r--source/zh-CN/reportdesign/messages.po32
-rw-r--r--source/zh-CN/sc/messages.po179
-rw-r--r--source/zh-CN/scaddins/messages.po32
-rw-r--r--source/zh-CN/sccomp/messages.po36
-rw-r--r--source/zh-CN/sd/messages.po824
-rw-r--r--source/zh-CN/sfx2/messages.po600
-rw-r--r--source/zh-CN/shell/messages.po36
-rw-r--r--source/zh-CN/starmath/messages.po766
-rw-r--r--source/zh-CN/svl/messages.po32
-rw-r--r--source/zh-CN/svtools/messages.po36
-rw-r--r--source/zh-CN/svx/messages.po3517
-rw-r--r--source/zh-CN/sw/messages.po2855
-rw-r--r--source/zh-CN/uui/messages.po270
-rw-r--r--source/zh-CN/vcl/messages.po208
-rw-r--r--source/zh-CN/wizards/messages.po36
-rw-r--r--source/zh-CN/writerperfect/messages.po48
-rw-r--r--source/zh-CN/xmlsecurity/messages.po32
-rw-r--r--source/zh-TW/basctl/messages.po54
-rw-r--r--source/zh-TW/cui/messages.po635
-rw-r--r--source/zh-TW/dbaccess/messages.po50
-rw-r--r--source/zh-TW/extensions/messages.po37
-rw-r--r--source/zh-TW/filter/messages.po178
-rw-r--r--source/zh-TW/formula/messages.po16
-rw-r--r--source/zh-TW/framework/messages.po128
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po3703
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po69
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdatabase.po465
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po184
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po220
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po102
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/explorer/database.po602
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po80
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress.po464
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/01.po32
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/zh-TW/helpcontent2/source/text/smath/01.po46
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter.po64
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po216
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/02.po321
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po376
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po130
-rw-r--r--source/zh-TW/sc/messages.po86
-rw-r--r--source/zh-TW/sd/messages.po774
-rw-r--r--source/zh-TW/sfx2/messages.po448
-rw-r--r--source/zh-TW/starmath/messages.po780
-rw-r--r--source/zh-TW/svtools/messages.po60
-rw-r--r--source/zh-TW/svx/messages.po3479
-rw-r--r--source/zh-TW/sw/messages.po2825
-rw-r--r--source/zh-TW/uui/messages.po238
-rw-r--r--source/zh-TW/vcl/messages.po242
-rw-r--r--source/zh-TW/writerperfect/messages.po20
-rw-r--r--source/zu/cui/messages.po611
-rw-r--r--source/zu/dbaccess/messages.po6
-rw-r--r--source/zu/framework/messages.po122
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po125
-rw-r--r--source/zu/sc/messages.po86
-rw-r--r--source/zu/sd/messages.po772
-rw-r--r--source/zu/sfx2/messages.po446
-rw-r--r--source/zu/starmath/messages.po738
-rw-r--r--source/zu/svx/messages.po3501
-rw-r--r--source/zu/sw/messages.po2819
-rw-r--r--source/zu/uui/messages.po236
-rw-r--r--source/zu/vcl/messages.po176
-rw-r--r--source/zu/writerperfect/messages.po18
3797 files changed, 1019090 insertions, 712901 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 907644a7ed5..2fd3610255a 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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -1901,248 +1901,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr ""
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr ""
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr ""
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr ""
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr ""
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Иқәыргылатәуп адиагональтә ҵәаӷәақәа рымацара"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr ""
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr ""
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr ""
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr ""
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr ""
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr ""
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Агага ада"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice базас иамоуп OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Иҧсахтәуп амҩақәа: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -2319,14 +2247,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2508,1071 +2437,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3583,22 +3506,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3607,16 +3530,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -13011,10 +12934,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Аиҟәшага"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -14804,22 +14727,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Апараметрқәа"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -21033,13 +20980,13 @@ msgid "_Next Tip"
msgstr ""
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21051,79 +20998,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/ab/dbaccess/messages.po b/source/ab/dbaccess/messages.po
index 0193cda6782..07a40d77619 100644
--- a/source/ab/dbaccess/messages.po
+++ b/source/ab/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2021-02-12 17:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ab/>\n"
@@ -3282,13 +3282,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr ""
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "Адырқәа рбаза атип:"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/ab/extras/source/autocorr/emoji.po b/source/ab/extras/source/autocorr/emoji.po
index 04c3548f9bd..31c719a568e 100644
--- a/source/ab/extras/source/autocorr/emoji.po
+++ b/source/ab/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: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-02-28 09:37+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/ab/>\n"
"Language: ab\n"
@@ -84,7 +84,7 @@ msgctxt ""
"REGISTERED_SIGN\n"
"LngText.text"
msgid "registered"
-msgstr ""
+msgstr "арегистрациа зызу амарка"
#. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji
#. KCLL8
@@ -854,7 +854,7 @@ msgctxt ""
"TRADE_MARK_SIGN\n"
"LngText.text"
msgid "tm"
-msgstr ""
+msgstr "ахәаахәҭратә марка"
#. ℹ (U+02139), see http://wiki.documentfoundation.org/Emoji
#. 8a4FF
@@ -1144,7 +1144,7 @@ msgctxt ""
"SMALL_ELEMENT_OF\n"
"LngText.text"
msgid "small in"
-msgstr ""
+msgstr "амаҷ аҵанакуеит"
#. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji
#. E33bc
diff --git a/source/ab/filter/source/config/fragments/filters.po b/source/ab/filter/source/config/fragments/filters.po
index f07a33c5d40..5fdda344f20 100644
--- a/source/ab/filter/source/config/fragments/filters.po
+++ b/source/ab/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: 2021-02-09 16:36+0000\n"
+"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1532251331.000000\n"
#. FR4Ff
@@ -224,7 +224,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
+msgstr "EPS - инкапсулиару PostScript"
#. 8G7zT
#: EPUB.xcu
@@ -804,7 +804,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Text Template (Transitional)"
-msgstr ""
+msgstr "Office Open XML (Еиҭаҵуа) атексттә документ ашаблон"
#. B4Xqe
#: PBM___Portable_Bitmap.xcu
@@ -964,7 +964,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#. CSy82
#: Rich_Text_Format.xcu
@@ -994,7 +994,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#. MwrSz
#: SVG___Scalable_Vector_Graphics_Draw.xcu
@@ -1404,7 +1404,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Gnumeric Spreadsheet"
#. HWKsT
#: calc_HTML_WebQuery.xcu
@@ -1764,7 +1764,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–365 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 2007–365 Автодәықәҵара"
#. uGCji
#: impress_MS_PowerPoint_2007_XML_Template.xcu
diff --git a/source/ab/framework/messages.po b/source/ab/framework/messages.po
index 25c5a117ae0..aa35508970a 100644
--- a/source/ab/framework/messages.po
+++ b/source/ab/framework/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2018-01-01 17:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -209,6 +209,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr ""
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr ""
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
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 3b045cbe07b..8c4da9994cf 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,14 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+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"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-05 18:22+0000\n"
+"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022330.000000\n"
@@ -263,7 +264,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Tab Bar"
-msgstr ""
+msgstr "Агәылаҵақәа рпанель"
#. MD35M
#: BasicIDEWindowState.xcu
@@ -313,7 +314,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "FormControls"
-msgstr ""
+msgstr "Анапхгара аелементқәа"
#. 4D4DL
#: BasicIDEWindowState.xcu
@@ -323,7 +324,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Toolbox"
-msgstr ""
+msgstr "Анапхгара аелементқәа"
#. PiRFt
#: BasicIDEWindowState.xcu
@@ -707,14 +708,13 @@ msgstr ""
#. tZSSA
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:RefreshArrows\n"
"Label\n"
"value.text"
msgid "Refresh Tra~ces"
-msgstr "Ирҿыцтәуп атаблицақәа"
+msgstr "Ирҿыцтәуп ахыцқәа"
#. thBTW
#: CalcCommands.xcu
@@ -998,25 +998,23 @@ msgstr "Ииастәуп даҟьак ала армарахь"
#. gZvmx
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:GoRightBlock\n"
"Label\n"
"value.text"
msgid "Page Right"
-msgstr "Адаҟьа аҳаракыра:"
+msgstr "Ииастәуп арӷьарахьтәи адаҟьахь"
#. J2Btn
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:GoRightBlockSel\n"
"Label\n"
"value.text"
msgid "Select to Page Right"
-msgstr "Иалкаатәуп адаҟьа алагамҭанӡа"
+msgstr "Иалкаатәуп адаҟьа арыӷьарахь"
#. yCCCg
#: CalcCommands.xcu
@@ -1298,14 +1296,24 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "Иалхлатәуп ихьчам абларҭақәа"
-#. pqtqc
+#. L2c5b
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Rows Only"
+msgstr ""
+
+#. rDd3w
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
+msgid "Select Visible Columns Only"
msgstr ""
#. LEvrC
@@ -2120,14 +2128,13 @@ msgstr "Ианыхтәуп аиҵагылақәа"
#. 5PPGW
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsCellsCtrl\n"
"Label\n"
"value.text"
msgid "Insert Cells"
-msgstr "Ибжьаргылатәуп атаблица..."
+msgstr "Иҭаргылатәуп абларҭақәа"
#. VijEF
#: CalcCommands.xcu
@@ -2261,14 +2268,13 @@ msgstr "Акомментари"
#. HAWW3
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
"PopupLabel\n"
"value.text"
msgid "Insert Co~mment"
-msgstr "Ибжьаргылатәуп акомментари"
+msgstr "Иацҵатәуп акомментари"
#. uUwKE
#: CalcCommands.xcu
@@ -2332,14 +2338,13 @@ msgstr ""
#. g86F5
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:NormalViewMode\n"
"ContextLabel\n"
"value.text"
msgid "~Normal"
-msgstr "Инормалтәу"
+msgstr "Инормалу"
#. iJ8Pt
#: CalcCommands.xcu
@@ -2573,14 +2578,13 @@ msgstr ""
#. pJrAP
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertCell\n"
"Label\n"
"value.text"
msgid "Insert ~Cells..."
-msgstr "Ибжьаргылатәуп атаблица..."
+msgstr "Иҭаргылатәуп абларҭақәа..."
#. FGiEB
#: CalcCommands.xcu
@@ -2594,25 +2598,23 @@ msgstr ""
#. QiYVA
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertRowsMenu\n"
"Label\n"
"value.text"
msgid "Insert ~Rows"
-msgstr "Ибжьаргылатәуп ацәаҳәақәа"
+msgstr "Иҭаргылатәуп ацәаҳәақәа"
#. WKpVB
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertColumnsMenu\n"
"Label\n"
"value.text"
msgid "Insert Co~lumns"
-msgstr "Ибжьаргылатәуп аиҵагылақәа"
+msgstr "Иҭаргылатәуп аиҵагылақәа"
#. jBXWB
#: CalcCommands.xcu
@@ -3184,15 +3186,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "Адаҟьа аформат..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "Адаҟьа..."
+msgid "~Page Style..."
+msgstr ""
#. C83UC
#: CalcCommands.xcu
@@ -5597,14 +5599,13 @@ msgstr "Акаҭа..."
#. sjhZ9
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:InsertMenuDataLabels\n"
"Label\n"
"value.text"
msgid "~Data Labels..."
-msgstr "Адырқәа ртаблица..."
+msgstr "Адырқәа рнапаҵаҩра..."
#. 3K7RZ
#: ChartCommands.xcu
@@ -6009,14 +6010,13 @@ msgstr ""
#. EJgaX
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:InsertTitles\n"
"Label\n"
"value.text"
msgid "Insert Titles..."
-msgstr "Ибжьаргылатәуп атаблица..."
+msgstr "Ахқәа..."
#. zoiaB
#: ChartCommands.xcu
@@ -6200,14 +6200,13 @@ msgstr "Атренд аҵәаӷәа аформат..."
#. AunGC
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:InsertTrendlineEquation\n"
"Label\n"
"value.text"
msgid "Insert Trend Line ~Equation"
-msgstr "Ианыхтәуп атренд аҵәаӷәа аиҟаратә"
+msgstr "Иҭаргылатәуп атренд аҵәаӷәа аиҟаратә"
#. FCC9G
#: ChartCommands.xcu
@@ -6221,14 +6220,13 @@ msgstr ""
#. QMcCm
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:InsertR2Value\n"
"Label\n"
"value.text"
msgid "Insert R²"
-msgstr "Ибжьаргылатәуп ацәаҳәа"
+msgstr "Иҭаргылатәуп R²"
#. EuzUu
#: ChartCommands.xcu
@@ -6262,14 +6260,13 @@ msgstr ""
#. ho5Fo
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:InsertMeanValue\n"
"Label\n"
"value.text"
msgid "Insert Mean ~Value Line"
-msgstr "Ианыхтәуп абжьаратә ҵакы змоу аҵәаӷәа"
+msgstr "Иҭаргылатәуп абжьаратә ҵакы змоу аҵәаӷәа"
#. Ks7U3
#: ChartCommands.xcu
@@ -7103,14 +7100,13 @@ msgstr ""
#. Jw8HE
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBQueryPropertiesDialog\n"
"Label\n"
"value.text"
msgid "Query Properties"
-msgstr "Аформа аҷыдаҟазшьақәа"
+msgstr "Азыҳәара апараметрқәа"
#. cCKga
#: DbuCommands.xcu
@@ -7804,14 +7800,13 @@ msgstr "~Иҭаҩлатәуп"
#. EopjQ
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Commands..uno:DBQueryPreview\n"
"Label\n"
"value.text"
msgid "Preview"
-msgstr "Ахәаҧшра"
+msgstr "Аԥшра"
#. KwGGF
#: DbuCommands.xcu
@@ -7875,14 +7870,13 @@ msgstr "Адырқәа рбаза"
#. aQUCJ
#: DbuCommands.xcu
-#, fuzzy
msgctxt ""
"DbuCommands.xcu\n"
"..DbuCommands.UserInterface.Popups..uno:DBPreview\n"
"Label\n"
"value.text"
msgid "Preview"
-msgstr "Ахәаҧшра"
+msgstr "Аԥшра"
#. GvpF4
#: DrawImpressCommands.xcu
@@ -9226,14 +9220,13 @@ msgstr "Иԥсахтәуп аҿыгҳара"
#. UtybC
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:PageMode\n"
"Label\n"
"value.text"
msgid "~Normal"
-msgstr "Инормалтәу"
+msgstr "Инормалу"
#. 29538
#: DrawImpressCommands.xcu
@@ -9475,6 +9468,26 @@ msgctxt ""
msgid "Layout"
msgstr ""
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10067,14 +10080,13 @@ msgstr "Еиҵацалатәуп..."
#. YhSB2
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SelectBackground\n"
"Label\n"
"value.text"
msgid "Set Background Image..."
-msgstr "Иеиқәырхатәуп аҿаҧшыратә сахьа..."
+msgstr "Иазалхтәуп аҿаԥшыратә сахьа..."
#. scFBm
#: DrawImpressCommands.xcu
@@ -10308,14 +10320,13 @@ msgstr "~Адемонстрациа"
#. EyFG4
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:GroupMenu\n"
"Label\n"
"value.text"
msgid "~Group"
-msgstr "Агәыҧ"
+msgstr "Аргәыԥра"
#. CiUoe
#: DrawImpressCommands.xcu
@@ -10439,14 +10450,13 @@ msgstr "Арыцхәи аамҭеи..."
#. 8jggC
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:NormalMultiPaneGUI\n"
"Label\n"
"value.text"
msgid "~Normal"
-msgstr "Инормалтәу"
+msgstr "Инормалу"
#. vaTEi
#: DrawImpressCommands.xcu
@@ -10830,14 +10840,13 @@ msgstr "Атеқст автозалхра"
#. bcYGc
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:TaskPaneInsertPage\n"
"Label\n"
"value.text"
msgid "Insert Slide"
-msgstr "Ибжьаргылатәуп афаил"
+msgstr "Иҭаргылатәуп аслаид"
#. DpnDu
#: DrawImpressCommands.xcu
@@ -11651,14 +11660,13 @@ msgstr "Адаҟьақәа разҟаза апанель"
#. hMUvt
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/pagepanenoselmaster\n"
"UIName\n"
"value.text"
msgid "Page Master Pane (no selection)"
-msgstr "Адаҟьақәа рпанель (алхрада)"
+msgstr "Адаҟьақәа-разҟаза апанель (алхрада)"
#. SvG2a
#: DrawWindowState.xcu
@@ -12672,25 +12680,23 @@ msgstr ""
#. oUViV
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-entrance-fold\n"
"Label\n"
"value.text"
msgid "Fold"
-msgstr "Ажәпа"
+msgstr "Аикәарҳәра"
#. sTUkR
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-emphasis-fill-color\n"
"Label\n"
"value.text"
msgid "Change Fill Color"
-msgstr "Иҧсахтәуп ашрифт аҧштәы"
+msgstr "Иԥсахтәуп аҭарҭәага аԥштәы"
#. 5EkpA
#: Effects.xcu
@@ -12744,14 +12750,13 @@ msgstr ""
#. bSamY
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-emphasis-line-color\n"
"Label\n"
"value.text"
msgid "Change Line Color"
-msgstr "Иҧсахтәуп ашрифт аҧштәы"
+msgstr "Иԥсахтәуп аҵәаӷәа аԥштәы"
#. DCEGC
#: Effects.xcu
@@ -13405,14 +13410,13 @@ msgstr ""
#. WDuZ5
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Effects.ooo-exit-fold\n"
"Label\n"
"value.text"
msgid "Fold"
-msgstr "Ажәпа"
+msgstr "Аикәарҳәра"
#. iWaTZ
#: Effects.xcu
@@ -14419,14 +14423,13 @@ msgstr "Хыхьала"
#. YDgVh
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Properties.from-bottom-left\n"
"Label\n"
"value.text"
msgid "From bottom left"
-msgstr "Ҵаҟала "
+msgstr "Ҵаҟа арымарахь"
#. DgvW6
#: Effects.xcu
@@ -14460,14 +14463,13 @@ msgstr ""
#. s6iBD
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Properties.horizontal-in\n"
"Label\n"
"value.text"
msgid "Horizontal in"
-msgstr "Горизонталла"
+msgstr "Горизонталла аҩныҵҟа"
#. w8aC7
#: Effects.xcu
@@ -14601,25 +14603,23 @@ msgstr ""
#. Rc3Zd
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Properties.to-left\n"
"Label\n"
"value.text"
msgid "To left"
-msgstr "Хыхьла арымарахь"
+msgstr "Арымарахь"
#. iaddW
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.Properties.to-right\n"
"Label\n"
"value.text"
msgid "To right"
-msgstr "Хыхьла арыӷьарахь"
+msgstr "Арыӷьарахь"
#. 4XFwL
#: Effects.xcu
@@ -15094,14 +15094,13 @@ msgstr ""
#. SANDo
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.fall\n"
"Label\n"
"value.text"
msgid "Fall"
-msgstr "ампыл"
+msgstr "Акаҳара"
#. USVqq
#: Effects.xcu
@@ -15235,14 +15234,13 @@ msgstr ""
#. mFSnT
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.left-right\n"
"Label\n"
"value.text"
msgid "Left to Right"
-msgstr "Армарахьтә арӷьарахь"
+msgstr "Арымарахьтә арӷьарахь"
#. ST7ZF
#: Effects.xcu
@@ -15276,14 +15274,13 @@ msgstr ""
#. xCMk4
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.right-left\n"
"Label\n"
"value.text"
msgid "Right to Left"
-msgstr "Арӷьарахьтә армарахь"
+msgstr "Арыӷьарахьтә армарахь"
#. 9xWYD
#: Effects.xcu
@@ -15457,14 +15454,13 @@ msgstr ""
#. L8kxg
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.horizontal-in\n"
"Label\n"
"value.text"
msgid "Horizontal In"
-msgstr "Горизонталла"
+msgstr "Горизонталла аҩныҵҟа"
#. Bpr6S
#: Effects.xcu
@@ -15681,7 +15677,6 @@ msgstr "Испециалу"
#. vULFy
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Emphasis.moderate\n"
@@ -15702,7 +15697,6 @@ msgstr ""
#. MFbwS
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Exit.basic\n"
@@ -15723,7 +15717,6 @@ msgstr "Испециалу"
#. gv3CZ
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.Exit.moderate\n"
@@ -15744,7 +15737,6 @@ msgstr ""
#. y2rhx
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.Presets.MotionPaths.basic\n"
@@ -15785,14 +15777,13 @@ msgstr "Амедиа"
#. bnqEq
#: GenericCategories.xcu
-#, fuzzy
msgctxt ""
"GenericCategories.xcu\n"
"..GenericCategories.Commands.Categories.0\n"
"Name\n"
"value.text"
msgid "Internal"
-msgstr "Аинтервал"
+msgstr "Аҩныҵҟатәи"
#. AJ33d
#: GenericCategories.xcu
@@ -15816,25 +15807,23 @@ msgstr "Ахәаҧшра"
#. GiAcD
#: GenericCategories.xcu
-#, fuzzy
msgctxt ""
"GenericCategories.xcu\n"
"..GenericCategories.Commands.Categories.3\n"
"Name\n"
"value.text"
msgid "Documents"
-msgstr "Адокумент"
+msgstr "Адокументқәа"
#. 7E6f4
#: GenericCategories.xcu
-#, fuzzy
msgctxt ""
"GenericCategories.xcu\n"
"..GenericCategories.Commands.Categories.4\n"
"Name\n"
"value.text"
msgid "Edit"
-msgstr "Иҧсахтәуп"
+msgstr "Ариашара"
#. m6Yhw
#: GenericCategories.xcu
@@ -16078,14 +16067,13 @@ msgstr "Акомментариқәа"
#. EKdJB
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ChangeControlType\n"
"Label\n"
"value.text"
msgid "~Replace with"
-msgstr "Иҧсахтәуп ала"
+msgstr "Иԥсахтәуп ала"
#. hSijp
#: GenericCommands.xcu
@@ -18430,14 +18418,13 @@ msgstr "Арымарахь"
#. Ds3tN
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:LeftPara\n"
"TooltipLabel\n"
"value.text"
msgid "Align Left"
-msgstr "Армарахь ала"
+msgstr "Еиҟаратәтәуп армарахь ала"
#. JiDPE
#: GenericCommands.xcu
@@ -18451,14 +18438,13 @@ msgstr "Арыӷьарахь"
#. EjZGW
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:RightPara\n"
"TooltipLabel\n"
"value.text"
msgid "Align Right"
-msgstr "Арӷьарахь ала"
+msgstr "Еиҟаратәтәуп арӷьарахь ала"
#. yanFA
#: GenericCommands.xcu
@@ -18792,14 +18778,13 @@ msgstr ""
#. Z7FDE
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GrafInvert\n"
"Label\n"
"value.text"
msgid "Invert"
-msgstr "Ибжьаргылатәуп"
+msgstr "Инверттәуп"
#. J8mWo
#: GenericCommands.xcu
@@ -18813,14 +18798,13 @@ msgstr "Аҵәаӷәа"
#. gCkCF
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Line\n"
"TooltipLabel\n"
"value.text"
msgid "Insert Line"
-msgstr "бжьаргылатәуп агиперзхьарҧш"
+msgstr "Иҭаргылатәуп аҵәаӷәа"
#. vfiAS
#: GenericCommands.xcu
@@ -20056,14 +20040,13 @@ msgstr ""
#. FvNAo
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineUp\n"
"Label\n"
"value.text"
msgid "Move Up"
-msgstr "Аҩада"
+msgstr "Ииагатәуп аҩада"
#. GvBYt
#: GenericCommands.xcu
@@ -20077,14 +20060,13 @@ msgstr "Иаҧҵатәуп"
#. E8Ykn
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineDown\n"
"Label\n"
"value.text"
msgid "Move Down"
-msgstr "Алада"
+msgstr "Ииагатәуп алада"
#. KQLPA
#: GenericCommands.xcu
@@ -20697,34 +20679,24 @@ msgctxt ""
msgid "Background Color"
msgstr "Аҿаҧшыра аҧштәы"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -21300,14 +21272,13 @@ msgstr "Асахьа..."
#. KjduA
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertGraphic\n"
"PopupLabel\n"
"value.text"
msgid "Insert Image..."
-msgstr "Ибжьаргылатәуп атаблица..."
+msgstr "Иҭаргылатәуп асахьа..."
#. S6RUU
#: GenericCommands.xcu
@@ -21651,25 +21622,23 @@ msgstr "Афреим аҷыдаҟазшьақәа"
#. adBA3
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DeleteFrame\n"
"Label\n"
"value.text"
msgid "Delete Frame"
-msgstr "Ианыхтәуп адаҟьа"
+msgstr "Ианыхтәуп арамка"
#. XEp6u
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SetObjectToBackground\n"
"Label\n"
"value.text"
msgid "To Background"
-msgstr "Аҿаҧшыра"
+msgstr "Атекст ашьҭахь"
#. CDSCt
#: GenericCommands.xcu
@@ -21683,14 +21652,13 @@ msgstr ""
#. MYMmB
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertLabels\n"
"Label\n"
"value.text"
msgid "Insert Labels"
-msgstr "Ибжьаргылатәуп атаблица"
+msgstr "Иҭаргылатәуп аетикеткақәа"
#. aUHaf
#: GenericCommands.xcu
@@ -21744,14 +21712,13 @@ msgstr "Агиперзхьарҧш..."
#. TE7TG
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:HyperlinkDialog\n"
"TooltipLabel\n"
"value.text"
msgid "Insert Hyperlink"
-msgstr "Ибжьаргылатәуп агиперзхьарҧш..."
+msgstr "Иҭаргылатәуп агиперзхьарԥш"
#. 6mJ2E
#: GenericCommands.xcu
@@ -21915,14 +21882,13 @@ msgstr ""
#. Kx4N5
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Repeat\n"
"Label\n"
"value.text"
msgid "Repea~t"
-msgstr "Инагӡалатәуп"
+msgstr "Еиҭанагӡатәуп"
#. DrmsC
#: GenericCommands.xcu
@@ -21956,14 +21922,13 @@ msgstr "Акопиа ахыхтәуп"
#. zHBA5
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Paste\n"
"Label\n"
"value.text"
msgid "~Paste"
-msgstr "Ибжьаргылатәуп"
+msgstr "Иҭаргылатәуп"
#. Z5gHF
#: GenericCommands.xcu
@@ -22127,25 +22092,23 @@ msgstr ""
#. A6Bqc
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GoDownBlock\n"
"Label\n"
"value.text"
msgid "Page Down"
-msgstr "Адаҟьа алада"
+msgstr "Ииастәуп даҟьак алада"
#. xj8UM
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GoUpBlock\n"
"Label\n"
"value.text"
msgid "Page Up"
-msgstr "Адаҟьа аҩада"
+msgstr "Ииастәуп даҟьак аҩада"
#. MwAJH
#: GenericCommands.xcu
@@ -22279,14 +22242,13 @@ msgstr ""
#. feLj3
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TextFitToSize\n"
"Label\n"
"value.text"
msgid "Fit to Frame"
-msgstr "Адаҟьа ашәагаа иақәыршәаны"
+msgstr "Арамка ашәагаа иақәыршәаны"
#. puNNx
#: GenericCommands.xcu
@@ -22940,14 +22902,13 @@ msgstr "Аекспорт..."
#. oQB7E
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SdGraphicOptions\n"
"Label\n"
"value.text"
msgid "Presentation Image Options"
-msgstr "Апрезентациа апараметрқәа"
+msgstr "Апрезентациа асахьақәа рпараметрқәа"
#. rEoop
#: GenericCommands.xcu
@@ -22961,14 +22922,13 @@ msgstr ""
#. ferue
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatGroup\n"
"Label\n"
"value.text"
msgid "~Group"
-msgstr "Агәыҧ"
+msgstr "Иргәыԥтәуп"
#. 5iDGS
#: GenericCommands.xcu
@@ -23132,25 +23092,23 @@ msgstr "Атеқст анимациа"
#. UjbXz
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GraphicFilterToolbox\n"
"Label\n"
"value.text"
msgid "Filter"
-msgstr "Афильтр"
+msgstr "Афильтрра"
#. n9gL6
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:GraphicFilterInvert\n"
"Label\n"
"value.text"
msgid "Invert"
-msgstr "Ибжьаргылатәуп"
+msgstr "Инверттәуп"
#. wSgxg
#: GenericCommands.xcu
@@ -23334,14 +23292,13 @@ msgstr "Испециалу асимволқәа..."
#. hSRAs
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertSymbol\n"
"TooltipLabel\n"
"value.text"
msgid "Insert Special Character"
-msgstr "Ибжьаргылатәуп асимвол"
+msgstr "Иҭаргылатәуп испециалу асимвол"
#. KXPE3
#: GenericCommands.xcu
@@ -23365,14 +23322,13 @@ msgstr ""
#. fUZAF
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
"TooltipLabel\n"
"value.text"
msgid "Insert Special Characters"
-msgstr "Ибжьаргылатәуп асимвол"
+msgstr "Иҭаргылатәуп испециалу асимвол"
#. i8CZu
#: GenericCommands.xcu
@@ -23464,14 +23420,14 @@ msgctxt ""
msgid "~Export As"
msgstr ""
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
+msgid "Export as PDF"
msgstr ""
#. YsFV2
@@ -23494,14 +23450,14 @@ msgctxt ""
msgid "Export as PDF"
msgstr "PDF ахь аекспорт"
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
+msgid "Export Directly as PDF"
msgstr ""
#. 8eSWp
@@ -25116,14 +25072,13 @@ msgstr ""
#. T4F59
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExtrusionLightingFloater\n"
"Label\n"
"value.text"
msgid "Lighting"
-msgstr "амацәыс"
+msgstr "Арлашара"
#. ZRety
#: GenericCommands.xcu
@@ -25585,14 +25540,14 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
+msgid "Development Tools"
msgstr ""
#. jLF5j
@@ -25767,14 +25722,13 @@ msgstr "~Ариашара"
#. aKjG2
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertMenu\n"
"Label\n"
"value.text"
msgid "~Insert"
-msgstr "Ибжьаргылатәуп"
+msgstr "Аҭа~ргылара"
#. 6Xdhu
#: GenericCommands.xcu
@@ -25918,14 +25872,13 @@ msgstr "Абызшәа"
#. Gp4Df
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ViewMenu\n"
"Label\n"
"value.text"
msgid "~View"
-msgstr "Ахәаҧшра"
+msgstr "~Аԥшра"
#. iEu6j
#: GenericCommands.xcu
@@ -25969,14 +25922,13 @@ msgstr "Арегистр"
#. yQvDN
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:GroupMenu\n"
"Label\n"
"value.text"
msgid "~Group"
-msgstr "Агәыҧ"
+msgstr "Аргәыԥра"
#. fMMop
#: GenericCommands.xcu
@@ -26178,14 +26130,14 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr ""
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
+msgid "Word ~Joiner"
msgstr ""
#. UvwGS
@@ -27680,14 +27632,13 @@ msgstr "Ибжьаргылатәуп атеқст"
#. rNA8P
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:InsertCommand\n"
"Label\n"
"value.text"
msgid "Insert Command"
-msgstr "Ибжьаргылатәуп акомментари"
+msgstr "Иҭаргылатәуп акоманда"
#. 4AZZK
#: MathCommands.xcu
@@ -27761,25 +27712,23 @@ msgstr "Асимволқәа..."
#. hkxh2
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:ZoomIn\n"
"Label\n"
"value.text"
msgid "Z~oom In"
-msgstr "Ирдуны"
+msgstr "Ардура"
#. XYVPg
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:ZoomOut\n"
"Label\n"
"value.text"
msgid "Zoo~m Out"
-msgstr "Ирхәыҷны"
+msgstr "Архәыҷра"
#. J3EaC
#: MathCommands.xcu
@@ -28413,14 +28362,13 @@ msgstr ""
#. NymxZ
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:SectionShrinkMenu\n"
"Label\n"
"value.text"
msgid "Section"
-msgstr "апараграф"
+msgstr "Аҟәша"
#. tENM4
#: ReportCommands.xcu
@@ -29484,14 +29432,13 @@ msgstr ""
#. DVeEj
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:PrintLayout\n"
"ContextLabel\n"
"value.text"
msgid "~Normal"
-msgstr "Инормалтәу"
+msgstr "Инормалу"
#. DULqf
#: WriterCommands.xcu
@@ -29645,14 +29592,13 @@ msgstr ""
#. JnmXz
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertSection\n"
"Label\n"
"value.text"
msgid "Se~ction..."
-msgstr "~Апараметрқәа..."
+msgstr "Аҟәша..."
#. ABV9G
#: WriterCommands.xcu
@@ -29846,14 +29792,13 @@ msgstr ""
#. 4EvCQ
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:RejectAllTrackedChanges\n"
"Label\n"
"value.text"
msgid "Reject All"
-msgstr "Иалхтәуп зегьы"
+msgstr "Иаҟәыхтәуп зегьы"
#. aQf94
#: WriterCommands.xcu
@@ -30307,14 +30252,13 @@ msgstr ""
#. bRFPN
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertPara\n"
"Label\n"
"value.text"
msgid "Insert Paragraph"
-msgstr "Иалкаатәуп абзац"
+msgstr "Иҭаргылатәуп абзац"
#. Bjk5w
#: WriterCommands.xcu
@@ -30418,14 +30362,13 @@ msgstr ""
#. caDb4
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertHyperlinkDlg\n"
"Label\n"
"value.text"
msgid "Insert Hyperlink"
-msgstr "Ибжьаргылатәуп агиперзхьарҧш..."
+msgstr "Иҭаргылатәуп агиперзхьарԥш"
#. YWBRr
#: WriterCommands.xcu
@@ -30890,14 +30833,13 @@ msgstr "Ибжьаргылатәуп"
#. YFrqh
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertObjCtrl\n"
"Label\n"
"value.text"
msgid "Insert Object"
-msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
+msgstr "Аобиект(қәа) аҭаргылара"
#. ESBXG
#: WriterCommands.xcu
@@ -33083,14 +33025,13 @@ msgstr ""
#. jQEN2
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EditRegion\n"
"Label\n"
"value.text"
msgid "~Sections..."
-msgstr "~Апараметрқәа..."
+msgstr "Аҟәшақәа..."
#. GDhGc
#: WriterCommands.xcu
@@ -33472,6 +33413,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr ""
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33703,6 +33654,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "Иалкаатәуп абзац"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -33985,16 +33946,6 @@ msgctxt ""
msgid "Fields"
msgstr "Аҭакырақәа"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr ""
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34067,25 +34018,23 @@ msgstr ""
#. YNpFG
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ControlCodes\n"
"Label\n"
"value.text"
msgid "Formatting Marks"
-msgstr "Аформатркра асимвол"
+msgstr "Иузымкьыԥхьуа асимволқәа"
#. FFNXc
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ControlCodes\n"
"ContextLabel\n"
"value.text"
msgid "For~matting Marks"
-msgstr "Аформатркра асимвол"
+msgstr "Иузымкьыԥхьуа асимволқәа"
#. 9EFfF
#: WriterCommands.xcu
@@ -34209,7 +34158,6 @@ msgstr ""
#. wnFCt
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:SelectionModeDefault\n"
@@ -34448,14 +34396,24 @@ msgctxt ""
msgid "Selection Mode"
msgstr "Алхра арежим"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
msgstr ""
#. oCEjg
@@ -34580,14 +34538,13 @@ msgstr "Ахы"
#. Cp7pE
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:TitleParaStyle\n"
"TooltipLabel\n"
"value.text"
msgid "Title Paragraph Style"
-msgstr "Иқәыргылатәуп абзац астиль"
+msgstr "Ахы абзац астиль"
#. GyeoD
#: WriterCommands.xcu
@@ -35832,14 +35789,13 @@ msgstr "Ибжьаргылатәуп"
#. bExZs
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/insertobjectbar\n"
"UIName\n"
"value.text"
msgid "Insert Object"
-msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
+msgstr "Аобиект(қәа) аҭаргылара"
#. qg9Vq
#: WriterFormWindowState.xcu
@@ -36833,14 +36789,13 @@ msgstr "Ибжьаргылатәуп"
#. igocp
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/insertobjectbar\n"
"UIName\n"
"value.text"
msgid "Insert Object"
-msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
+msgstr "Аобиект(қәа) аҭаргылара"
#. TeZhE
#: WriterReportWindowState.xcu
@@ -38334,14 +38289,13 @@ msgstr "Ибжьаргылатәуп"
#. vBVEj
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/insertobjectbar\n"
"UIName\n"
"value.text"
msgid "Insert Object"
-msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
+msgstr "Аобиект(қәа) аҭаргылара"
#. uAAxE
#: XFormsWindowState.xcu
diff --git a/source/ab/reportdesign/messages.po b/source/ab/reportdesign/messages.po
index 8ff710163a7..bd509744254 100644
--- a/source/ab/reportdesign/messages.po
+++ b/source/ab/reportdesign/messages.po
@@ -4,15 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:56+0100\n"
-"PO-Revision-Date: 2019-06-14 08:01+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560499281.000000\n"
#. FBVr9
@@ -270,13 +271,13 @@ msgstr ""
#: reportdesign/inc/strings.hrc:30
msgctxt "RID_STR_CANGROW"
msgid "Can Grow"
-msgstr ""
+msgstr "Ирдухо"
#. sF9pD
#: reportdesign/inc/strings.hrc:31
msgctxt "RID_STR_CANSHRINK"
msgid "Can Shrink"
-msgstr ""
+msgstr "Ирмаҷхо"
#. CMH5i
#: reportdesign/inc/strings.hrc:32
@@ -390,7 +391,7 @@ msgstr "Аҳаракыра"
#: reportdesign/inc/strings.hrc:50
msgctxt "RID_STR_AUTOGROW"
msgid "Auto Grow"
-msgstr ""
+msgstr "Автордура"
#. nBghq
#: reportdesign/inc/strings.hrc:51
@@ -610,10 +611,9 @@ msgstr "Аҳасабырба"
#. D62CY
#: reportdesign/inc/strings.hrc:89
-#, fuzzy
msgctxt "RID_STR_PROPTITLE_SECTION"
msgid "Section"
-msgstr "апараграф"
+msgstr "Аҟәша"
#. CAy2F
#: reportdesign/inc/strings.hrc:90
@@ -838,10 +838,9 @@ msgstr "Иԥсахтәуп адаҟьа атрибутқәа"
#. 4A4DL
#: reportdesign/inc/strings.hrc:131
-#, fuzzy
msgctxt "RID_STR_PAGEHEADERFOOTER_INSERT"
msgid "Insert Page Header/Footer"
-msgstr "Ианыхтәуп адаҟьа аколонтитул"
+msgstr "Иҭаргылатәуп адаҟьа аколонтитул"
#. JZEaA
#: reportdesign/inc/strings.hrc:132
@@ -1256,7 +1255,6 @@ msgstr "Акурсив"
#. n9Rga
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:240
-#, fuzzy
msgctxt "conditionwin|ToolBoxItem3"
msgid "Underline"
msgstr "Изыҵшьу"
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 2a8282ea591..c02cd1ea8d8 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-02-09 16:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ab/>\n"
@@ -20659,10 +20659,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "Аформула"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -24692,231 +24692,231 @@ msgid "No solution was found."
msgstr ""
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index b8269a2652b..ef021ef3a3c 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-02-08 11:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
@@ -893,158 +893,164 @@ msgid ""
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "Иаԥҵатәуп аслаидқәа"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "Иҧсахтәуп адаҟьа аформат"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "Иҧсахтәуп адаҟьа аҭакырақәа"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "Ариашара"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Ианыхтәуп аслаидқәа"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr ""
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аԥхьара ауам"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Асахьа идырым аформат"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Аграфикатә фаил ари аверсиа аднакылаӡом"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Иԥшаам асахьа афильтр"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "Асахьа аҭаргыларазы иазхом агәынкыларҭа"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Аобиеқтқәа"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "Ари адокумент аҟны аорфографиа агәаҭара хыркәшоуп."
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "Иалкаау аобиектқәа рҟны аорфографиа агәаҭара хыркәшоуп."
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "Иалкаау аобиект еиҭактәума архәа ахь?"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "Иԥсахтәуп апрезентациа аобиект «$»"
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "Аслаид амакет"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr "Адаҟьа амакет"
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "Иҭаргылатәуп афаил"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "Ибжьаргылатәуп асимвол"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr ""
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "Иарҳәатәуп"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "Аанкылара"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "Ахалагаратә шәагаа"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1054,128 +1060,128 @@ msgstr ""
"Иҭагалатәума амасштаб ҿыц:"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "Акагь ҟаҵатәӡам"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "Ииастәуп аҧхьатәи аслаид ахь"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "Ииастәуп анаҩстәи аслаид ахь"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "Ииастәуп актәи аслаид ахь"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "Ииастәуп аҵыхәтәантәи аслаид ахь"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "Ииастәуп адаҟьахь ма аобиеқтахь"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "Ииастәуп адокумент ахь"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr "Иргатәуп абжьы"
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr ""
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "Инагӡатәуп апрограмма"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "Инагӡатәуп амакрос"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "Иҭыҵтәуп апрезентациа аҟынтәи"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "Ахықәкы"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "Аҟаҵара"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr "Абжьы"
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "Аслаид / Аобиеқт"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "Адокумент"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "Апрограмма"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "Амакрос"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr ""
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1184,258 +1190,258 @@ msgstr[1] ""
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "Ибжьаргылатәуп атеқст"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr "Иҭагалатәуп аслаид-азҟаза"
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr ""
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "Арымарахь"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "Хыхьла"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "Ҵаҟала"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "Хыхьла арымарахь"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "Ҵаҟала арымарахь"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "Хыхьла арыӷьарахь"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "Ҵаҟала арыӷьарахь"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "Горизонталла"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "Ивертикалны"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "Зегьы?"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr ""
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "Шьҭахьҟа"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "Иацҵатәуп"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "Аҭвԥхәаԥшра"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "Аԥштәы аԥсахра"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr ""
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "Ирҭбаатәуп аслаид"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "Аҵанакы аслаид"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr ""
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr ""
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "Афиксациа зызуу"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "Аҽеиҭак"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "Астандарт"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "Истандарту (икьаҿу)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "Истандарту (иауу)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "Афаил ахьӡ"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "Афаил Амҩа/Ахьӡ"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "Амҩа"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr ""
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr ""
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "Акопиа ахыхтәуп "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr "%PRODUCTNAME апрезентациа (аформат Impress 6)"
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr "%PRODUCTNAME асахьа (аформат Draw 6)"
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr ""
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr ""
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr "%PRODUCTNAME %PRODUCTVERSION апрезентациа"
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr "%PRODUCTNAME %PRODUCTVERSION асахьа"
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1445,157 +1451,157 @@ msgstr ""
"Иалаԥсахтәума?"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "Атеқст"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "Агиперзхьарҧш"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "Изҭаахьоу азхьарԥш"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "Иактиву агиперзхьарҧш"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "Азгәаҭақәа"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "Ахы"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr ""
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "Автор"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr "E-mail"
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "Аҩынтәи адаҟьа"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr ""
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "Иҭагалатәуп апрезентациа"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr ""
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "Актәи адаҟьа"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "Аҵыхәтәантәи адаҟьа"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "Атеқст"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "Аҵанакы шацу"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "Аҵанакы ацӡамкәа"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "Иарбоу адаҟьахь"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "Арастртә сахьа еиҭактәуп акәакьрацәа ахь"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr ""
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "Ааҭгылара..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr ""
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "Асахьақәа рфильтр"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1605,829 +1611,829 @@ msgstr ""
"абжьтәи акәӡам!"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "Еиҭактәуп аметафаил ахь"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "Еиҭактәуп арастртә сахьа ахь"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "Иауам афаил $(URL1) аԥҵара."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "Иауам афаил $(URL1) аартра."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr ""
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr ""
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "Аслаид ахьӡ ԥсахтәуп"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr "Адаҟьа ахьӡ ԥсахтәуп"
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr ""
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "Иҭажәгал аобиеқт ахьӡ"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr "Аслаид-азҟаза ахьӡ ԥсахтәуп"
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr ""
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr ""
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "Ҵаҟатәи аколонтитул аҭыԥ"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "Хыхьтәи аколонтитул аҭыԥ"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "Арыцхә аҭыԥ"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "Аслаид аномер аҭыԥ"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "Адаҟьа аномер аҭыԥ"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<хыхьтәи аколонтитул>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<ҵаҟатәи аколонтитул>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<арыцхә/аамҭа>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<аномер>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<ахыԥхьаӡара>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr "<аслаид-ахьӡ>"
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr "<адаҟьа-ахьӡ>"
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "Азгәаҭақәа рҭыԥ"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "Аиҭакра хангыль/ханча"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "Аслаидқәа"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "Адаҟьақәа"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr ""
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "Аԥхьахәаԥшра азырхиара"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "Амакетқәа"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr "Асахьақәа рстильқәа"
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "Апрезентациақәа рстильқәа"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "Абларҭақәа рстильқәа"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr "Афигура %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr ""
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "Акомментариқәа"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "Амакет ишыҟоу еиԥш"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "Ибжьаргылатәуп атаблица"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "Ибжьаргылатәуп адиаграмма"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "Ибжьаргылатәуп асахьа"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "Ибжьаргылатәуп Абжьы ма Авидео"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "Ииагатәуп адаҟьақәа"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "Ииагатәуп аслаидқәа"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "Иацышәҵа асахьа альбом ахь."
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "Атеқсттә слаид"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr ""
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "Аҿаҧшыра"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "Аҿаԥшыра аобиектқәа"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr ""
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr ""
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr ""
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "Адаҟьа"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "Адаҟьа"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "Аслаид"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr "Аслаид-азҟаза"
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr "Аслаид-азҟаза:"
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Адаҟьа-азҟаза"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr "Адаҟьа-азҟаза:"
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Азгәаҭақәа)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Атезисқәа"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr ""
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr ""
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr ""
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr ""
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Аструктура аҩбатәи аҩаӡара"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Аструктура ахԥатәи аҩаӡара"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Аструктура аԥшьбатәи аҩаӡара"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Аструктура ахәбатәи аҩаӡара"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Аструктура афбатәи аҩаӡара"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Аструктура абыжьбатәи аҩаӡара"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr ""
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr ""
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr ""
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr ""
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Атеқст ацҵараз шәақәыӷәӷәа ҳәынаԥла"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Атеқст ацҵараз шәақәыӷәӷәа ҳәынаԥла"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr ""
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr ""
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr ""
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Астандарт"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Ахы"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr ""
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr ""
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr ""
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr ""
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr ""
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr ""
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Атеқст"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr ""
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr ""
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr ""
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr ""
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr ""
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr ""
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr ""
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr ""
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr ""
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr ""
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr ""
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr ""
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr ""
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr ""
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr ""
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr ""
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr ""
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr ""
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr ""
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr ""
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr ""
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr ""
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr ""
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Ахы"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr ""
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Аструктура"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr ""
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Аҿаҧшыра"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Азгәаҭақәа"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint аимпорт"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Еиқәырхатәуп адокумент"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr ""
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr ""
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr ""
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr ""
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr ""
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "Еиҵатәтәуп агегль"
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "Еизырҳатәуп акегль"
@@ -2435,625 +2441,625 @@ msgstr "Еизырҳатәуп акегль"
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr ""
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr ""
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr ""
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr ""
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr ""
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Апрезентациа ахы"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Апрезентациа адаҟьа"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Апрезентациа азгәаҭақәа"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr ""
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr ""
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr ""
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "Апрезентациа арыцхәи аамҭеи"
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "Апрезентациа адаҟьа аномер"
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr ""
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Ахы"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Аструктура"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr ""
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Адаҟьа"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Азгәаҭақәа"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr ""
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr ""
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr ""
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Арыцхә"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Ахыҧхьаӡа"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(аҧхьара мацара)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "мап"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr ""
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr ""
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr ""
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Амасштаб:"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr ""
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Актәи аҧштәы"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr ""
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr ""
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Астиль:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Агарнитура:"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Ашрифт аҧштәы:"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Астиль:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr ""
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Аҵәаӷәа аҧштәы:"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Акегль:"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Ашәагаа:"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr ""
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Аҧштәы:"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr ""
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr ""
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr ""
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Аҿырҧштәы"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr ""
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr ""
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "Мап"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr ""
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Иацы,"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(автор дамам)"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr ""
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr ""
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Ибжьаргылатәуп акомментари"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Ианыхтәуп акомментари"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Ииагатәуп акомментари"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Иҧсахтәуп акомментари"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Аҭак %1 аҟны"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Амультимедиа"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Атаблица"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Адокумент"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr ""
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr ""
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Иаҵанакуа"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr ""
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Адаҟьа ахьӡ"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Арыцхәи аамҭеи"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Иҵәаху адаҟьақәа"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Аҧштәы"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Ашәагаа"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Аброшиура"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Адаҟьа аганқәа"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr ""
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr ""
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr ""
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr ""
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr ""
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr ""
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr ""
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -9506,139 +9512,139 @@ msgid "Sound:"
msgstr ""
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr ""
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr ""
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr ""
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr ""
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr ""
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr ""
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "Авариант:"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr ""
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr ""
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr ""
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr ""
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
+msgid "After:"
msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr ""
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr ""
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr ""
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr ""
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr ""
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Идәықәҵатәуп"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr ""
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr ""
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 8542eab68c3..e72efc0f3b0 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
"PO-Revision-Date: 2018-10-21 19:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -827,11 +827,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Мап"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "Асахьа"
+msgstr ""
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1581,11 +1581,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1606,16 +1606,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1636,10 +1636,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1654,10 +1654,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1702,10 +1702,10 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
+msgid "Sunset"
msgstr ""
#. 73Y2e
@@ -2209,6 +2209,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "Анапаҵаҩра"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr ""
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr ""
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr ""
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr ""
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr ""
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr ""
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr ""
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr ""
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr ""
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr ""
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr ""
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr ""
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr ""
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2558,9 +2858,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2620,91 +2920,157 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr ""
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr ""
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr ""
+
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr ""
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
msgctxt "documentfontspage|embedFonts"
@@ -3861,9 +4227,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr ""
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index 4ebcfe7142e..2c2f73744b1 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -490,2215 +490,2215 @@ msgstr ""
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Адырга +"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Адырга -"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Адырга +-"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Адырга -+"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Алогикатә АКӘӠАМ"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Аицҵара +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Аигырхара -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Ашьҭыхра (акәаҧ)"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Ашьҭыхра (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Ашьҭыхра (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Ашара (/)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Ашара (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Ашара (аихша)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Акәаԥ аҵәаӷәагьежь аҟны"
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Минус аҵәаӷәагьежь аҟны"
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Плиус аҵәаӷәагьежь аҟны"
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Атензортә шьҭыхлыҵ"
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Алогикатә И"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Алогикатә МА"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Иаҟароуп"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Иаҟараӡам"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Еиҵоуп аасҭа"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Еиҳауп аасҭа"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Еиҵоуп ма иаҟароуп"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Еиҳауп ма иаҟароуп"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Еиҵоуп ма иаҟароуп"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Еиҳауп ма иаҟароуп"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Кыр еиҵоуп"
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Кыр еиҳауп"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Иконгурентуп"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Инықәырԥшны иаҟароуп"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Иашьашәалоуп"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Иашьашәалоуп ма иаҟароуп"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Ипропорционалуп"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Иортогоналны"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Ипараллелны"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Иашьашәалоуп (арымарахь)"
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Иашьашәалоуп (арыӷьарахь)"
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Иаҵанакуеит аҟны"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Иаҵанакӡом аҟны"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Иаҵанакуеит"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Аидҵара"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Аихысырҭа"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Аигырхалыҵ"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr ""
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr ""
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr ""
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr ""
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Абсолиуттә ҵакы"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Афакториал"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Аквадраттә дац"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Аекспоненциалтә функциа"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Аекспоненциалтә функциа"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Анатуралтә логарифм"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Алогарифм"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Асинус"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Акосинус"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Атангенс"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Акотангенс"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Арксинус"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Арккосинус"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Арктангенс"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Арккотангенс"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Агиперболатә синус"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Агиперболатә косинус"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Агиперболатә тангенс"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Агиперболатә котангенс"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Агиперболатә ареа-синус"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Агиперболатә ареа-косинус"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Агиперболатә ареа-тангенс"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Агиперболатә ареа-котангенс"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Аицҵалыҵ"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Аицҵалыҵ ҵаҟатәи аиндекс"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Аицҵалыҵ хыхьтәи аиндекс"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Аицҵалыҵ аиндексқәа"
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Ашьҭыхлыҵ"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Ашьҭыхлыҵ ҵаҟатәи аиндекс"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Ашьҭыхлыҵ хыхьтәи аиндекс"
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Ашьҭыхлыҵ аиндексқәа"
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Коашьҭыхлыҵ"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Коашьҭыхлыҵ ҵаҟатәи аиндекс"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Коашьҭыхлыҵ хыхьтәи аиндекс"
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Коашьҭыхлыҵ аиндексқәа"
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
#, fuzzy
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Ацәаҳәа(қәа)"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Аицҵалыҵ ҵаҟатәи аиндекс"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Аицҵалыҵ хыхьтәи аиндекс"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Аицҵалыҵ аиндексқәа"
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Иҟоуп"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Иҟаӡам"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Иаарҧштәуп зегьы"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Аинтеграл"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Аинтеграл ҵаҟатәи аиндекс"
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Аинтеграл хыхьтәи аиндекс"
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Аинтеграл аиндексқәа"
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Иҩбоу аинтеграл"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Иҩбоу аинтеграл ҵаҟатәи аиндекс"
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Иҩбоу аинтеграл хыхьтәи аиндекс"
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Иҩбоу аинтеграл аиндексқәа"
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Ихԥоу аинтеграл"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Ихԥоу аинтеграл ҵаҟатәи аиндекс"
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Ихԥоу аинтеграл хыхьтәи аиндекс"
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Ихԥоу аинтеграл аиндексқәа"
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Аҵәаӷәархәаратә интеграл"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Аҵәаӷәархәаратә интеграл ҵаҟатәи аиндекс"
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Аҵәаӷәархәаратә интеграл хыхьтәи аиндекс"
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Аҵәаӷәархәаратә интеграл аиндексқәа"
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Иҩбоу аҵәаӷәахәахәатә интеграл"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Иҩбоу аҵәаӷәархәаратә интеграл ҵаҟатәи аиндекс"
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Иҩбоу аҵәаӷәархәаратә интеграл хыхьтәи аиндекс"
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Иҩбоу аҵәаӷәархәаратә интеграл аиндексқәа"
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Ихԥоу аҵәаӷәахәахәатә интеграл"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Ихԥоу аҵәаӷәархәаратә интеграл ҵаҟатәи аиндекс"
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Ихԥоу аҵәаӷәархәаратә интеграл хыхьтәи аиндекс"
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Ихԥоу аҵәаӷәархәаратә интеграл аиндексқәа"
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Акут"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Аҵәаӷәа хыхьла"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Иаарҳәу ациркумфлекс"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Агьежь"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Акәаҧ"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Аҩкәаҧ"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Акәаҧрацәа"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Гравис"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Циркумфлекс"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Тильда"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Авектортә хыц"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Аҵаӷәа ҵаҟала"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Аҵәаӷәа хыхьла"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Иҵәаӷәоу"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Иҵәцоу"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Ижәпоу ашрифт"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Ихынаау ашрифт"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Иҧсахтәуп ашәагаа"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Иҧсахтәуп ашрифт"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Еиқәаҵәоу аҧштәы"
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Иҟаҧшьу аҧштәы"
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Араӡын ԥштәы"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Аҩежь ԥштәы"
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Ахыц гьежьқәа"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Аквадраттә хыцқәа"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
#, fuzzy
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Ахыцқәа"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Акәакьтә хыцқәа"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Иаабац аҵәаӷәақәа"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Иҩбоу аҵәаӷәақәа"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Аоператор ахыцқәа"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Ахыц гьежьқәа (амасштабра зуа)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Аквадраттә хыцқәа (амасштабра зуа)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Иҩбоу аквадраттә хыцқәа (амасштабра зуа)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Афигуратә хыцқәа (амасштабра зуа)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Акәакьтә хыцқәа (амасштабра зуа)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Иаабац аҵәаӷәақәа (амасштабра зуа)"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Иҩбоу аҵәаӷәақәа (амасштабра зуа)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Аоператор ахыцқәа (амасштабра зуа)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Иԥшаауп"
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Афигуратә хыцқәа хыхьла (амасштабра зуа)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Афигуратә хыцқәа ҵаҟала (амасштабра зуа)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Ҵаҟатәи аиндекс арымарахь"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Ахыцырк"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Ҵаҟатәи аиндекс арымарахь"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Хыхьтәи аиндекс арымарахь"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Ҵаҟатәи аиндекс ҵаҟала"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Хыхьтәи аиндекс хыхьла"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Икьаҿу абжьажь"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Иҭацәуп"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Ацәаҳәа ҿыц"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Еиҟаратәтәуп арымарахь ала"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Еиҟаратәтәуп ацентр ала"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Еиҟаратәтәуп арыӷьарахь ала"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Алеф"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Иҭацәу арацәа"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Амаҭәартә хәҭа"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Еижьагоу ахәҭа"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Ҵыхәаԥҵәарада"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Ихатәу адифференциал"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Набла"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Вейерштрасс аеллиптикатә символ"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Акәаԥқәа агәҭаны"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Акәаԥқәа хыхь"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Акәаԥқәа ҵаҟа"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Акәаԥқәа ҵаҟала"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Акәаԥқәа вертикалны"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Аидҳәалара"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Ашара (/)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Ишоит"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Ишаӡом"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Анатуралтә хыԥхьаӡарақәа рырацәа"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Ахыҧхьаӡара еибгақәа рырацәа"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Арационалтә хыԥхьаӡарақәа рырацәа"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Иҵабыргу ахыԥхьаӡарақәа рырацәа"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Акомплекстә хыԥхьаӡарақәа рырацәа"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Иҭбаау циркумфлекс"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Иауу тильда"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Иауу авектортә хыц"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Ахыц армарахь"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Ахыц арӷьарахь"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Ахыц аҩада"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Ахыц алада"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Абжьажь ада"
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Иаԥхьанеиуеит"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Иаԥхьанеиуеит ма иаҟароуп"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Иаԥхьанеиуеит ма еквивалентуп"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Иашьҭанеиуеит"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Иашьҭанеиуеит ма иаҟароуп"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Иашьҭанеиуеит ма еквивалентуп"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Иаԥхьанеиӡом"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Иашьҭанеиӡом"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Аунартәи/Абинартәи операторқәа"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Аизыҟазаашьақәа"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Арацәа азы аоперациақәа"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Афункциақәа"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Аоператорқәа"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Атрибутқәа"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Ахыцқәа"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Аформатқәа"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Егьырҭқәа"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Аҿырҧштәқәа"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Истандарту"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Акурсив"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Ажәпа"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "аиқәаҵәа"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "аиаҵәа"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "аҟаҧшь"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "алаиматә"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "араӡынтә"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
#, fuzzy
msgctxt "STR_TEAL"
msgid "teal"
msgstr "ачаи"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "аҩежь"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "иубарҭам"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "акегль"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "агарнитура"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "арымарахь"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ацентр ала"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "арыгьарахь"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Акомандақәа"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Аформула"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Адокумент аиқәырхара..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION аформула"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "АГХА : "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Ҳаззыҧшымыз асимвол"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Иззыԥшымыз атокен"
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Иазыԥшуп «{»"
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Иазыԥшуп «}»"
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Иазыԥшуп «(»"
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Иазыҧшуп «)»"
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Арӷьарахьи армарахьи асимволқәа еиқәшәаӡом"
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Иазыԥшуп «fixed», «sans» ма «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Иззыԥшымыз атокен «size» ашьҭахь"
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Ҩынтәны аиҟаратәра азин ыҟам"
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Иазыԥшуп «#»"
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Иаҭахуп аԥштәы"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Иазыԥшуп «Арӷьарахь»"
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Иаҵанакуа"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Ахы"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Аформула атеқст"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Аҿыкәырша "
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ашәагаа"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Ахалагаратә шәагаа"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Адаҟьа ашәагаа иақәыршәаны"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Амасштаб"
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 2fee3d4c1c8..5c97458134a 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
@@ -818,5739 +818,5745 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Иԥсахтәуп %1 аишьҭагылашьа"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Ииагатәуп %1"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Иҧсахтәуп ашәагаа %1"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Иргьежьтәуп %1"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 горизонталла ианырԥштәуп"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 вертикалла ианырԥштәуп"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 диагональла ианырԥштәуп"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "%1 ианырԥштәуп ишабалак"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr ""
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr ""
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Иаҟәыхтәуп %1"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Иԥсахтәуп %1 Безье аҷыдаҟазшьа"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Иԥсахтәуп %1 Безье аҷыдаҟазшьақәа"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr ""
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr ""
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr ""
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Иргәыԥтәуп %1"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr ""
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Ихархәатәуп атрибутқәа %1 азы"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Ихархәатәуп астильқәа %1 азы"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Ианыхтәуп астиль %1 аҟынтәи"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr ""
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr ""
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr ""
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr ""
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr ""
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr ""
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Еиҟаратәтәуп %1"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr ""
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr ""
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr ""
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr ""
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr ""
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr ""
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr ""
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr ""
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Еидҵатәуп %1"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Еицҵатәуп %1"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Иагырхатәуп %1"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr ""
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Иеихшатәуп иалху аобиеқтқәа"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "Еиҟаратәтәуп аҭбаара %1"
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Еидҵатәуп %1"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Еихшатәуп %1"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Еихшатәуп %1"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Еихшатәуп %1"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Иҭаргылатәуп акәаԥ %1 аҟны"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr ""
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr ""
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Ииагатәуп %1"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Иҧсахтәуп ашәагаа %1"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Иргьежьтәуп %1"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 горизонталла ианыԥштәуп"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 вертикалла ианыԥштәуп"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 диагональла ианыԥштәуп"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr ""
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr ""
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr ""
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr ""
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr ""
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Иԥсахтәуп арадиус %1 ала"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Иԥсахтәуп %1"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Иҧсахтәуп ашәагаа %1"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Ииагатәуп %1"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr ""
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr ""
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Иԥсахтәуп %1"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "Иԥсахтәуп атеқст: абзац %1, ацәаҳәа %2, аиҵагыла %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "Иалхуп аобиеқт %1"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Акәаԥ %1 аҟынтәи"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr ""
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr ""
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Иазгәаҭатәуп аобиектқәа"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr ""
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Иазгәаҭатәуп акәаԥқәа"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr ""
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr ""
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Иаԥҵатәуп %1"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Иҭаргылатәуп %1"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Акопиа ахыхтәуп %1"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr ""
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Иԥсахтәуп атеқст %1"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Иҭаргылатәуп асахьа"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Ианыхтәуп адаҟьа"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Адаҟьа акопиа"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Иҧсахтәуп адаҟьақәа реишьҭагылашьа"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr ""
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr ""
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Иҭаргылатәуп адокумент"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Иҭаргылатәуп аҿыгҳара"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Ианыхтәуп аҿыгҳара"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Иԥсахтәуп аобиект %1 ахьӡ"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Иԥсахтәуп аобиект %1 ахы"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr ""
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "иаҿ."
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "иаҿых."
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "ааи"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "мап"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Атип 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Атип 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Атип 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Атип 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Горизонталла"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Вертикалла"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Автоматикала"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Аҿых."
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Ипропорционалны"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Ацәаҳәақәа зегьы хазы."
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr ""
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Хыхьла"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "Ацентр ала"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Ҵаҟала"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr ""
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Еиҵыхуп"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Арымарахь"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "Ацентр ала"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr ""
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Еиҵыхуп"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "иаҿых."
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "алацәҟәра"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr ""
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr ""
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr ""
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "армарахь"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "аҩада"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "аргьарахь"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "алада"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Истандарту аиԥшьыгатә ҵәаӷәа"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Аиԥшьыгатә ҵәаӷәа"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Аиԥшьыгатә ҵәаӷәаиаша"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Аиԥшьыгатә ҵәаӷәахәахәа"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Астандарт"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Арадиус"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "автоматикала"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr ""
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "аҩныҵҟа (ацентр ала)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr ""
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "автоматикала"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "аҵәаӷәа аҟны"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr ""
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "аҵәаӷәа аҵаҟа"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
#, fuzzy
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "Ацентр ала"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "агьежь"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Агьежь асектор"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Агьежь асегмент"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr ""
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Идырым атрибут"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Аҵәаӷәа астиль"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr ""
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Аҵәаӷәа аҭбаара"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Аҵәаӷәа аҧштәы"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Аҵәаӷәа алагамҭа"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Аҵәӷәа анҵәамҭа"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Аҵәаӷәа алагамҭа аҭбаара"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Аҵәаӷәа анҵәамҭа аҭбаара"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr ""
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr ""
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Аҵәаӷәа аҵәцара"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Аиҧшьыгатә ҵәаӷәақәа"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Аҵәаӷәақәа ратрибутқәа"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Аҭарҭәара астиль"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Аҭарҭәара аԥштәы"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Аградиент"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr ""
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Арастр аҭарҭәара"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Аҵәцара"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Аградиенттә шьаҿақәа рыԥхьаӡа"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Амозаика аҭарҭәара"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Арастр аҭарҭәара апозициа"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Арастр аҭарҭәара аҭбаара"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Арастр аҭарҭәара аҳаракыра"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Иҵәцоу аградиент"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr ""
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Амозаика ашәагаа %-ла акәымкәа"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr ""
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr ""
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Арастр амасштабркра"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr ""
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr ""
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Аҿаԥшыра аҭарҭәара"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Аҭакыра атрибутқәа"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Атеқсттә еффект астиль"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Атексттә еффект аиҟаратәра"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr ""
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Ашрифт аеффект алагамҭа"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr ""
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Атексттә еффект аконтуртә шрифт"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Атеқсттә еффект агага"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Атеқсттә еффект агага аҧштәы"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr ""
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr ""
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "Иҵәахтәуп атексттә еффект аконтур"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr ""
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "Агага"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Агага аԥштәы"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Агага аинтервал X"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Агага аинтервал Y"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Агага аҵәцара"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3D агага"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr ""
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Алегенда атип"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr ""
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Алегенда акәакь"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Алегенда ацәаҳәа ашьаҿа"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr ""
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr ""
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr ""
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr ""
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Алегенда аҵәаӷәа аура"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr ""
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Арамка иминималу аҳаракыра"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr ""
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr ""
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr ""
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr ""
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr ""
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr ""
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr ""
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Арамка имаксималу аҳаракыра"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Арамка иминималу аҭбаара"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Арамка имаксималу аҭбаара"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr ""
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr ""
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr ""
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr ""
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr ""
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr ""
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr ""
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr ""
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr ""
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Атеқст аконтур"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Ахархәаҩ иатрибутқәа"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr ""
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr ""
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Аиԥшьыгатә ҵәаӷәақәа ртип"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr ""
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr ""
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr ""
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr ""
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr ""
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr ""
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr ""
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr ""
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr ""
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr ""
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Ашәагаақәа ртип"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr ""
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr ""
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr ""
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr ""
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr ""
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr ""
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr ""
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr ""
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr ""
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr ""
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr ""
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Ашәага акақәа"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr ""
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Ашәага акақәа раарԥшра"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Атеқст ашәагаақәа рформат"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr ""
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr ""
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr ""
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr ""
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr ""
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Агьежь атип"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr ""
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr ""
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Аобиект ихьчоу апозициа"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Аобиеқт ихьчоу ашәагаа"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr ""
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Иубарҭоу аобиект"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr ""
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Аҿыгҳара"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Аобиект ахьӡ"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr ""
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr ""
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr ""
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr ""
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr ""
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr ""
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr ""
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr ""
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Алогикатә ҭбаара"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Алогикатә ҳаракыра"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr ""
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr ""
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr ""
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr ""
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Иҧсахтәуп Х ашәагаа хазы-хазы"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Иҧсахтәуп Y ашәагаа хазы-хазы"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Иргьежьлатәуп хазы-хазы"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr ""
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr ""
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Иҧсахтәуп Х ашәагаақәа ишеибгоу"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Иҧсахтәуп Y ашәагаақәа ишеибгоу"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Иргьежьлатәуп ишеибгоу"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr ""
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr ""
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr ""
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr ""
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr ""
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr ""
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Аиагагқәа рыргылара"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Иаарҧштәуп амаркерқәа"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr ""
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Аномерркра аҩаӡара"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Амаркерқәеи аномерркреи"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Ахьаҵқәа"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Абзацбжьаратәи аинтервалқәа"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Ацәаҳәабжьаратәи аинтервал:"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Абзацқәа реиҟаратәра"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Атабулиациа"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Ашрифт аҧштәы"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Акодркра"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Акегль"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Ашрифт аҭбаара"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr ""
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Аҵшьра"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Ақәшьра"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Аҵәаӷәара"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Акурсив"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Аконтур"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Агага ацны"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr ""
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Акернинг"
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr ""
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Абжьажьқәа ирыҵшьтәӡам"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Атабулиациа"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr ""
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Зҽызымҧсахуа адырга"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Аҭакырақәа"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Аҟаҧшь"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr ""
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Ажжара"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Аконтраст"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Гамма"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Аҵәцара"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Инверттәуп"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Асахьа арежим"
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr ""
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Амедиатә обиеқт"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Амедиатә обиеқт"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Иҭаргылатәуп аиҵагыла"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Ибжьаргылатәуп ацәаҳәа"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Ианыхтәуп аиҵагыла"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Ианыхтәуп ацәаҳәа"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Еихшатәуп абларҭақәа"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Еидҵатәуп абларҭақәа"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Абларҭақәа рформат"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr ""
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr ""
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Ианыхтәуп абларҭа иаҵанакуа"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Атаблица астиль"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Атаблица астиль апараметрқәа"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Атаблица"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Атаблицақәа"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "Атеқсттә еффект"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr ""
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Аградиент"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Атеқстура"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr ""
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Аҵәаӷәа астиль"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Мап"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Аҧштәы"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr ""
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Ахыцқәа рстильқәа"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Ахыц"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Аквадрат"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Агьежь"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- мап -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Аҵәцара"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Ацентр ала"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Ацентр ала акәымкәа"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Астандарт"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr ""
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Аиқәаҵәа-шкәакәа"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "Аҩежь"
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Аиқәаҵәа"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Ахәаԥштәы"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Ашкәакәа"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Аҩежь"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Ахьтәы"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Апатырқалԥштәы"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Аҟаҧшь"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr ""
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr ""
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "Индиго"
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr ""
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr ""
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "Лаим"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr ""
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr ""
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr ""
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr ""
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr ""
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr ""
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr ""
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr "Индиго А"
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Адиаграмма"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr ""
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Азхьарҧш"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3D"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Аиқәаҵәа 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Аиқәаҵәа 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr ""
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr ""
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr ""
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr ""
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr ""
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr ""
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr ""
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr ""
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr ""
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Аҟаҧшь"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Аҩежь"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr ""
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Афинанстәқәа"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr ""
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr ""
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr ""
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr ""
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr ""
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr ""
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr ""
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Аградиент"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr ""
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr ""
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr ""
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr ""
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr ""
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr ""
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr ""
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr ""
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr ""
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Адиагональ 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Адиагональ 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Адиагональ 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Адиагональ 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Адиагональ 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Адиагональ 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Адиагональ 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Адиагональ 4r"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
#, fuzzy
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Адиагональ 1l"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr ""
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr ""
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Адиагональ, аҟаҧшь"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr ""
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr ""
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "Акәакь аҟынтәи"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr ""
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr ""
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr ""
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr ""
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr ""
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr ""
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr ""
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr ""
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr ""
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr ""
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr ""
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr ""
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr ""
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Горизонталла"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr ""
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr ""
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr ""
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr ""
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr ""
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr ""
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr ""
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr ""
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr ""
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr ""
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr ""
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr ""
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr ""
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr ""
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr ""
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr ""
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr ""
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr ""
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr ""
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr ""
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr ""
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr ""
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr ""
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr ""
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr ""
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Ажәҩан"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr ""
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr ""
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr ""
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Аҵх"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr ""
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Иҭацәуп"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Атеқстура"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 процентк"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr ""
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr ""
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Ацәқәырҧа"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr ""
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr ""
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr ""
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr ""
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr ""
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr ""
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "Агоризонталқәа"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr ""
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Аромб"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr ""
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Агьежь"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Аквадрат"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Ахыц"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr ""
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr ""
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Аромб"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr ""
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr ""
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr ""
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr ""
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr ""
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr ""
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr ""
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr ""
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr ""
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Қәҿиарала еиҭашьақәыргылоуп"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr ""
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr ""
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr ""
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr ""
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr ""
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr ""
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "Ихыркәшатәуп"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Аҵыхәтәантәи аҵакы"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "пт"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Асахьа аекспорт"
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "Еиқәырхатәуп асахьа"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr ""
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr ""
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr ""
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr ""
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Зегьы]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr ""
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Атема ҿыц"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr ""
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr ""
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Амаркерқәа"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Аофис"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Абираҟқәа"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Аблок-схемақәа"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr ""
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Асахьақәа"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Аҿаҧшырақәа"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Аҩынтәи адаҟьа"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr ""
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr ""
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr ""
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr ""
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Акомпиутерқәа"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr ""
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr ""
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Афинансқәа"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr ""
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Афигурақәа"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr ""
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Адыргақәа"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr ""
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Ахыцқәа"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr ""
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Аклавиатура"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Аамҭа"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Апрезентациа"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Амзар"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Анавигациа"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr ""
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Афинансқәа"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Акомпиутерқәа"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr ""
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr ""
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr ""
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr ""
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Иалкаау ахәҭа акьыҧхьра"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr ""
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "Зегьы"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "Алкаара"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr ""
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr ""
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr ""
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr ""
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr ""
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr ""
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr ""
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr ""
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr ""
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr ""
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr ""
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr ""
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr ""
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr ""
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr ""
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr ""
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr ""
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr ""
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr ""
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr ""
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr ""
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Астандарт"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr ""
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr ""
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr ""
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "Еиҭа амаркерқәа..."
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Адаҟьақәа"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Ирыцқьатәуп аформатркра"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Еиҳаны астильқәа..."
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Еиҭа апараметрқәа..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Агарнитура"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr ""
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr ""
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Аекструзиа"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr ""
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Инарҳәтәуп ҵаҟа"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Инарҳәтәуп хыхь"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Инарҳәтәуп армарахь"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Инарҳәтәуп арӷьарахь"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr ""
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr ""
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr ""
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr ""
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr ""
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr ""
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr ""
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "Атеқстура"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Атеқсттә еффектқәа"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Ихархәатәуп атеқсттә еффект аформа"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr ""
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr ""
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr ""
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr ""
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Астиль"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "и"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr ""
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Акәакьтә кәаҧ алхра"
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Хыхьла арымарахь"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr ""
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Хыхьла арыӷьарахь"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr ""
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Ацентр ала"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr ""
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Ҵаҟала арымарахь"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr ""
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Ҵаҟала арыӷьарахь"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr ""
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Ара шәара ишәылшоит ишәыҧсахыр аконтур."
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Иҷыдоу асимвол алхра"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr ""
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Асимвол акод "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr ""
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Аформақәа"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr ""
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Аҷыдаҟазшьақәа:"
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Аформа аҷыдаҟазшьақәа"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr ""
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Аформа"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Аформа"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr ""
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr ""
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Аҭаҩра"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "аҟынтә"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Аҭакыра алхра:"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr ""
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr ""
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr ""
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr ""
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6558,332 +6564,338 @@ msgid ""
msgstr ""
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr ""
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Аиҵагыла"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr ""
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr ""
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Ианыхтәуп #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Ианыхтәуп # аобиеқт(қәа)"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr ""
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr ""
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "Акнопка"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr ""
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Атеқсттә ҭыкыра"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr ""
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "Аҭыҧдырга"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "Агәыҧ"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "Атеқсттә ҭыкыра"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
msgstr ""
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Ахьӡынҵа"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr ""
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "Аграфикатә кнопка"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr ""
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "Афаил алхра"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Арыцхә аҭакыра"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr ""
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr ""
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr ""
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr ""
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Акнопка"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Аҭыҧдырга"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Агәыҧ"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Аграфикатә кнопка"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Афаил алхра"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
#, fuzzy
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Атаблица"
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr ""
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr ""
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr ""
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Гәыҧ-гәыҧла алкаара"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr ""
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Арыцхә)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Аамҭа)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr ""
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr ""
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Ма"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr ""
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr ""
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr ""
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr ""
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr ""
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr ""
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr ""
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Адырқәа рбаза иаҵанакуам атаблица «#»."
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr ""
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr ""
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr ""
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr ""
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr ""
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr ""
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr ""
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (аҧхьара мацараз)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object# аҭыҧдырга"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6891,7 +6903,7 @@ msgid ""
msgstr ""
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6899,7 +6911,7 @@ msgid ""
msgstr ""
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6907,13 +6919,13 @@ msgid ""
msgstr ""
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr ""
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6922,7 +6934,7 @@ msgid ""
msgstr ""
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6931,1001 +6943,1001 @@ msgid ""
msgstr ""
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr ""
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr ""
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Ахьӡ «%1» ыҟоуп. Иалышәх даҽа хьӡык."
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr ""
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Мап"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Аекземплиар"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Адокумент"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Аидҳәалара: "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Азхьарҧш: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Аҟаҵара: "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Аметод: "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Иалаԥсахтәуп "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Иацҵатәуп аелемент"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Аелемент аредакциа азутәуп"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Ианыхтәуп аелемент"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Иацҵатәуп атрибут"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Атрибут аредакциа азутәуп"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Ианыхтәуп атрибут"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr ""
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr ""
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr ""
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr ""
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr ""
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr ""
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Аелемент"
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Атрибут"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Аидҳәалара"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr ""
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Арымарахь"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Ацентр ала"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr ""
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr ""
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr ""
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr ""
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr ""
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr ""
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Адокумент ҧсахын. Шәақәыӷәӷәа аиқәырхараз."
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Адокумент аҭагалара..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Ирдуны"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Ирхәыҷны"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr ""
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Адаҟьа зегьы"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Адаҟьа аҭбаара ала"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr ""
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Астильқәа алаҵаны"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Абзац астильқәа"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Абларҭа астильқәа"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Аҧшааратә цәаҳәа ҧшаам"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr ""
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Ииашам ажәамаӡа"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Ажәамаӡақәа еиқәшәаӡом"
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Асанҭыр хәыҷқәа"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Асанҭыр дуқәа"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr ""
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Асанҭыр дуқәа"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr ""
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr ""
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Аномерркра 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Аномерркра 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Аномерркра (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr ""
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr ""
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr ""
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr ""
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr ""
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr ""
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Инумеррку"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr ""
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr ""
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr ""
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "ZIP -фаил аҧҵара ауам."
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr ""
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Иҧшаатәуп"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr ""
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) пикс.)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) в $(DPI) dpi"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) кб"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "асахьа GIF"
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "асахьа JPEG"
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "асахьа PNG"
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "асахьа TIFF"
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "асахьа WMF"
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "асахьа MET"
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "асахьа PICT"
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "асахьа SVG"
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "асахьа BMP"
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "идырӡам"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr ""
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Аҟаҧшь"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr ""
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr ""
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Гамма"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr ""
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr ""
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr ""
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr ""
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr ""
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr ""
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr ""
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr ""
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr ""
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr ""
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Адаҟьа ахҳәаа: "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr ""
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr ""
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr ""
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr ""
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr ""
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Мап"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Альбомтә"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Ашәҟәытә"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Арымарахь"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Зегьы"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr ""
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Автор: "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Арыцхә: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Атеқст: "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Асимвол аҿаҧшыра"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr ""
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7933,1928 +7945,2031 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr ""
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr ""
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr ""
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr ""
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr ""
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr ""
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr ""
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr ""
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr ""
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr ""
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr ""
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr ""
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr ""
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr ""
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr ""
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr ""
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr ""
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr ""
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr ""
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr ""
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr ""
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr ""
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr ""
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr ""
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr ""
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr ""
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr ""
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr ""
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr ""
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr ""
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr ""
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr ""
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Аԥара асимволқәа"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr ""
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr ""
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Ахыҧхьаӡаратә формақәа"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Ахыцқәа"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr ""
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr ""
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr ""
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr ""
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr ""
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr ""
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr ""
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr ""
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Еиуеиԥшым адыргаҷқәа"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr ""
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr ""
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr ""
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr ""
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr ""
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr ""
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr ""
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr ""
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "Аишьашәалара"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr ""
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr ""
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr ""
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr ""
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr ""
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr ""
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr ""
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr ""
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr ""
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr ""
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr ""
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr ""
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Испециалу"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr ""
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr ""
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr ""
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr ""
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr ""
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr ""
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr ""
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr ""
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr ""
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr ""
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr ""
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr ""
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr ""
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr ""
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr ""
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr ""
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr ""
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr ""
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr ""
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr ""
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr ""
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr ""
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr ""
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr ""
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr ""
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr ""
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr ""
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr ""
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr ""
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr ""
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr ""
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr ""
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr ""
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr ""
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr ""
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr ""
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr ""
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr ""
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr ""
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr ""
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr ""
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr ""
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr ""
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr ""
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr ""
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr ""
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr ""
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr ""
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr ""
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Ивертикалу аформақәа"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr ""
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr ""
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr ""
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr ""
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr ""
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr ""
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr ""
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr ""
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Чамтәи"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr ""
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr ""
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr ""
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr ""
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr ""
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr ""
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr ""
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr ""
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr ""
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr ""
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr ""
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr ""
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr ""
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Аҵәаӷәатә"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr ""
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr ""
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Нева"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Осеидж"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10701,7 +10816,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10709,11 +10824,29 @@ msgstr ""
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr ""
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr ""
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr ""
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr ""
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr ""
@@ -13600,176 +13733,44 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "Ибжьаргылатәуп аиҵагыла"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "Атеқсттә ҭыкыра"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr ""
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr ""
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "Ахьӡынҵа"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "Арыцхә аҭакыра"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr ""
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr ""
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr ""
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr ""
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr ""
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr ""
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "Иҧсахтәуп ала"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "Атеқсттә ҭыкыра"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr ""
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr ""
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "Ахьӡынҵа"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "Арыцхә аҭакыра"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr ""
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr ""
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr ""
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr ""
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr ""
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr ""
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "Ианыхтәуп аиҵагыла"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr ""
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr ""
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "Иҵегь..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
msgctxt "colsmenu|all"
msgid "_All"
msgstr "Зегьы"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
msgctxt "colsmenu|column"
msgid "Column..."
msgstr ""
@@ -13924,126 +13925,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "Асахьа иазку аинформациа"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "Атексттә ҭыкыра"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "Акнопка"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "Аҭыҧдырга"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "Агәыҧ"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "Ахьӡынҵа"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr ""
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr ""
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr ""
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "Аграфикатә кнопка"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "Афаил алхра"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "Арыцхә аҭакыра"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr ""
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr ""
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr ""
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr ""
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr ""
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr ""
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr ""
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr ""
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr ""
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 3eb3069a146..a67382600e8 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: 2021-02-22 17:18+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+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"
@@ -1564,10 +1564,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2277,1510 +2277,1565 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "Ианырԥшқәоу"
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "Албаага асимвол"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "Адаҟьа аномер"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "Ахьӡ асимволқәа"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "Ахалагаранбан"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "Аномерркра асимвол"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr ""
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "аИнтернет-зхьарҧш"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "Изҭаахьоу агиперзхьарԥш"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "Ахарҭәаага"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "Аҭыԥрбага азхьарԥш"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "Анҵәамҭатә лбаага асимвол"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "Ацәаҳәақәа рномерркра"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "Аҭыԥрбага ихадоу аелемент"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "Албаага адҳәала"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "Анҵәамҭатә лбаага адҳәала"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr ""
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "Асимволқәа вертикаллатәи рхырхарҭа"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "Алкаара"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "Ижәпаны алкаара"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "Ахалагаратә теқст"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "Аҿырҧштәы"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "Ахарәаҩ иҭагалара"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "Аҽеиҭак"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
#, fuzzy
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "Аструктура"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "Ипропорционалым атеқст"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "Афреим"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "Асахьақәа"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "Аформула"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "Азгәаҭақәа"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "Аӡдырга"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "Анапаҵаҩрақәа"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr ""
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "Ихадоу атеқст"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "Актәи ацәаҳәа ахьаҵ ацны"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "Шьҭахьлатәи ахьаҵ"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "Ихадоу атеқст ахьаҵ ацны"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr ""
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "Анапаҵаҩра"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "Ахы"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr ""
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "Аиндекс"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "Ахьаҵқәа"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "Азгәаҭақәа"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "Ахы 1"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "Ахы 2"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "Ахы 3"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "Ахы 4"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "Ахы 5"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "Ахы 6"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "Ахы 7"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "Ахы 8"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "Ахы 9"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "Ахы 10"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "Иномеррку ахьӡынҵа алагамҭа 1"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "Иномеррку ахьӡынҵа 1"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "Иномеррку ахьӡынҵа анҵәамҭа 1"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "Иномеррку ахьӡынҵа иацу 1"
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "Иномеррку ахьӡынҵа алагамҭа 2"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "Иномеррку ахьӡынҵа 2"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "Иномеррку ахьӡынҵа анҵәамҭа 2"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "Иномеррку ахьӡынҵа иацу 2"
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "Иномеррку ахьӡынҵа алагамҭа 3"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "Иномеррку ахьӡынҵа 3"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "Иномеррку ахьӡынҵа анҵәамҭа 3"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "Иномеррку ахьӡынҵа иацу 3"
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "Иномеррку ахьӡынҵа алагамҭа 4"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "Иномеррку ахьӡынҵа 4"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "Иномеррку ахьӡынҵа анҵәамҭа 4"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "Иномеррку ахьӡынҵа иацу 4"
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "Иномеррку ахьӡынҵа алагамҭа 5"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "Иномеррку ахьӡынҵа 5"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "Иномеррку ахьӡынҵа анҵәамҭа 5"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "Иномеррку ахьӡынҵа иацу 5"
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr ""
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr ""
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr ""
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr ""
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr ""
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr ""
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr ""
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr ""
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr ""
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr ""
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr ""
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr ""
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr ""
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr ""
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr ""
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr ""
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr ""
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr ""
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr ""
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr "Хыхьтәии ҵаҟатәии аколонтитулқәа"
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "Хыхтәи аколонтитул арымарахь"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "Хыхтәи аколонтитул арыӷьарахь"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "Ҵаҟатәи аколонтитул арымарахь"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "Ҵаҟатәи аколонтитул арыӷьарахь"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
#, fuzzy
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "Ахы"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "Атаблица ахы"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr ""
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "Албаага"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "Анҵәамҭатә лбаага"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "Ахьӡ"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "Аиллиустрациа"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "Атаблица"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "Атеқст"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "Асахьа"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr "Афигура"
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "Аҭыԥрбага ахы"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "Аҭыԥрбага 1"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "Аҭыԥрбага 2"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "Аҭыԥрбага 3"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr ""
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr ""
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Ахқәа 1"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Ахқәа 2"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Ахқәа 3"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Ахқәа 4"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Ахқәа 5"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Ахқәа 6"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Ахқәа 7"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Ахқәа 8"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Ахқәа 9"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Ахқәа 10"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "Ахархәаҩ иҭыԥрбагақәа рхы"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "Ахархәаҩ иҭыԥрбага 1"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "Ахархәаҩ иҭыԥрбага 2"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "Ахархәаҩ иҭыԥрбага 3"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "Ахархәаҩ иҭыԥрбага 4"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "Ахархәаҩ иҭыԥрбага 5"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "Ахархәаҩ иҭыԥрбага 6"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "Ахархәаҩ иҭыԥрбага 7"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "Ахархәаҩ иҭыԥрбага 8"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "Ахархәаҩ иҭыԥрбага 9"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "Ахархәаҩ иҭыԥрбага 10"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "Ацитата"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr "Асахьқәа рыхьӡынҵа ахы"
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr "Асахьақәа рыхьӡынҵа 1"
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "Аобиектқәа рыхьӡынҵа ахы"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "Аобиеқтқәа рыхьӡынҵа 1"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "Атаблицақәа рыхьӡынҵа ахы"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "Атаблицақәа рыхьӡынҵа 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "Абиблиографиа ахы"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "Абиблиографиа"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Ахы"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr ""
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "Блоклатәи ацитата"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "Атеқст иарбоу аформат ала"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "Агоризонталтә ҵәаӷәа"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "Ахьӡынҵа аҵанакы"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "Ахьӡынҵа ахы"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr ""
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Актәи адаҟьа"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "Армарахьтәи адаҟьа"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Актәи адаҟьа"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
#, fuzzy
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "аиндекс"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "Албаага"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "Анҵәамҭатә лбаага"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "Альбомтә"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "Иномеррку 123"
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "Иномеррку ABC"
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr "Иномеррку abc"
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "Иномеррку IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "Иномеррку ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr "Амаркер •"
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr "Амаркер –"
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr "Амаркер  "
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr "Амаркер "
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr "Амаркер "
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "Аиҵаҩ 1"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "Еиҟароу аҭбаара змоу аиҵаҩқәа 2"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "Еиҟароу аҭбаара змоу аиҵаҩқәа 3"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "Зыҭбаарақәа еиҟарам аиҵаҩқәа 2 (армарахьтәи > арӷьарахьтәи)"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "Зыҭбаарақәа еиҟарам аиҵаҩқәа 2 (армарахьтәи > арӷьарахьтәи)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr ""
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Абзацқәа рстильқәа"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "Асимволқәа рстильқәа"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
#, fuzzy
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Атаблицақәа рстиль"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Адаҟьақәа рстиль"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "Ахьӡынҵақәа рстильқәа"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Атаблицақәа рстиль"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Аконверт"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
#, fuzzy
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Анапаҵаҩра"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION атеқсттә документ"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Адокумент аартра ауам."
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Адокумент аҧҵара залшом."
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Афильтр ҧшаам."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Еилоу адокумент ахьӡи амҩеи"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "HTML адокумент ахьӡи амҩеи"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "Асценари аредакциазура"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "Агәылаҵа"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr ""
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr ""
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr ""
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[Мап]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Адәықәҵара"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Анҵәамҭа"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "Хыхьла"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "Ҵаҟала"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "(аҧхьара мацараз)"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "Акаталог 'AutoText' азкуп аԥхьара мацара. Иааԥхатәума амҩа азалхра иазку диалог?"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Астатистика"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Адокумент аимпорт..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Адокумент аекспорт..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Адокумент аиқәырхара..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Даҟьала аихшара..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Адокумент автоматикала аформатркра..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Аҧшаара..."
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Letter"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Аорфографиа агәаҭара..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Аиагагақәа рыргылара..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Аҭыԥрбага аҭаргылара..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Аҭыԥрба арҿыцра..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Ареферат аԥҵара..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Аобиектқәа адаптациа рзутәуп..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Атаблица"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Асахьа"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Аобиеқт"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Афреим"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "Афигура"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
#, fuzzy
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "апараграф"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Аномерркра"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "Иҭацәу адаҟьа"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Абстракциа:"
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "еидыхлатәуп ала: "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "Аструктура: аҩаӡара"
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Уажәтәи астиль: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Адаҟьа аномер: "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Аимҟьара адаҟьа ҿыц аҧхьа"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Мраҭашәаратәи атеқст: "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Мрагыларазиатәи атеқст: "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr "ИАР атеқст:"
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "<ианониму>"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Ианыхтәуп акомментариқәа зегьы $1 аҟынтәи"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Иҵәахтәуп акомментариқәа зегьы $1 иҟынтәи"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr ""
@@ -3788,14 +3843,14 @@ msgstr ""
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "Иалкаауп: $1, $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3804,7 +3859,7 @@ msgstr[1] ""
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3814,7 +3869,7 @@ msgstr[1] ""
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1, $2"
@@ -3822,7 +3877,7 @@ msgstr "$1, $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3832,7 +3887,7 @@ msgstr[1] ""
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3840,91 +3895,91 @@ msgstr[0] ""
msgstr[1] ""
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Ииагатәуп атеқст атаблицахь."
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Иацҵатәуп автоформат"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Ахьӡ"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Ианыхтәуп автоформат"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "Анаҩстәи автоформат аныххооит:"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Автоформат ахьӡ ҧсахтәуп"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Иарктәуп"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "Аҩада"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "Агәҭа"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Алада"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Аицҵалыҵ"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3936,421 +3991,421 @@ msgstr ""
"Шәхы иашәырхәа даҽа хьӡык."
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Ахыҧхьаӡаратә"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Ацәаҳәақәа"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "Аиҵагыла"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Абиблиографиатә зхьарҧшқәа рыриашара"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Иҭаргылатәуп абиблиографиатә зхьарҧшқәа"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "%1- и %2-еи рыбжьара аинтервал"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Аиҵаҩ %1 аҭбаара"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "Атаблица %PRODUCTNAME Writer"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
#, fuzzy
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "Атаблица %PRODUCTNAME Writer"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "%PRODUCTNAME Writer асахьа"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "OLE егьырҭ аобиектқәа"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr "Атаблица ахьӡ иаҵанамкуазароуп абжьажьқәа."
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "Иалху асортра ауам"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "Аобиеқт алхра"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Автотеқст аҭаргылара аԥхьа"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "Автотеқст аҭаргылара ашьҭахь"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Аҳәынаԥ аобиект аҩадахьы"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Агиперзхьарҧш ала аиасра"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Аҳәынаԥ аобиект ннажьуеит"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "Асахьа қәҿиарала иҭагалоуп"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "Асахьа аҭагалара аанкылоуп"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "Асахьа аҭагалара ауам"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Алф.-цифр. символқәа рҭагалара"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
#, fuzzy
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Алф.-цифр. символқәа рҭагалара"
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Арамка ашәагаа аԥсахра"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Арамка аиҭагара"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Ахқәа"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Атаблицақәа"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Асахьақәа"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE аобиеқтқәа"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Агәылаҵақәа"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "апараграф"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Агиперзхьарҧшқәа"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Азхьарҧшқәа"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Аиндексқәа"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Асахьақәа"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Акомментариқәа"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Ахы 1"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr ""
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Ахы 1.1"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr ""
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Ахы 1.2"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr ""
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "Атаблица 1: Ари атаблица 1"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "Асахьа 1: Ари асахьа 1"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr ""
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Ахы"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Атаблица"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLE-аобиеқт"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Агәылаҵа"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "апараграф"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Агиперзхьарҧш"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Азхьарҧш"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "аиндекс"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Акомментари"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Аграфикатә обиеқт"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Егьырҭ аформатқәа..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Асистема]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4360,631 +4415,631 @@ msgstr ""
"аҿакуп егьи адокумент аҟны"
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Аиагагақәа рыргылара"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "иауам"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Ианыхтәуп $1"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Ибжьаргылатәуп $1"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Ихҩылаатәуп: $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Абзац ҿыц"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Ииагатәуп"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Ихархәатәуп атрибутқәа"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Ихархәатәуп астиль: $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Атрибутқәа еиҭашьақәыргылатәуп"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Иҧсахтәуп астиль: $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Ибжьаргылатәуп афаил"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Ибжьаргылатәуп автотеқст"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Ианыхтәуп агәылаҵа: $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Ибжьаргылатәуп агәылаҵа: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Атаблица асортра"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Атеқст асортра"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Ибжьаргылатәуп атаблица: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Ииагатәуп атеқст атаблицахь"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Ииагатәуп атаблица атеқст ахь"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Акопиа ахыхтәуп: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Иҧсахтәуп $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Иҭаргылатәуп адаҟьа аимҟьара"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Иҭаргылатәуп аиҵаҩ аимҟьара"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Иҭаргылатәуп аконверт"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Акопиа ахыхтәуп: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Ииагатәуп: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Ибжьаргылатәуп адиаграмма %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
#, fuzzy
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Ибжьаргылатәуп атаблица"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
#, fuzzy
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Ианыхтәуп адаҟьа"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Автоформат"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Атаблица ахы"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Аҧсахра $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Иҭаргылатәуп аҟәша"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Ианыхтәуп аҟәша"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Иԥсахтәуп аҟәша"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Иԥсахтәуп астандарттә ҵакқәа"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Иҧсахтәуп астиль; $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Ианыхтәуп адаҟьа аимҟьара"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Атеқст ариашара"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Албаагақәа рструктура"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Ииагатәуп аструктура"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Иҭаргылатәуп аномерркра"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Ахьаҵ аҩаӡара"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Иларҟәтәуп аҩаӡара"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Ииагатәуп абзацқәа"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Иҭаргылатәуп аграфикатә обиект: $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Аномер Аҿак/Аҿых"
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Иазырҳатәуп ахьаҵ"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Иазырҵатәуп ахьаҵ"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Иҭаргылатәуп ахы: $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Иалагатәуп аномерркра ҿыцны"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Иԥсахтәуп албаага"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Ихадкылатәуп аԥсахра: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Мап ацәктәуп аԥсахра: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
#, fuzzy
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Иалкаатәуп атаблица"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Иаанкылатәуп атрибут"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Автоҧсахра"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Еидҵатәуп атаблица"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Арегистр"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Ианыхтәуп аномерркра"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Асахьақәа: $1 "
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Иргәыԥтәуп аграфикатә обиектқәа"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Асахьақәа рыргәыԥра ықәгатәуп"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Ианыхтәуп асахьақәа"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Иалаԥсахтәуп асахьа"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Ианыхтәуп асахьа"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Ихархәуатәуп атаблица атрибутқәа"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Атаблица автоформат"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Ибжьаргылатәуп аиҵагыла"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Ибжьаргылатәуп ацәаҳәа"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Ианыхтәуп ацәаҳәа/аиҵагыла"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Ианыхтәуп аиҵагыла"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Ианыхтәуп ацәаҳәа"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Еиҟәшатәуп абларҭақәа"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Еидҵатәуп абларҭақәа"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Абларҭақәа рформат"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr ""
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Иныхтәуп ахқәа/аҭыԥрбага"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Атаблица акопиа ахыхтәуп"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Атаблица акопиа ахыхтәуп"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Иқәыргылатәуп акурсор"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Иԥсахтәуп албаагақәа рырхиарақәа"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Еиҿырҧштәуп адокумент аверсиақәа"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Ианыхтәуп афреим астиль: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr ""
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Иҭаргылатәуп албаага"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "Иҭаргылатәуп URL акнопка"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
#, fuzzy
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Ибжьаргылатәуп агиперзхьарҧш..."
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "ианыхтәуп иҵәаху аҵанакы"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Атаблица/аиндекс ҧсахуп"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "ирацәоу алхра"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Аҭагалара: $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Иҭаргылатәуп аиҭныԥсахларатә гәынкылага"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr ""
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -4992,7 +5047,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5000,308 +5055,308 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "адаҟьа аимҟьара"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "аиҵаҩ аимҟьара"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Ибжьаргылатәуп $1"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "$1 аныхра"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Атрибутқәа ҧсахуп"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Атаблица ҧсахуп"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Астиль ҧсахуп"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Абзац аформат ҧсахуп"
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Ибжьаргылатәуп ацәаҳәа"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Ацәаҳәа аныхра"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Абларҭа аҭаргылара"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Абларҭа аныхра"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 алаԥсахрақәа"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Иҧсахтәуп адаҟьа астиль: $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Иаҧҵатәуп адаҟьа астиль: $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Ианыхтәуп адаҟьа астиль: $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Адаҟьа: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Аколонтитулқәа ԥсахуп"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Аҭакыра ԥсахуп"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Иаҧҵатәуп абзац астиль: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Ианыхтәуп абзац астиль: $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Абзац: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Иаҧҵатәуп асимвол астиль: $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Ианыхтәуп асимвол астиль: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Асимвол: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Иаҧҵатәуп афреим астиль: $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Ианыхтәуп афреим астиль: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Афреим: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Иаҧҵатәуп ахьӡынҵа астиль: $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Ианыхтәуп ахьӡынҵа астиль: $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Ахьӡынҵа: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Агәылаҵа ахьӡ ԥсахтәуп: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr ""
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr ""
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "аҭакыра"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Абзацқәа"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "афреим"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE-аобиеқт"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "аформула"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "адиаграмма"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "акомментари"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "еимаздо азхьарԥшқәа"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "Асценари"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "алитература ахьӡынҵа аелемент"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "испециалтәу асимвол"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "албаага"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "асахьа"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "аграфикатә обиеқт(қәа)"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "атаблица: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5309,1669 +5364,1669 @@ msgstr[0] ""
msgstr[1] ""
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "абзац"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Абзац адырга"
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Иԥсахтәуп аобиект %1 ахы"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Иԥсахтәуп аобиект %1 ахҳәаа"
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Иаҧҵатәуп атаблица астиль: $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Ианыхтәуп атаблица астиль: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Ирҿыцтәуп атаблица астиль: $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Ианыхтәуп атаблица"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Адокумент ахәаҧшра"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Адокумент ахәаҧшра"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Хыхьтәи аколонтитул $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Хыхьтәи аколонтитул $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
#, fuzzy
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
#, fuzzy
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Анҵәамҭатә лбаага $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Анҵәамҭатә лбаага $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) адаҟьа $(ARG2) аҟны"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Адаҟьа $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Адаҟьа $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Автор"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Арыцхә"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Аҟаҵарақәа"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Адокумент ахәаҧшра"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Ахәаҧшра арежим)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME адокуменқәа"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Аҧхьара агха"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Иауам асахьа аарԥшра."
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Аиҭныԥсахларатә гәыкылага аҟынтәи аԥхьараан агха."
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Аиҵаҩ аимҟьара"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ацәаҳәа %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Аиҵагыла %COLUMNLETTER "
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Асимвол"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Афреим"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Адаҟьақәа"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "Аномерркра"
+msgid "List"
+msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Атаблица"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Абларҭа"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Мрагыларазиатәиқәа"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "Иуадаҩу аҩырақәа рсистемақәа"
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Мраҭашәарахьтәиқәа"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Иаҵанакуа"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "Адаҟьа аҿаҧшыра"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "Асахьақәеи егьырҭ аграфикатә обиектқәеи"
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Иҵәаху атеқст"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "Атеқст ахарҭәаага"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Анапхгара аелементқәа"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Аҧштәы"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Икьыҧхьтәуп атеқст еиқәаҵәала"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Адаҟьақәа:"
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Икьыԥхьлатәуп автоматикала иҭаргылоу иҭацәу адаҟьақәа"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Ақьаад анашьҭра апринтер архиарақәа ирықәыршәаны"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Мап (адокумент мацара)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Акомментариқәа рымацара"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Ииагатәуп адокумент анҵәамҭахь"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Ииагатәуп адаҟьа анҵәамҭахь"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "Акомментари"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Аброшиура"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Армарахьтә - арӷьарахь"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Арӷьарахьтә-армарахь"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Адаҟьақәа:"
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "Алкаара"
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Иҭагӡатәуп аҭакырақәа"
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Афункциақәа"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Аҟәыхра"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Ихархәатәуп"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Аформулақәа рпанель"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Аформула атип"
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Аформула атеқст"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Аҵанакы"
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Аструктура аҩаӡара"
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Аиагара арежим"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Аструктура аиҭныԥсахларақәа ргәынкылагахь"
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Ибжьаргылатәуп агиперзхьарҧш ҳасабла"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Ибжьаргылатәуп азхьарҧш ҳасабла"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Иҭаргылатәуп копиа ҳасабла"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Иаарҧштәуп"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Иактиву аҧенџьыр"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "иҵәаху"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "иактиву"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "иактивым"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Ариашара..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Ирҿыцтәуп"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Ариашара"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Аимадара ариашара"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
msgctxt "STR_INDEX"
msgid "~Index"
msgstr ""
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "Афаил"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Иаҧҵатәуп адокумент"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Атеқст"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Ианыхтәуп"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Ианыхтәуп"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Иалкаау"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Аиндексқәа"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
#, fuzzy
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Азхьарҧшқәа"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Зегьы"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "иҵәаху"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Афаил ҧшаам: "
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Арымарахь: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr " Арыӷьарахь: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Аҩныҵҟа: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr " Адәныҟа: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr " Хыхьла: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr " Ҵаҟала: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Ацәаҳәа"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Автор"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Аинтакстә гха **"
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Ноль ала ашара **"
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Ииашамкәа ахыцқәа рхархәара **"
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Аквадрат афункциа аҭәцәара **"
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Аҭәцәара **"
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Агха **"
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Агха змо аҵакҳәага **"
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Агха: еимаздоу азхьарԥшқәа рхыҵхырҭа ԥшаам"
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Мап"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Алфавиттә ҭыԥрбага"
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Иҷыдоу"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Ахы"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Абиблиографиа"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Ацитата"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Атаблицақәа рыхьӡынҵа"
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Аобиеқтқәа рыхьӡынҵа"
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Асахьақәа рыхьӡынҵа"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Ахы"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Атема"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Ихадоу ажәақәа"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Акомментариқәа"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Иаҧҵоуп"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Иҧсахуп"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Икьыҧхьуп"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Аредакциа"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Аредакциазура иақәырӡу аамҭа зегьы"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Аконвертациа $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Актәи аконвертациа $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Анаҩстәи аконвертациа $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Астатиа"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Ашәҟәы"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Аброшиура"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Ашәҟәы аҟынтәи ацыԥҵәахақәа"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Ахқәа змоу ашәҟәы аҟынтәи ацыԥҵәахақәа"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Ажурнал"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Атехникатә документациа"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Адипломтә усумҭа"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Егьырҭқәа"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Адиссертациа"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Аҭҵаара иазку аҳасабырба"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Икьыԥхьым"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "E-mail"
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Веб-адаҟьа"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Ахархәаҩ итип 1"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Ахархәаҩ итип 2"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Ахархәаҩ итип3"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Ахархәаҩ итип4"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Ахархәаҩ итип5"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Иркаҿны"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Атип"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Адрес"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Акомментари"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Автор(цәа)"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Ашәҟәы ахқәа"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Ахқәа"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Аҭыжьымҭа"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Аредактор"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Аҭыжьымҭа атип"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Ажурнал"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Амза"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Азгәаҭа"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Аномер"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr ""
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Адаҟьақәа рхыҧхьаӡара"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Аҭыжьырҭа"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Ауниверситет"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Асериа"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Ахы"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Аҳасабырба атип"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Атом"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Ашықәс"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Ахархәаҩ итип 1"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Ахархәаҩ итип 2"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Ахархәаҩ итип3"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Ахархәаҩ итип4"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Ахархәаҩ итип5"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Аҭыԥрбага аелемент ариашара"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Иҭаргылатәуп аҭыԥрбага аелемент"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Акомментариқәа"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Иаарҧштәуп акомментари"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Иҵәахтәуп акомментари"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Ари армаҷра ыҟоуп. Иалышәх даҽа хьӡык."
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Ианыхтәума автотеқст?"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Ианыхтәуп акатегориа "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Автотеқст:"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Еиқәырхатәуп автотеқст"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Ари афаил иаҵанакуам автотеқст."
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "Сара сАвтотеқст"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Армаҷраз автотеқст аелемент «%1» ԥшаам."
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Иауам аҭаргылара атаблица ацәаҳәақәа ма аиҵагылақәа змам"
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Иауам аҭаргылара атаблица, идуцәоуп"
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Автотеқст аԥҵара ауам."
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr ""
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION атеқсттә документ"
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Асахьа (Атексттә документ %PRODUCTNAME %PRODUCTVERSION)"
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Аобиект (Атексттә документ %PRODUCTNAME %PRODUCTVERSION)"
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Динамикала адырқәа реиҭныԥсахлара (DDE-аимадара)"
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Акомментариқәа зегьы"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Акомментариқәа зегьы"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Акомментари иҟынтә"
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(арыцхә ыҟам)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(автор дамам)"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Аҭак $1 аҟны"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Аредакциазутәуп аблок адрес зцу"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Персоналла ахацәа ирызку аԥсшәаҳәара"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Персоналла аҳәсаа ирызку аԥсшәаҳәара"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Аԥсшәаҳәара аелементқәа"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Иацҵатәуп аԥсшәаҳәарахь"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Ианыхтәуп аԥсшәаҳәара аҟынтәи"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Аԥсшәаҳәара"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Ааҭгыларатә дырга"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Атеқсттә"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr ""
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Аԥсшәаҳәара ахәаԥшра"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Адрес аелементқәа"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Аԥсшәаҳәара аелементқәа"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Аҭакыра иақәшәақәо:"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Заатәи ахәаҧшра"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " анеира залшом "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Адресқәа рыхьӡынҵақәа(*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Атеқст мариа (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Аҿарҵәиқәа рыла еиҟәшо атеқст (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb,*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -6980,91 +7035,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "Адрестә шәҟәы %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Ахалагаратә документ алхра"
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Адокумент атип алхра"
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Адрес аблок аҭарргылара"
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Адресқәа рыхьӡынҵа алхра"
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Аԥсшәаҳәара аԥҵара"
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Аҭыԥнҵара архиара"
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Ихиоуп"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Mail адәықәҵарақәа"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Атаблица"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Азыҳәара"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Иацҵатәума адокумент агәаҭара ахы инаркны?"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Аорфографиа агәаҭара хыркәшоуп."
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7074,252 +7129,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Арыцхә"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Аамҭа"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Афаил ахьӡ"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Адырқәа рбаза ахьӡ"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Ахы"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Астатистика"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Автор"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Ашаблонқәа"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Адәықәҵаҩ"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Иаҧҵатәуп аҽеиҭак"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Иаарҧштәуп аҽеиҭак"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Ибжьаргылатәуп аформула"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Аҭагаларҭа аҭакыра"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Аҭагаларҭа аҭакыра (зыԥсахра ауа)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Аҭагаларҭа аҭакыра (ахархәаҩтәи)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr ""
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE аҭакыра"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Инагӡатәуп амакрос"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Аномерркра адиапазон"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Иазалхтәуп адаҟьа аҽеиҭак"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Иаарԥштәуп адаҟьа аҽеиҭакқәа"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "URL адрес"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Ахарҭәаага"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Еидҵатәуп асимволқәа"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Ахьӡынҵа"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Иқәыргылатәуп азхьарҧш"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Иҭаргылатәуп азхьарԥш"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr ""
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Анаҩстәи анҵамҭа"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr ""
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Анҵамҭа аномер"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Аҧхьатәи адаҟьа"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Иҵәаху атеқст"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Ахархәаҩ иҭакыра"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Азгәаҭа"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Асценари"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Абиблиографиатә зхьарҧш"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Иҵәаху абзац"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Адокумент иазкны"
@@ -7328,87 +7383,87 @@ msgstr "Адокумент иазкны"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Арыцхә"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Арыцхә (аҧсахра зымуа)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Аамҭа"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Аамҭа (аԥсахра зымуа)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Атаблицақәа"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Асимволқәа"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Ажәақәа"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Абзацқәа"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Асахьа"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Аобиеқтқәа"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Адаҟьақәа"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE автоматикала"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE напыла"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Атеқст]"
@@ -7417,104 +7472,104 @@ msgstr "[Атеқст]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Аиҿкаара"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Ахьӡ"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Ажәла"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Аинициалқәа"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Амҩа ахьӡ"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Атәыла"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Аԥошьҭатә индекс"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Ақалақь"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
#, fuzzy
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Ахы"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Аҭыҧ"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Аҭел (аҩн.)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Аҭел (аус.)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Афакс"
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "E-mail"
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Араион"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "иаҿых."
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "иаҿак."
@@ -7524,37 +7579,37 @@ msgstr "иаҿак."
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Афаил ахьӡ"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Афаил ахьӡ арҭбаарада"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Амҩа/Афаил ахьӡ"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Амҩа"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Акатегориа"
@@ -7563,25 +7618,25 @@ msgstr "Акатегориа"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Ахы ахьӡ"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Ахы аномер"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr ""
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Ахы ахьӡи аномери"
@@ -7590,55 +7645,55 @@ msgstr "Ахы ахьӡи аномери"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Аримтә (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Аримтә (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Арабтә (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Адаҟьа астиль ала"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Атеқст"
@@ -7647,13 +7702,13 @@ msgstr "Атеқст"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Ахьӡ"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Аинициалқәа"
@@ -7662,49 +7717,49 @@ msgstr "Аинициалқәа"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Асистема"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Атеқст"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Ахьӡ"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Атеқст"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Аформула"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Атеқст"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Адырқәа рбаза"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Асистема"
@@ -7713,19 +7768,19 @@ msgstr "Асистема"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Автор"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Аамҭа"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Арыцхә"
@@ -7734,79 +7789,79 @@ msgstr "Арыцхә"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "Азхьарҧш атеқст"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Ахы"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "Хыхьла/Ҵаҟала"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "Адаҟьа астиль еиҧш"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Акатегориеи аномери"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Ахьӡ атеқст"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Аномерркра"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Аномер"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Аномер (контексда)"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Аномер (ихарҭәаау аконтекст)"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Астатиа a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Астстиа A/Az + "
@@ -7815,31 +7870,31 @@ msgstr "Астстиа A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Атеқст"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Атаблица"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Афреим"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Асахьа"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Аобиеқт"
@@ -7848,1506 +7903,1506 @@ msgstr "Аобиеқт"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "Аҭагылазаашьа"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Анаҩс, Акәымзар"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE алаҳәара"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Иҵәахтәуп атеқст"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Амакрос ахьӡ"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "Аҵаҳәара"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Асимволқәа"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "Аҭыԥхгара"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Аҵакы"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Аформула"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
#, fuzzy
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Даҽакы:"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr ""
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "Ашьаҿа горизонт. "
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "Ашьаҿа верт."
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Аҭбаара"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Аҳаракыра"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Армарахьтәи акьыԥшь"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr ""
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Ацәаҳәақәа"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Ажәақәеи асимволқәеи рыԥхьаӡара. Шәақәыӷәӷәа, адиалог «Ажәақәа рхыԥхьаӡара»."
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Даҟьаклатәи аԥшра"
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Амульти-даҟьалатәи аԥшра"
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Ашәҟәытә ԥшра"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Адокумент адаҟьа аномер. Ақәыӷәӷәара иаанартуеит адиалог «Ииастәуп адаҟьахь», арӷьарахьтәи ақәыӷәӷәара - агәылаҵақәа рыхьӡынҵа.."
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Адокумент аҟны адаҟьа аномер (акьыԥхьраан). Ақәыӷәӷәара иаанартуеит адиалог «Ииастәуп адаҟьахь»."
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Адаҟьа астиль. Арӷьарахьтәи ақәыӷәӷәара астиль аԥсахразы, ақәыӷәӷәара - адиалог «Астильқәа»"
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Ахалагаранбан аҩадахьы"
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "ацәаҳәақәа"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Ахалагаранбан ада"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Адаҟьақәа реимҟьарада"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Ианырԥштәӡам"
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Ианырҧштәуп вертикалла"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Ианырҧштәуп горизонталла"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Ианырԥштәуп вертикаллеи горизонталлеи"
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "Горизонталла ианырԥштәуп еиҩшо адаҟьақәа рҟны"
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Асимволқәа рстиль"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Асимволқәа рстиль ада"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Ҵаҟатәи аколонтитул ада"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Хыхьтәи аколонтитул ада"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Адҳәалара мацара)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Аҭбаара:"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Афиксациа зызу аҳаракыра:"
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Имин. аҳаракыра:"
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "абзац ахь"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "асимвол ахь"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "Адаҟьахь"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Акоордината X:"
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Акоордината Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "хыхьла"
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Вертикалла ацентрла"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ҵаҟала"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Ацәаҳәа ахыхь"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Ацәаҳәа агәҭа"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Ацәаҳәа аҵаҟа"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "арыӷьарахь"
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Горизонталла ацентр ала"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "арымарахь"
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "аҩныҵҟа"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "адәныҟа"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Ихарҭәаау аҭбаара"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Аиҟәыҭхага ҵәаӷәа аҭбаара:"
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Албаагақәа имакс. рҵакыра:"
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Изинтәуп ариашара адокумент «аԥхьара мацараз» аҟны"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Еиҟәшатәуп"
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "Аномерркра"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "Аномерркра ада"
+msgid "List Style: (None)"
+msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "Иадҳәалатәуп "
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "и"
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Ацәаҳәақәа рыԥхьаӡара"
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "Ацәаҳәақәа ԥхьаӡатәӡам"
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "Иалагатәуп ацәақәа рыԥхьазара аҟынтә:"
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Ажжара: "
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr ""
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Аҵәцара: "
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Ибжьаргылатәуп"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "аинвертациа азутәӡам"
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Аграфикатә режим: "
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Истандарту"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Аиқәаҵәа-ашкәакәа"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Аӡдырга"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Аргьежьра"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Акаҭа ада"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Акаҭа (аҵәаӷәақәа мацара рзы)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Акаҭа (аҵәаӷәақәеи асимволқеи рзы)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Атеқст иашьҭалатәуп"
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Атеқст иашьҭалатәӡап"
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Еидҵатәуп аҿыкәырша"
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Еидҵатәӡам аҿыкәырша"
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "Атаблица"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "Адаҟьа"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Асахьа"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Анапхгара аелемент"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "апараграф"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Агәылаҵа"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Асахьа"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE аобиеқт"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Ахқәа"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Алкаара"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Албаага"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Агәаларшәара"
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Акомментари"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Даҽазнык аԥшаара"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Атаблица аформула"
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Атаблица аформула иашаӡам"
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Анаҩстәи атаблица"
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Анаҩстәи асахьа"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Анаҩстәи анапхгара аелемент"
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
#, fuzzy
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Анаҩстәи алкаара"
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Анаҩстәи агәылаҵа"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Анаҩстәи асахьа"
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "OLE анаҩстәи аобиеқт"
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Анаҩстәи ахы"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Анаҩстәи алкаара"
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Анаҩстәи албаага"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Анаҩстәи агәаларшәара"
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Анаҩстәи акомментари"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Иацҵатәуп аԥшаара ԥхьаҟа"
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Анаҩстәи аҭыԥрбага аелемент"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Аҧхьатәи атаблица"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Аҧхьатәи адаҟьа"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Аԥхьатәи асахьа"
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Аԥхьатәи анапхгара аелемент"
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Аҧхьатәи алкаара"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Аԥхьатәи агәылаҵа"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Аԥхьатәи асахьа"
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "OLE аԥхьатәи аобиект"
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Аҧхьатәи алкаара"
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Аԥхьатәи албаага"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Аԥхьатәи агәаларшәара"
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Аԥхьатәи акомментари"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Иацҵатәуп аԥшаара шьҭахьҟа"
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Аԥхьатәи аҭыԥрбага аелемент"
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Атаблица аҧхьатәи аформула"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Атаблица анаҩстәи аформула"
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Атаблица иаҧхьааиуа игхатәу аформула"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Атаблица анаҩстәи игхатәу аформула"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Ибжьаргылатәуп"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Ианыхуп"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Иформатркуп"
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Атаблица ҧсахуп"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Абзац аформат ҧсахуп"
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ацәаҳәа ҭаргылоуп"
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ацәаҳәа аныхуп"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Абларҭа ҭаргылоуп"
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Абларҭа аныхуп"
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Анҵәамҭатә лбаага: "
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Албаага: "
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-ақыәӷәӷәара смарт-тегқәа рыхкынҵа аартразы"
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Хыхьтәи аколонтитул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Актәи адаҟьа хыхьтәи аколонтитул (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Армарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Арӷьарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Ҵаҟатәи аколонтитул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Актәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Армарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Арӷьарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Ианыхтәуп хыхьтәи аколонтитул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Адаҟьа аформат"
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Ианыхтәуп ҵаҟатәи аколонтитул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Иформатрктәуп ҵаҟатәи аколонтитул..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аҧхьара ауам"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Асахьа идырым аформат"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Агрфикатә фаил ари аверсиа аднакылашом"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Иԥшаам асахьа афильтр"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Асахьа аҭаргыларазы иазхом агәынкылара."
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Ибжьаргылатәуп асахьа"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Акомментари:"
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Аҭаргылара"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Аныхра"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Автоҧсахра"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Аформатқәа"
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Атаблица аредакциазура"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Адаҟьа "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Адаҟьа %1 %2 аҟынтәи"
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Адаҟьа %1 %2 аҟынтәи (адаҟьа %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-аобиеқт"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Афреим"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Атаблица"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Атаблица ацәаҳәа"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Атаблица абларҭа"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "HTML (%PRODUCTNAME %PRODUCTVERSION) адокумент"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Ахы"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Аиҟәшага"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Афаил «%1» аԥшаара амуит «%2» амҩа ала."
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Ахархәаҩ иҭыԥрбага"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<мап>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<мап>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Ахы аномер"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Аелемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Атабулиациа ашьаҿа"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Атеқсттә"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Ахы аинформациа"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Агиперзхьарҧш алагамҭа"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Агиперзхьарҧш анҵәамҭа"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Абиблиографиатә зхьарԥш:"
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Асимволқәа рстиль: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Аструктура атеқст"
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Шәақәыӷәӷәа Ctrl+Alt+A иацҵоу аоперациақәа рзы"
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Шәрықәыӷәӷәала армарахьтәии арӷьарахьтәии ахыцқәа аструктура аелементқәа рнапхгара алхразы"
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
@@ -9356,260 +9411,260 @@ msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Абазатә ҵәаӷәа хыхьла"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Абазатә ҵәаӷәа ҵаҟала"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Абазатә ҵәаӷәа ацентр ала"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
#, fuzzy
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Иҧсахтәуп аобиеқт"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Ашаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Аҿыкәырша"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Аҿаҧшыра"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Абзац астиль: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Ари адаҟьа аҟны аномер ақәыргылара ауам. Армарахьтәи адаҟьақәа рҟны иқәыргылазар ауеит мацара еиҩшо, арӷьарахьтәи - мацара еиҩымшо ацифрақәа."
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION еилоу адокумент"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Иҭагалоуп ииашам ажәамаӡа."
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Ажәамаӡа ықәыргылам."
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Аиагагақәа рыргылара хыркәшоуп"
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Мап (аорфографиа гәаҭатәӡам)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Иқәыргылатәуп абызшәа ишыҟаз"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Иҵегь..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ибжьажьтәуп"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Аилыркаарақәа..."
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Испециалу аҵакырақәа ргәаҭара аҿыхуп. Зегь акоуп игәаҭатәума?"
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Иауам адокументқәа реидҵара."
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Ахалагаратә теқст аҭагалара ауам."
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Ахкынҵа «Аервис/Апараметрқәа/%1/Акьыԥхьра» аҟны афакс-принтер ықәыргылаӡам."
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML адокумент"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Атеқсттә документ"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Ахыҵхырҭа арбам."
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Аструктура "
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Албаага ариашара/анҵәамҭатә лбаага"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Иԥшаатәу ажәа ԥсахуп XX нтә."
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ацәаҳәа "
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Аиҵагыла "
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Ахалагаратә теқст аекспорт..."
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Ахыҵхырҭа акопиақәа рекспорт..."
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Иацҵатәуп"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Адәықәҵара: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Қәҿиарала идәықәҵоуп"
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Адәықәҵара амуӡеит"
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Аформула атеқст"
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9618,7 +9673,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9627,121 +9682,121 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Иҵабыргуп "
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Иҵабыргӡам"
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Анапаҵаҩра ҵабыргӡам"
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Анапаҵаҩуп"
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Абзац анапаҵаҩра"
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Авизиттә картақәа"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Mail архиарақәа"
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Ианыхтәуп"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрибутқәа"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Иԥшаатәу аилкаа"
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Альтенативатә елемент"
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-тәи ацаԥха"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-тәи ацаԥха"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Акомментари"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Ҳасаб азутәуп арегистр"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Ажәа мацара"
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ааи"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Мап"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
@@ -9873,6 +9928,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr ""
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -20439,292 +20500,292 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr ""
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr ""
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr ""
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr ""
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr ""
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Адокумент"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr ""
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
#, fuzzy
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Иҧсахтәуп"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Ирҿыцтәуп"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Аҩада"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Алада"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
@@ -20767,181 +20828,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21996,20 +22057,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "Еиқәырхатәуп иаба(ишҧа)"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Shows the current saved format names."
msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr ""
+
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "Аформат"
@@ -22020,214 +22093,226 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr ""
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr "Ихадоу атеқст"
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr ""
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr ""
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr ""
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr ""
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr ""
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr ""
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr ""
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr ""
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr ""
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr ""
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "Аконтур"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
#, fuzzy
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "Мап"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "Иҧсахтәуп астиль"
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr ""
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
+msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr ""
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "Иалагатәуп ҿыц абри абзац аҟынтәи"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr ""
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
#, fuzzy
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "Амилаҭтә номерркра"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -28355,10 +28440,10 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr ""
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
+msgid "Specify the character style for the selected part on the Structure line."
msgstr ""
#. 5nWPi
@@ -28613,10 +28698,10 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr ""
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
msgstr ""
#. r33aA
diff --git a/source/ab/uui/messages.po b/source/ab/uui/messages.po
index 9f69426729f..3026841dfe7 100644
--- a/source/ab/uui/messages.po
+++ b/source/ab/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2021-02-12 17:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ab/>\n"
@@ -13,35 +13,35 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1529847183.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr ""
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr ""
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "$(ARG1) ыҟоуп."
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Ахықәкы ыҟоуп."
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -50,7 +50,7 @@ msgid ""
msgstr ""
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -63,289 +63,289 @@ msgid ""
msgstr ""
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr ""
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr ""
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr ""
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr ""
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr ""
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr ""
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr ""
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr ""
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr ""
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr ""
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr ""
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "$(ARG1) иаҵанакуеит изымуа асимволқәа."
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr ""
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr ""
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr ""
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr ""
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr ""
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "$(ARG1) иаҵанакуеит иахьахәҭам игылоу асимволқәа."
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "Ахьӡ $(ARG1) иаҵанакуеит инамыцхәны асимволқәа."
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "$(ARG1) ыҟаӡам."
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "$(ARG1) ахь амҩа ыҟаӡам."
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr ""
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "$(ARG1) каталогӡам."
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "$(ARG1) фаилӡам."
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr ""
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr ""
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr ""
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr ""
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr ""
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr ""
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "$(ARG1) хьчоуп аҭаҩразы."
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "Ииашам аформат $(ARG1). "
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "Ииашам аверсиа $(ARG1)."
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "Асанҭыр $(ARG1) ыҟаӡам."
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "Акаталог $(ARG1) ыҟаӡам."
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr ""
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr ""
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr ""
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr ""
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr ""
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr ""
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr ""
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr ""
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr ""
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr ""
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr ""
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr ""
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -359,13 +359,13 @@ msgid ""
msgstr ""
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "Афаил «$(ARG1)» аартреи аиҭашьақәыргылареи ауам."
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -373,7 +373,7 @@ msgid ""
msgstr ""
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -381,13 +381,13 @@ msgid ""
msgstr ""
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr ""
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -395,31 +395,31 @@ msgid ""
msgstr ""
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr ""
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr ""
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr ""
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr ""
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -427,7 +427,7 @@ msgid ""
msgstr ""
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -437,7 +437,7 @@ msgid ""
msgstr ""
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -446,7 +446,7 @@ msgid ""
msgstr ""
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -455,13 +455,13 @@ msgid ""
msgstr ""
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr ""
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -472,13 +472,13 @@ msgid ""
msgstr ""
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr ""
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -487,7 +487,7 @@ msgid ""
msgstr ""
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr ""
@@ -558,55 +558,55 @@ msgid "_Yes"
msgstr ""
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr "Афаил аартраз иҭажәгал ажәамаӡа: \n"
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr "Афаил аҧсахраз иҭажәгал ажәамаӡа: \n"
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "Иҭажәгал ажәамаӡа:"
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr "Ишьақәшәырӷәӷәа ажәамаӡа:"
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "Иқәыргылатәуп ажәамаӡа"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "Иҭажәгал ажәамаӡа"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr ""
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Адокумент ахархәара амоуп"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -615,19 +615,19 @@ msgid ""
msgstr ""
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Иаарттәуп"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -636,61 +636,61 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr ""
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "Еиқәырхатәуп"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr ""
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Ажәамаӡа гәынкылатәуп"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr ""
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Адокумент ахархәара амоуп"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -701,7 +701,7 @@ msgid ""
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -709,31 +709,31 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Иаарттәуп ~акопиа"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Идырым ахархәаҩ"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr ""
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -742,19 +742,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "Аиқәырхара иацҵатәуп"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Адокумент ахархәара амоуп"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -765,7 +765,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -776,19 +776,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr ""
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "Еиқәырхатәуп иаба(ишҧа)..."
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -796,7 +796,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -804,55 +804,55 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Афаил иашәҭ даҽа хьӡык!"
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Ииашам ажәамаӡа. Адокумент аартра ауам."
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Ииашам ажәамаӡа. Адокумент аҧсахра ауам."
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Ииашам ажәамаӡа-азҟаза."
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Ииашам ажәамаӡа."
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Ажәамаӡақәа еиқәшәаӡом."
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index 73f73ebf375..cd01ff3f08c 100644
--- a/source/ab/vcl/messages.po
+++ b/source/ab/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-02-07 23:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ab/>\n"
@@ -668,151 +668,139 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "Еиҭашьақәыргылатәуп"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr ""
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr ""
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "Аилыркаага"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr "Иҟаҵатәуп аекран ақәҭыхымҭа"
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "Иаарҧштәуп"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "Иҵәахтәуп"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "Иарктәуп адокумент"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "~OK"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "~Иаҟәыхтәуп"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "OK"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "Иаҟәыхтәуп"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "Ааи"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "М~ап"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "Аиҭаҟаҵара"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~Ацхыраагӡа"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
#, fuzzy
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "Иарктәуп"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "И~ҵегь"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "~Ибжьажьтәуп"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "Еиҧҟьатәуп"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "Иҵә~ахтәуп"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "Еиқәырхатәуп"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "~Иаарттәуп"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr "Аекран ақәҭыхымҭа"
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -820,361 +808,361 @@ msgid ""
msgstr ""
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "Апрограмма %PRODUCTNAME иазкны"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "Апараметрқәа..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "Иарбанзаалак атип"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr ""
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "Еиқәырхатәуп ажәамаӡа шацу"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr "Ишифррктәуп GPG ацаԥхала"
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "Афильтр апараметрқәа рыриашара"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "Аҧхьараз мацараз"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "Ибжьаргылатәуп азхьарҧш еиҧш"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "Ахәаҧшра"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
#, fuzzy
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "Идәықәҵатәуп"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "Аверсиа:"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "Астильқәа:"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
#, fuzzy
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "Адаҟьа астиль: "
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr ""
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "Алкаара"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "Иалхтәуп амҩа"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "Иалышәх аҭаӡ."
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "Афаил ахьӡ \"$filename$\" змоу ыҟоуп. Иалаԥсахтәума иара?"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr ""
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "Аформатқәа зегьы"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "Иаарттәуп"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "Еиқәырхатәуп"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "Афаил атип"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "Ашрифтқәа асистема аҟны иԥшаам."
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "Адаҟьақәа ыҟам"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr "Ахәаԥшра аҿыхуп"
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "Икьыҧхьтәуп афаил ахь..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "Иқәыргылоу апринтер"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "Иҭажәгал афакс аномер"
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Напыла"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr ""
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "АцП аишьҭацақәа: "
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "АоС "
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr "GL"
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr "Skia/Vulkan"
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr "Skia/арастр"
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
#, fuzzy
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "Астандарт"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Аинформациа"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "Агәаҽанҵара"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "Агха"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
#, fuzzy
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Архиара"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "ианыхтәуп ацәаҳәа"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "ианыхтәуп ацәаҳәақәа ҧыҭк"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "ибжьаргылатәуп ацәаҳәақәа ҧыҭк"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "иҭаргылатәуп '$1'"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "ианыхтәуп '$1' "
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ацәаҳәа: %1, Аиҵагыла: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Иҭацәу аҭакыра"
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "Амш"
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "Амчыбжь"
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Иахьа"
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Ашьаҿақәа"
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Ихиоуп"
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Анаҩс >"
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Шьҭахьҟа"
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ab/writerperfect/messages.po b/source/ab/writerperfect/messages.po
index 333e11ad16a..a50422117f3 100644
--- a/source/ab/writerperfect/messages.po
+++ b/source/ab/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2019-06-25 10:07+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,49 +16,49 @@ msgstr ""
"X-POOTLE-MTIME: 1561457225.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "Афаил аимпорт"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr "MS Multiplan афаил аимпорт DOS азы"
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr "MS Works афаил аимпорт"
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr "MS Write афаил аимпорт"
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr "MS Word DOS азы афаил аимпорт"
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "Lotus афаил аимпорт"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr "Symphony афаил аимпорт"
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr "Quattro Pro афаил аимпорт "
diff --git a/source/af/chart2/messages.po b/source/af/chart2/messages.po
index b1596bbad3b..44e54dada3c 100644
--- a/source/af/chart2/messages.po
+++ b/source/af/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: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-11 05:36+0000\n"
+"PO-Revision-Date: 2021-02-24 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/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.4\n"
"X-POOTLE-MTIME: 1560927888.000000\n"
#. NCRDD
@@ -1295,7 +1295,7 @@ msgstr "Dataetikette vir alle datareekse"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:107
msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Value as _number"
-msgstr ""
+msgstr "Waarde as 'n _Getal"
#. sDLeD
#: chart2/uiconfig/ui/dlg_DataLabel.ui:115
@@ -1307,7 +1307,7 @@ msgstr "Toon die absolute waarde van die datapunte."
#: chart2/uiconfig/ui/dlg_DataLabel.ui:126
msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Value as _percentage"
-msgstr ""
+msgstr "Waarde as _Persentasie"
#. 5Hp8E
#: chart2/uiconfig/ui/dlg_DataLabel.ui:134
@@ -1319,7 +1319,7 @@ msgstr "Vertoon die waarde van die datapunte in 'n kolom in persent."
#: chart2/uiconfig/ui/dlg_DataLabel.ui:145
msgctxt "dlg_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "_Kategorie"
#. oJGQF
#: chart2/uiconfig/ui/dlg_DataLabel.ui:153
@@ -1331,7 +1331,7 @@ msgstr "Toon die teksetikette van die datapunte."
#: chart2/uiconfig/ui/dlg_DataLabel.ui:164
msgctxt "dlg_DataLabel|CB_SYMBOL"
msgid "_Legend key"
-msgstr ""
+msgstr "_Legende sleutel"
#. 7WADc
#: chart2/uiconfig/ui/dlg_DataLabel.ui:172
@@ -1385,7 +1385,7 @@ msgstr "Nommerformaat vir persentasiewaarde"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:259
msgctxt "dlg_DataLabel|CB_DATA_SERIES_NAME"
msgid "_Series name"
-msgstr ""
+msgstr "_Reeksnaam"
#. 8bEui
#: chart2/uiconfig/ui/dlg_DataLabel.ui:268
@@ -1535,7 +1535,7 @@ msgstr "Kies die skeidingssimbool tussen verskeie teksstringe vir dieselfde obje
#: chart2/uiconfig/ui/dlg_DataLabel.ui:407
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "Attribuut Opsies"
#. gE7CA
#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
@@ -1595,7 +1595,7 @@ msgstr "Riglyne"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:642
msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabel"
msgid "Opens the Data Labels dialog, which enables you to set the data labels."
-msgstr ""
+msgstr "Open die Data-etikette dialoog, waarmee u die data-etikette kan instel."
#. bt7D7
#: chart2/uiconfig/ui/dlg_DataLabel.ui:661
@@ -3611,7 +3611,7 @@ msgstr "Kies 'n basiese kaarttipe."
#: chart2/uiconfig/ui/tp_DataLabel.ui:39
msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Value as _number"
-msgstr ""
+msgstr "Waarde as 'n _Getal"
#. uGdoi
#: chart2/uiconfig/ui/tp_DataLabel.ui:47
@@ -3623,7 +3623,7 @@ msgstr "Toon die absolute waarde van die datapunte."
#: chart2/uiconfig/ui/tp_DataLabel.ui:58
msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Value as _percentage"
-msgstr ""
+msgstr "Waarde as _Persentasie"
#. FcaPo
#: chart2/uiconfig/ui/tp_DataLabel.ui:66
@@ -3635,7 +3635,7 @@ msgstr "Vertoon die waarde van die datapunte in 'n kolom in persentasie."
#: chart2/uiconfig/ui/tp_DataLabel.ui:77
msgctxt "tp_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "_Kategorie"
#. EZXZX
#: chart2/uiconfig/ui/tp_DataLabel.ui:85
@@ -3647,7 +3647,7 @@ msgstr "Vertoon die teks-etikette van die datapunte."
#: chart2/uiconfig/ui/tp_DataLabel.ui:96
msgctxt "tp_DataLabel|CB_SYMBOL"
msgid "_Legend key"
-msgstr ""
+msgstr "_Legende sleutel"
#. Bm8gp
#: chart2/uiconfig/ui/tp_DataLabel.ui:104
@@ -3701,7 +3701,7 @@ msgstr "Nommerformaat vir persentasiewaarde"
#: chart2/uiconfig/ui/tp_DataLabel.ui:191
msgctxt "tp_DataLabel|CB_DATA_SERIES_NAME"
msgid "_Series name"
-msgstr ""
+msgstr "_Reeksnaam"
#. 3tWYv
#: chart2/uiconfig/ui/tp_DataLabel.ui:200
@@ -3851,7 +3851,7 @@ msgstr "Kies die skeidingssimbool tussen verskeie teksstringe vir dieselfde obje
#: chart2/uiconfig/ui/tp_DataLabel.ui:339
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "Attribuut Opsies"
#. avLCL
#: chart2/uiconfig/ui/tp_DataLabel.ui:391
@@ -5036,13 +5036,13 @@ msgstr "Aantal punte wat gebruik word om die bewegende gemiddelde tendenslyn te
#: chart2/uiconfig/ui/tp_Trendline.ui:320
msgctxt "tp_Trendline|label10"
msgid "_Type"
-msgstr ""
+msgstr "Soor_t"
#. P6TjC
#: chart2/uiconfig/ui/tp_Trendline.ui:325
msgctxt "tp_Trendline|extended_tip|label10"
msgid "How the trend line is calculated."
-msgstr ""
+msgstr "Hoe die tendenslyn bereken word."
#. ptaCA
#: chart2/uiconfig/ui/tp_Trendline.ui:378
@@ -5180,19 +5180,19 @@ msgstr "Opsies"
#: chart2/uiconfig/ui/tp_Trendline.ui:708
msgctxt "tp_Trendline|liststore_moving_type"
msgid "Prior"
-msgstr ""
+msgstr "Voorafgaande"
#. ZxUZe
#: chart2/uiconfig/ui/tp_Trendline.ui:711
msgctxt "tp_Trendline|liststore_moving_type"
msgid "Central"
-msgstr ""
+msgstr "Sentrale"
#. 4CBxe
#: chart2/uiconfig/ui/tp_Trendline.ui:714
msgctxt "tp_Trendline|liststore_moving_type"
msgid "Averaged Abscissa"
-msgstr ""
+msgstr "Gemiddelde Absis"
#. ntcUA
#: chart2/uiconfig/ui/tp_axisLabel.ui:19
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 01a241b3dfd..fd7a9e56f9d 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: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-20 19:53+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
"Language: af\n"
@@ -1913,248 +1913,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "By Woordeinde"
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "Stel geen rande"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "Stel slegs buiterand"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Stel buiterand en horisontale lyne"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Stel buiterand en alle binnelyne"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Stel buiterand sonder verandering van binnelyne"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Stel net diagonale lyne op"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "Stel al vier rande"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "Stel slegs linker- en regterrande"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Stel slegs boonste en onderste rande"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "Stel slegs linkerrand"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Stel boonste en onderste rande en alle binnelyne op"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Stel regter en linker rande en alle binnelyne op"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Geen skadu"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Gooi skaduwee na regs onder"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Gooi skaduwee na regs bo"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Gooi skaduwee na links onder"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Gooi skaduwee na links bo"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Onderteken deur: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle Lêers"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Geregistreerde Databasisse"
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "Die URL <%1> kan nie omgeskakel word na 'n lêersisteem pad nie."
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr "Kopiereg © 2000–2021 LibreOffice bydraers."
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dié vrystelling is verskaf deur %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice was gebaseer op OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME is afgeleide van LibreOffice, gebaseer op OpenOffice.org"
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "UI: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Redigeer paaie: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Etikettering"
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Bevel"
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Direkte Hulp"
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "Die URL of teks is te lank vir die huidige foutkorreksie vlak. Óf verkort die teks of verlaag die regstellingsvlak."
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "U kan alleen gebruiker-gedefineerde kleure skrap"
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Kies asseblief die kleur om te skrap"
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "Installeer"
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "Geïnstalleerd"
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "Installeer"
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "Soek..."
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "Laai..."
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "Toevoegings"
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "Pas toe op %MODULE"
@@ -2333,14 +2261,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr "Om die inhoud van 'n ander dokument in u dokument in \"Writer\" te vertoon, kies »Insert ▸ Section ... » en kliek die ' sLink'aan."
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
-msgstr "Om u tabelrye outomaties in \"Writer\" te nommer, kies die toepaslike kolom en pas 'n nommer-styl in die Lys Style toe."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
+msgstr "Om tabelrye outomaties te nommer in \"Writer\", kies die betrokke kolom en pas dan 'n lysstyl toe."
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2522,1071 +2451,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr "%PRODUCTNAME ondersteun vier vlakke van makro-beveiliging (van laag tot baie hoog) en betroubare bronne."
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr "%PRODUCTNAME is betrokke as 'n organisasie by \"Google Summer of Code(GSoC)\":"
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr "U kan ook teksgedeeltes en kommentare in \"Writer\" aanteken. Gebruik die sleutel-kombinasie »% MOD1 +% MOD2 + C«."
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr "Om een of meer paragrawe in \"Writer\" sonder knip-en-plak te skuif, gebruik% MOD1 +% MOD2 + op / af-pyltjie."
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr "Om die basiese lettertipe vir vooraf gedefinieerde sjablone of vir die huidige dokument in \"Writer\" te verander, kies »Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts« basiese lettertipes."
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr "Om woorde met 'n lengte van meer as 10 karakters te vind, kies »Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options...« merk blokkie: »Regular expressions«."
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Om 'n CSV-lêer as 'n nuwe blad in die huidige \"Calc\"-spreiblad dokument oop te maak, kies »Sheet ▸ Sheet insert from file...«."
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr "As u teks met vetdruk, kursief of onderstreep in \"Writer\" vir invoer het, kan u voortgaan met die standaard-attribute deur die sleutel-kombinasie [% MOD1 + Shift + X] te gebruik (verwyder direkte karakterformatering)."
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr "Om die inhoud van die knipbord as gewone teks in \"Writer\" te plak, gebruik %MOD1 +% MOD2 + Shift + V."
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr "Om die formaat van die voetnota in \"Writer\" aan te pas, kies »Tools ▸ Footnotes and Endnotes…«."
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr "Om skyfies in \"Impress\" te herrangskik of om skyfies te kies sodat die aanbieding aangepas is by die behoeftes van u gehoor, kies »Slide Show ▸ Custom Slide Show«."
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr "Om die speltoets vir 'n gedeelte van die teks te verander, klik op \"Taal\" van die statusbalk of beter pas 'n toepaslike sjabloon toe."
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr "\"Writer\" kan 'n leë bladsy tussen twee opeenvolgende onewe (/ewe) bladsye invoeg. Om dit te doen, kies »File ▸Print... « in die druk-dialoog-oortjie merk: %PRODUCTNAME en dan aktiveer die merkblokkie \"Print automatically inserted blank pages\"«."
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr "Versteek of groepeer die kolomme wat u nie nodig het om in \"Calc\" te druk nie."
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr "Om 'n AutoSpeel-aanbieding te wysig, moet u dit oopmaak, dan met begin daarvan, regter-muisklik en kies \"Edit\" in die konteks-kieslys."
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr "Vir objekte (vorms, beelde, formules) se presiese posisionering gebruik [% MOD2 + pyltjie sleutels] om dit pixel-gewys aan te skuif."
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr "Indien geïnstalleer, druk [F1] om ingebedde hulp te open, anders is die aanlynhulp beskikbaar:"
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr "Regs muis-klik op die statusbalk in %PRODUCTNAME \"Calc\" en kies \"Selection count\" om die geselekteerde selle te vertoon."
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr "Om twee of meer kolomme vir slegs 'n gedeelte van 'n bladsy in %PRODUCTNAME \"Writer\" te spesifiseer, kies »Insert ▸ Section...«. Kies Kolomme-oortjie en spesifiseer die aantal kolomme en plaas teks in hierdie gebied."
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr "Kies »Data ▸ Statistics« om steekproewe, beskrywende statistiek, variansie analise, korrelasie en veel meer met %PRODUCTNAME \"Calc\" te gebruik."
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr "U kan van die een tafel na die ander in \"Calc\" kopieer sonder die knipbord. Kies die gebied wat gekopieër moet word, hou die [% MOD1] -toets ingedrukt en klik op die blad van die teiken tabel en kies »Sheet ▸ Fill Cells ▸ Fill Sheets...«."
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr "Om die formaat van %PRODUCTNAME te verander, kies »Tools ▸ Options... ▸ View ▸ User Interface»."
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr "Om 'n aanbieding uit 'n reeks beelde met behulp van die \"Fotoalbum\" -funksie te maak, kies »Insert ▸ Media ▸ Photo Album« in %PRODUCTNAME Impress."
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 "Om formules in \"Calc\" in plaas van resultate te vertoon, kies »View View ▸ Show Formula« (of »Tools ▸ Options ... ▸%PRODUCTNAME Calc ▸ View ▸ Area: Display ▸ Checkbox: Formulas «)."
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr "%PRODUCTNAME word ontwikkel deur 'n gemeenskap van vriende, bestaande uit honderde ontwikkelaars van regoor die wêreld. Sluit aan met u vaardighede bobehalwe kodering."
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr "Sou u linkshandig wees, kies dan »Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian« en kies dan »Tools ▸ Options... ▸ %PRODUCTNAME \"Writer\" ▸ View ▸ Ruler ▸ Right-aligned«, waardeur die skuifbalk na die linkerkant gewys word."
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr "Om die hoofstuk-opskrifte in \"Writer\", altyd met 'n nuwe bladsy te begin, muisklik regs op die »Edit Heading1 (paragraafstyl)« in die style en kies »Verander ... ▸Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before«."
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr "Die datum / tydwaarde is bloot 'n aantal dae sedert die gespesifiseerde dag nul; die heelgetalgedeelte staan vir die datum en die breuk vir die tyd (verstreke deel van 'n dag), met 0,5 as die middaguur."
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr "»Shift +% MOD1 + Del« word in \"Writer\" van die wyser-posisie na die einde van die huidige sin verwyder."
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr "Gebruik kolom- of ry -etikette in formules in \"Calc\". As u byvoorbeeld twee kolomme het met 'Tyd' en 'km', voer Tyd / km in om minute per kilometer te kry."
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr "Om die \"opmarsende miere\" rondom selle in \"Calc\" te stop, druk die [Esc] -toets. Die gekopieerde inhoud bly beskikbaar vir plak."
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr "As u 'n ambassadeur vir %PRODUCTNAME wil word, is daar sertifiserings vir ontwikkelaars, administrateurs en opleiers."
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr "As u portret en landskap in \"Calc\"-sigblaaie wil meng, kan u verskillende bladsye op die individuele blaaie toepas."
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr "Klik vinnig op die spesiale karakter ikoon in die Standaard-balk om blits toegang tot voorkeur- of laaste spesiale -karakters te kry."
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr "Kies \"Hiërargiese aansig\" in die \"Styles\"-sybalk om die verband tussen die style te sien."
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr "U kan profiele gebruik om die tabelle in u \"Writer\"-dokument konsekwent te laat lyk. Kies een van die vooraf gedefinieerde profiel [F11] of »Table ▸ AutoFormat...«."
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr "Om die gebruik van die [% MOD1] -sleutel te konfigureer om hiperskakels te volg, kies \"Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options... ▸ Klik blokkie en hou in, op %MOD1 om hiperskakel te volg."
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr "Om die berekening van individuele elemente van 'n\" Calc\"-formule te sien, kies die ooreenstemmende elemente en druk [F9]."
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr "Om die selle in \"Calc\" te beskerm, kies » Format ▸ Cells ▸ Protection«. Om te voorkom dat tabelle ingevoeg, geskrap, hernoem, geskuif of gekopieër word, kies »Tools ▸ Protect Sheet...«."
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr "Om langs 'n kromme te skryf? Trek die kromme, dubbelklik daarop, voer die teks in en kies »Format ▸ Text Box« en »Shape ▸ Fontwork ...«."
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr "Om slegs die grootste waardes in 'n Calc-tabel te vertoon, kies \"Data ▸ Auto filter\", kliek dan af-pyl, en kies \"Top 10\" in die lys."
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr "Om die bladsynommer van u inhoudsopgawe in \"Writer\" te verwyder, gebruik »Invoeg ▸ Inhoudsopgawe en Indeks ▸ Inhoudsopgawe ...« (of klik met die regtermuisknop en wysig die voorheen ingevoegde indeks). Op die blad \"Inskrywings\", verwyder die bladsynommer (#) van die struktuurreël."
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr "In die Navigator van die Writer-dokument kan u kies 'n opskrif en sy onderstaande teks en dit op/af skuif."
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr "Om vinnig 'n formule-objek in Writer te skep, tik die formule-teks in, selekteer dit en kies \"Insert ▸ Object ▸ Formula ...\" om die teks te omvorm."
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr "% PRODUCTNAME maak dit maklik om 'n nuwe woordeboek te installeer: dit word gelewer as 'n uitbreiding."
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr "%PRODUCTNAME is ook beskikbaar as 'n draagbare weergawe vir u volle mobiliteit. Selfs sonder administrasieregte vir u rekenaar, kan u % PRODUCTNAME-Portable op u hardeskyf installeer."
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr "Met Writer kan u voetnote per bladsy, hoofstuk of dokument nommer: Kies »Ekstras ▸ Voetnote / Eindnotas ... ▸ Blad: Voetnote ▸ Rol-af lys: kies Counting«."
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr "Om u Writer-dokument oop te maak met die tekswyser op dieselfde verwerkingsposisie as waar u dit gestoor het, kies \"Tools ▸ Options ... ▸%PRODUCTNAME ▸ Gebruikergegewens\" en sorg dat een van voor- / agter-benaming nie leeg is nie."
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr "Vir Citation-bestuur gebruik 'n derdeparty-uitbreiding."
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr "Om 'n waarde op dieselfde plek in verskillende Calc-tabelle in te voeg, kies die tabelle deur die %MOD1-sleutel in te hou en op die ooreenstemmende tabel-tabs te klik voordat u die inskrywing doen."
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr "Om teks in 'n dokument te verberg, selekteer die teks, kies »Invoeg ▸ Area ...« en aktiveer die \"Verberg\"-merkerveld."
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr "U kan die middelste muisknoppie verstel onder »Ektras ▸ Opsies ... ▸% PRODUKTNAME ▸ Bekyk ▸ Af-kieslys: Middel-muisknop«."
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr "Om twee bladsye in portretformaat op een bladsy in landskapformaat te druk (verklein van A4 na A5), kies \"File ▸ Print ▸ Page Layout tab▸Layout\" en dan in die keuselys \"Pages per sheet\" kies dan \"2\"."
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr "Om vinnig toegang tot u boekmerke in Writer te kry, regter-muisklik op die bladsynommer in die statusbalk (links onder in die venster)."
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr "Om 'n voorwerp op die agtergrond van die dokument te kies, op die Teken-werkbalk gebruik die Seleksie-instrument om die voorwerp af te baken."
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr "Stel tekste wat gereeld in Writer gebruik word as AutoText. Plaas dit dan in elke Writer-dokument met die naam, kortpad of nutsprogram balk."
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr "As u musiektydens die hele aanbieding wil speel, ken die klank toe aan die eerste skyfie oorgang sonder om die \"Herhaal tot volgende klank\" -kiesblokkie te aktiveer."
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr "%PRODUCTNAME Calc bereken nie van links na regs nie, maar neem wiskundige volgorde in ag: hakies> eksponente> vermenigvuldiging> deling> optelling> aftrekking."
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr "Toegang tot die %PRODUCTNAME-dokumentasie en ook gratis handleidings is via:"
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr "Om alle <> gelyktydig te verwyder en die teks daarin te hou, kies »Redigeer ▸ Soek en vervang ... ▸ Soek: \" [<>] \"▸ Vervang: (maak leeg)« en aktiveer die merkblokkie in die »Ander opsies« -gebied \"Gereelde uitdrukkings\"."
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr "Om 'n verslag wat in Writer geskep is, aan te bied, kies: »File: ▸ Submit ▸ Outline to Presentation«, om outomaties 'n skyfievertoning vanaf die verslag te genereer."
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr "Om die vertoning van hiperskakels in Calc te skep, voeg dit met »Insert ▸ Hyperlink ...« in."
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr "Om te verseker dat elke tabel in Calc sy eie zoom-faktor het, onder »Ektras ▸ Opsies ... ▸ %PRODUCTNAME Calc ▸ View ▸ Scale« deaktiveer dan die \"Sinkroniseer tabelle\" -merkblok."
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr "Vir elke oortjie in Calc, kan u 'n kleur instel: met regtermuis-kliek op die oortjie, of kies »Tabel ▸ Kleur van die Tabel…«."
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr "Spoor die selle in Calc wat deur 'n formule in gebruik op: die roete na voorganger selle[Shift + F9] of die roete na afhanklike selle [Shift + F5] (of kies »Ekstras ▸ Detective«). Met elke uitvoering gaan jy 'n stap verder volg in die ketting."
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr "Om formules in Writer te nommer, tik \"fn\" en druk dan op F3. 'n Outoteks word ingevoeg met die formule en nommer ge-omlyn in 'n tabel."
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr "In Writer kan ook 'n gids met afbeeldings van objekname in plek van kortbekrywings geskep word."
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr "Gebruik u Android of iPhone as 'n afstandbeheer vir u Impress-aanbieding."
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr "Om die aantal dae in die huidige maand in Calc te vind,gebruik: \"=DAYSINMONTH(TODAY())\" funksie."
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr "As u nommers in u Calc-sigblad verskyn as ###, is die kolom te smal om al die syfers te kan toon."
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr "Vir massa parallelle berekeninge van formule-selle in Calc, aktiveer die merkblokkie onder »Ektras ▸ Opsies ... ▸ LibreOffice ▸ OpenCL«."
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr "Om vloeidiagramme in Draw / Impress te skep, gebruik die verbindings op die Toolbar en kopieë en plak die voltooide data-objek na Writer."
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr "U donasies ondersteun ons wêreldwye gemeenskap."
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr "Om in Calc, x maande tot 'n datum by te tel, voer in \"= EDATE(datum; maande)\"."
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr "Om 'n aaneenlopende reeks selle te selekteer wat data bevat en afgebaken is deur leë rye en kolomme, gebruik Calc %MOD1 + asterisk (*) (op die syfer-sleutelbord)."
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr "Om die datum aanvaardingspatroon in Calc aan te pas by u voorkeure, kies »Ekstras ▸ Opsies ... ▸ Taalinstellings ▸ Taal ▸ Datum aanvaardingspatroon« en werk by die gewenste patroon."
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr "Om formules van Calc uit te voer in CSV formaat, kies »Lêer ▸ Stoor as ... ▸ Tik dan in die volgende dialoog: Teks CSV«, aktiveer 'Bewerk filterinstellings' en aktiveer 'Stoor formules in plaas van berekende waardes' ."
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr "Probeer die Presenter Console, wat 'n uitstekende funksie is as u met %PRODUCTNAME Impress werk."
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr "Om verskeie opmerkings in Calc uit te vee, merk die selle met opmerkings en kies »Wysig ▸ Opmerkings ▸ Verwyder ...«."
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr "Omskep u dokumente in PDF's deur op die PDF-ikoon in die werkbalk te klik."
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr "Om 'n groot verskeidenheid selle in Calc te kies sonder om te blaai, tik die reikwydteverwysing (byvoorbeeld, A1: A1000) in die naamveld en druk Enter."
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr "Om die geldige opdragreëlparameters te leer ken, moet u office begin met --help, -h of -?"
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr "Om u tabel of u drukareas aan te pas by die bladsy in Calc, kies »Formaat ▸ Pagina ... ▸ Register: Tabel ▸ Afdeling: Skaal«."
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
-msgstr "Om 'n ongenommerde inskrywing in 'n lys in Writer in te voeg, gebruik die opsie \"Insert Entry Without Number\" op die paragraaf-kolle en numering-werkbalk."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgstr "Moet u 'n lys-item sonder 'n kolpunt of nommer insluit? Gebruik \"Voeg ongenommerde invoer in\" in die werkbalk vir \"Kolpunte en Nomering\"."
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr "Om die rigting van 'n \"Writer\"-tafel selle te draai, kies »Tabel ▸ Eienskappe ... ▸ Teksvloei ▸ Afloop keuselys: Teksoriëntasie«."
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr "Om in %PRODUCTNAME \"Draw\" die 0/0-punt van die liniale te verander, trek die kruising van die twee liniale na die hoek links bo, in die werkarea."
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr "Om 'n kolom in \"Calc\" tussen twee ander in een stap te skuif, muis-klik en hou die %MOD2-sleutel ingedruk terwyl u op 'n sel in die kolom klik en dit na die bestemming trek."
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr "Gebruik 'n konkordansielêer om al die gidsinskrywings outomaties alfabeties in \"Writer\" te merk."
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr "Om \"Draw/Impress\"-objekte akkuraat te posisioneer, kies »Format ▸ Align« of die konteks-kieslys: Dit is gesentreer op die bladsy wanneer 'n voorwerp, of op die groep gekies word respektiewelik."
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr "Moet nie tabs gebruik om in \"Writer\", elemente te spasieër nie. Afhangende van wat u beoog, is 'n beter gebruik 'n tabel sonder 'n raam."
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr "U hoef nie deur die lys onder »Ekstras ▸ Pas aan ... ▸ Tab: Toetsbord« te blaai, om 'n sleutelkombinasie te vind. Tik dit net in."
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr "Om %PRODUCTNAME outomaties 'n genommerde etiket by te voeg by die invoeg van data-objekte in \"Writer\", kies »Tools' ▸ Options ... ▸ %PRODUCTNAME Writer ▸ AutoCaption«."
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr "U kan met %PRODUCTNAME u Gmail-rekening gebruik om serie e-posse te stuur. Voer in u toegangsdata onder die keuse-item »Ekstras ▸ Opsies ... ▸ %PRODUCTNAME Writer ▸ Seriële e-pos«."
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr "Om die kolomopskrifte van 'n \"Calc\"-tabel sigbaar te hou wanneer u deur rye afwaarts blaai, kies »Bekyk ▸ Bevries selle ▸ Bevries eerste ry«."
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr "Kyk na die voorbeelde onder »Tools ▸ Macros ros Edit Macros ...« om met %PRODUCTNAME-makro's te begin werk."
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 "Pas die paragraafstyle in \"Writer\" toe op opskrifte deur %MOD1 + 1 vir Opskrif 1, %MOD2 + 2 vir Opskrif 2, ensovoorts te druk."
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr "Gebruik die \"Navigator\" (F5) om die inhoud van groot dokumente te vind."
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr "Om spesiale karakters direk in die dialoogvenster onder »Redigeer ▸ Vind en vervang ...« in te voeg, klik met die regter-muisknop in die invoerveld of druk [Shift + %MOD1 + S]."
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr "As u gepaste inhoud vir metadata-eienskappe in \"Writer\" benodig, kies dan »File ▸ Properties ... ▸ Tab: Custom Properties« en skep wat u daar wil hê."
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr "As u 'n skets in 'Draw' net wil sien, kies 'n laag waarin die 'Printable'-vlaggie nie gestel is nie (klik met die regtermuisknoppie op 'n Laag-oortjie en kies »Wysig laag ...«, en kies opsie »2«)."
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr "Om die huidige datum in u dokument in te voeg, kies »Invoeg ▸ Veld ▸ Datum«."
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr "Om die vertoon van u \"Writer\"-dokument vir baie beelde te bespoedig, deaktiveer »View ▸ Beelde en diagramme«."
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr "Om 'n ewekansige reeks in \"Calc\" te maak gebaseer op verskeie verdelings, kies »Tabel ▸ Vul selle ▸ Ewekansige getalle...«."
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr "U kan skyfies hernoem in \"Impress\" om makliker handelinge te definieer soos \"Gaan na bladsy\" en om 'n meer informatiewe opsomming te hê as skyfie 1, skyfie 2 ensovoorts."
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr "Om teks in te stel wat voor die hoofstuknummer in \"Writer\" verskyn, kies \"Ekstras ▸ Hoofstuknommering ... ▸ Tab: Nommering« en voeg in byvoorbeeld 'Hoofstuk', in die 'Voor'-veld in om as 'Hoofstuk 1' te vertoon."
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr "Om 'n \"Writer\"-tabel te transponeer, kopieer en dan plak dit in \"Calc\". Transponeer deur 'kopieer/plak spesiaal'. Kies »Edit ▸ Paste ▸ Paste Special ... ▸ (Knoppie): Transpose«. Laastens kopieer en plak terug as geformateerd in 'n \"Writer\"-tabel."
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr "Om in \"Writer\" die knoppie \"Vertikale teks\" op die tekenbalk te aktiveer, kies »Ekstras ▸ Opsies ... ▸ Taalinstellings ▸ Tale ▸ Verstek tale« en aktiveer die merkerveld 'Asiaties' (indien nodig, aktiveer die simbool deur met die rechtermuisknop op die werkbalk en \"Maak knoppies sigbaar\" te klik)."
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr "Om vinnig op 'n geselekteerde gebied in te zoom, met die regter-muisknop klik op die gebied Skaal in die statusbalk en kies Optimaal."
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr "Bestaande PDF-lêers kan onderteken word en hul handtekeninge nagegaan word."
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr "As u dikwels 'n dokument van 'n ander een maak om die formatering te hergebruik, moet u dit oorweeg om 'n sjabloon-dokument te gebruik."
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr "Om uit te vind vir watter selle voorwaardelike formatering in \"Calc\" gedefinieër is, kies »Formaat ▸ Voorwaardelike formatering ▸ Hersien ... «."
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr "Om in \"Calc\" alle selle in 'n tabel met waardes buite die geldigheidsreëls uit te wys, kies »Ekstras ▸ Detective ▸Omsirkel ongeldige data«."
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr "Gebruik font-inbedding vir beter interwerking met ander Office-toepassings, kies »File ▸ Eienskappe... ▸ Font«."
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr "U hoef nie 'n formule te kopieer en te plak om dit na statiese waardes te omskep nie; kies »Data ▸ Bereken ▸ Formule na Waarde«."
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr "In \"Writer\" kan u alle opmerkings in 'n dokument tegelyk herformateer deur op die afwaartse pyltjie in 'n opmerking te klik en kies \"Formateer alle opmerkings\"."
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr "Om in \"Calc\" dieselfde uitleg te gebruik vir die skermvertoning en drukwerk kies »Ekstras ▸ Opsies ... ▸ %PRODUKTNAME Bereken ▸ Algemeen ▸ Merkblokkie: 'gebruik drukkerdimensies vir teksformatering'«."
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr "Om 'n rugsteun te maak, kies »File ▸ Save a copy ...« en skep u 'n nuwe dokument. Werk dan voort met die oorspronklike."
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr "As u 'n sjabloon in \"Writer\" gebasseer op 'n ander een skep, kan u 'n persentasie- of puntwaarde invoer (byvoorbeeld 110% of -2 pt of + 5 pk)."
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr "Om slegs 'n opmerking in \"Calc\" te kopieer en om die inhoud van die teiken te behou, gebruik die \"Paste Special\"-opdrag, ontmerk alles in die dialoogvenster behalwe \"Comments\" en gebruik die \"Add\" -bewerking."
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr "Om u MS Office-dokumente in OpenDocument-formaat te omskep met behulp van die dokumentomskakelaar, kies »File ▸ Slimmerd ▸ Dokument Omskakelaar...«."
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr "Wanneer u 'n sel in \"Calc\" verander, kan u met regter-muisklik en dan kies van 'veld invoeg' opdragte soos datum, tabelnaam, dokumenttitel ens."
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr "Om die bladsynommer van u inhoudsopgawe in \"Writer\" te verwyder, kies »Invoeg ▸ Gids ▸ Gids ...« (of regter muisklik en wysig die voorheen ingevoegde gids). Op die blad \"Inskrywings\", verwyder die bladsynommer (#) van die struktuurreël."
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr "Kies »Ekstras ▸ Autotext... ▸ (knoppie): Outotext ▸ Import ...« om outotext-inskrywings vanaf 'n Word-dokument of sjabloon in te voer."
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr "In plaas daarvan om leë reëls in\"Writer\" in te voeg om twee paragrawe te skei, is dit beter om »Formaat ▸ Paragraaf... ▸ Register: Inkeping en spasies ▸ Oppervlakte: Spasiëring ▸ Eienskappe: Onder Paragraaf en Style« en die waarde daar te verander of die posisie self aan te pas by Paragraaf formateer."
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr "Om die voorafgaande nulle in \"Calc\" te kry, gebruik die voorstaande nulformaat opsie of formuleer die sel vooraf as teks formaat."
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr "Om terug te keer na die verstek-instellings in \"Writer\" nadat u enige lys-jabloon toegepas het, klik op Kolparagrawe / Genommerde lys Aan/Af op die formateer-balk."
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr "Om alle drukareas in \"Calc\" in een stap uit te vee, kies al die tabelle en kies dan »Formateer ▸ Drukareas ▸ Verwyder«."
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr "Om 'n agtergrondprent aan 'n \"Calc\"-tabel toe te voeg, kies »Insert ▸ Image...« of trek dit oor uit die Gallery in die tabel, en kies dan »Formaat ▸ Layout ▸ Op Agtergrond«."
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr "As u probleme ondervind om teks vanaf PDF-lêers of webblaaie in dokumente in te voeg, probeer om dit as gewone teks in te plaas ([%MOD1 + %MOD2 + Shift + V])."
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr "In \"Calc\" gebruik die funksie = GETRIMD.GEM() om die gemiddelde van 'n datastel te bepaal sonder die hoogste en laagste waardes."
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr "Die 4e opsionele parameters van die funksie VLOOKUP van \"Calc\", dui aan dat die eerste kolom met data is vooraf gesorteer. Sou dit nie die geval wees nie, gee ONWAAR of nul, aan."
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 "Nutsbalke is konteks sensitief, hull open volgens die konteks. As u dit nie wil hê nie, deaktiveer dit onder »View ▸ Toolbars«."
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr "U kan 'n hoofdokument uit die huidige \"Writer\"-dokument skep? »Lêer ▸ Stuur ▸ Skep hoofdokument« (subdokumente word geskep na gelang van die uitleg)."
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr "Om selle op 'n gedrukte bladsy in \"Calc\" te sentreer, kies »Format ▸ Page..., ▸ Tab:Page ▸ Gebied: Uitleginstellings ▸ Merkers: Tabelbelyning «."
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr "Rame kan op so 'n manier gekoppel word dat die teks van een na die ander kan vloei, soos by bladpublisering(DTP)."
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr "U kan 'n grafiek maak op grond van 'n \"Writer\"-tabel deur in die tabel te klik en »Invoeg ▸ Grafiek« te kies."
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr "Om te bepaal watter karakters nie in die \"Writer\" vertoon moet word nie, merk slegs die gewenste merkblokkies onder »Ekstras ▸ Opsies... ▸ %PRODUKTNAME-Writer ▸ Formateringshulpmiddels ▸ Area: Toon formatering«."
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr "Om na 'n spesifieke bladsy in \"Writer\" volgens sy nommer te spring, klik op die inskrywing links van die statusbalk, kies »Wysig ▸ Gaan na bladsy ...« of druk op [%MOD1 + G]."
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr "%PRODUCTNAME ondersteun meer as 150 tale."
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr "As u 'n ander program nodig het waarvan die venster voorop u aanbieding vertoon word, deaktiveer »Skyfievertoning ▸ Aanbiedingsinstellings ... ▸ Merkblokkie: Skyfievertoning altyd bo-aan«."
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 "Om woorde met vetdruk in 'n \"Writer\"-dokument te vind, kies »Redigeer ▸ Vind en Vervang... ▸ Mer Opsies ... ▸ Attribuut... Font dikte«."
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr "Met »Ekstras ▸ Sorteer ...« kan paragrawe of tabelrye in Writer alfabeties of numeries gesorteer word."
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr "Om 'n paragraaf voor (na) 'n afdeling in te voeg, druk [%MOD2 + Enter] aan die begin (einde) van die afdeling."
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr "%PRODUCTNAME het 'n sjabloonbestuurder om estetiese dokumente te skep - probeer dit."
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr "Bereken leningsterugbetalings in \"Calc\", byvoorbeeld = RMZ (2% / 12; 36; 2500) vir 'n rentekoers per periode van 2% / 12, 36 periodes en 'n leningsbedrag van 2500."
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr "As u nie met VLOOKUP wat u wil in \"Calc\" vind nie, het u INDEX en COMPARE onbeperkte moontlikhede."
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr "Om verborge kolom A in \"Calc\" te wys, klik in kolom B, hou die linkermuisknop ingedruk, skuif die muis na links na die ry nommer en laat die muisknoppie los. Kies dan »Formateer ▸ Kolomme ▸ Vertoon«."
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr "Om die bladsy nommer in \"Writer\" te verander, klik op die eerste paragraaf van die bladsy en kies »Formateer ▸ Paragraaf ... ▸ Tab: teksvloei ▸ Afdeling: breke ▸ Merkveld: Voeg-in« en voer die nommer in."
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr "Begin %PRODUCTNAME as rollApp in enige webblaaier."
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr "As u 'n vreemde foutkode in \"Calc\" sien, Fout: gevolg deur 'n nommer, gee die volgende bladsy die verklaring:"
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr "Om 'n paragraaf sonder titel in die inhoudsopgawe in \"Writer\" in te sluit, kies »Formaat ▸ Paragraaf ... ▸ Tab: Omlyn en numering«, en kies die vlak van die inskrywing wat u wil hê."
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr "Benewens die inhoudsopgawe, kan % PRODUCTNAME \"Writer\" ook gebruik word om sleutelwoorde, figure, tabelle, voorwerpe, literatuur en gebruikersgedefinieerde kaarte te skep."
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr "As u nie 'n gepasmaakte selstyl in \"Calc\" kan uitvee nie, kontroleer al die blaaie dat geeneen beskerm is nie."
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 "Nodig om 'n reeks te voltooi? Kies die selreeks en klik op \"Blad→Vul selle→Vul reeks\" en kies uit: Lineêr, Groei, Datum en Outovul."
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr "Om uit te vind of 'n sel in \"Calc\" 'n verwysing het in die formules van ander selle, kies »Ekstras ▸ Opspoorder ▸ Spoor na Afhanklike« [Shift + F5]."
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr "U kan die plekhouer .* gebruik, in die vervang-veld as 'n opsie vir outokorreksie."
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr "Om die bostaande lyn in \"Calc\" te verdubbel, druk [%MOD1 + D] of kies »Tabel ▸ Vul selle ▸ Afwaarts«."
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr "Om oor veelvuldige sprei-blaaie te soek, selekteer hulle voordat u met die soektog begin."
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr "'n Tabel word geskep deur selle van \"Calc\" in die normale veld van 'n skyfie in te trek en te laat val; in die oorsig, skep elke sel 'n reël in die skyfie."
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr "%PRODUCTNAME help u om twee of meer opeenvolgende spasies in \"Writer\" te skep. Kies »Ekstras ▸ AutoKorreksie ▸ AutoKorrek Opsies... ▸ Tab: Opsies ▸ Merk blokkie: Negeer dubbele spasies«."
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr "Gebruik die Tab-sleutel in plaas van die \"Enter\"-sleutel om na die regterkant na die sel te spring na die invoer van 'n waarde in \"Calc\"."
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr "Om die skuifbalk na links te vertoon in Writer, kies »Tools ▸ Options ... ▸ Taal Instellings ▸ Tale ▸ Merkboks: Kompleks Teks Uitleg« en kies dan »Table ▸ Right-to-Left«."
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr "As u 'n geformatteerde data-objek in die Styles-venster intrek, word 'n dialoogvenster oopgemaak waarin u die naam vir 'n nuwe sjabloon kan invoer."
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr "Nuwe %PRODUCTNAME-weergawes bevat nuwe funksies, foutoplossings en sekuriteitsregstellings. Hou u sagteware op datum!"
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr "U kan nuwe XSLT- en XML-filters ontwikkel."
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 "Druk <Shift>+<F1> om enige beskikbare aanvullende wenke in dialoogblokkies te sien, mits \"Aanvullende wenke\" nie geaktiveer is in \"Hulpprogram→Opsies→%PRODUCTNAME→Algemeen\"."
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr "%PRODUCTNAME Hulp"
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr "Verdere Informasie"
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr "Aktiveer die aksie nou..."
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr "Wenk van die Dag: %CURRENT/%TOTAL"
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr "⌘ Bevel"
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr "Ctrl"
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr "Alt"
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr "⌥ Opsie"
@@ -3597,41 +3520,41 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr "Standaard gebruikerskoppelvlak met keuselys, werkbalk en ingevoude sybalk. Bedoel vir gebruikers wat met die klassieke koppelvlak vertroud is."
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgstr "Die Tabbed-gebruikerskoppelvlak lyk soorgelyk aan bande wat in Microsoft Office gebruik word. Dit organiseer funksies in taboortjies en maak die hoofkieslys oorbodig."
+
+#. 8irik
+#: cui/inc/toolbarmode.hrc:24
+msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr "Standaard gebruikerskoppelvlak met 'n eenlynige werkbalk. Bedoel vir gebruik op kleiner skerms."
#. wKg2Q
-#: cui/inc/toolbarmode.hrc:24
+#: cui/inc/toolbarmode.hrc:25
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 "Standaard gebruikerskoppelvlak met uitgebreide sybalk. Ervare gebruikers wat vinnig baie verskillende eienskappe wil verander gebruik die koppelvlak."
-#. BoVy3
-#: cui/inc/toolbarmode.hrc:25
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
-msgstr "Die Tabbed-gebruikerskoppelvlak lyk soorgelyk aan bande wat in Microsoft Office gebruik word. Dit organiseer funksies in taboortjies en maak die hoofkieslys oorbodig."
-
#. qXq4A
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr "Die Tabbed-kompakte variant lyk soorgelyk aan die Microsoft Office koppelvlak, tog neem dit minder ruimte op kleiner skerms."
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
-msgstr "Die Groepstaaf kompakte koppelvlak bied toegang tot funksies in groepe, met ikone vir die mees gebruikte funksies, en die afwaartse keuselys vir ander. Hierdie kompakte variant benut vertikale ruimte."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgstr "Die Groepstaaf-koppelvlak bied toegang tot funksies in groepe, met ikone vir die mees gebruikte funksies, en keuselyste vir ander. Hierdie volledige variant bevotder funksies en is effens groter as ander."
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
-msgstr "Die Groepstaaf-koppelvlak bied toegang tot funksies in groepe, met ikone vir die mees gebruikte funksies, en keuselyste vir ander. Hierdie volledige variant bevotder funksies en is effens groter as ander."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgstr "Die Groepstaaf kompakte koppelvlak bied toegang tot funksies in groepe, met ikone vir die mees gebruikte funksies, en die afwaartse keuselys vir ander. Hierdie kompakte variant benut vertikale ruimte."
#. eGMCZ
#: cui/inc/toolbarmode.hrc:29
@@ -4521,19 +4444,19 @@ msgstr "Tik 'n afkorting gevolg deur 'n punt en klik dan op \"Nuut\". Diet verho
#: cui/uiconfig/ui/acorexceptpage.ui:67
msgctxt "acorexceptpage|autoabbrev"
msgid "Auto_Include"
-msgstr ""
+msgstr "Outo_Insluiting"
#. KRr5y
#: cui/uiconfig/ui/acorexceptpage.ui:73
msgctxt "acorexceptpage|autoabbrev"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
-msgstr ""
+msgstr "Voeg outomaties by die uitsonderingslys as outokorreksie onmiddellik ongedaan gemaak word."
#. 7qDG3
#: cui/uiconfig/ui/acorexceptpage.ui:76
msgctxt "acorexceptpage|extended_tip|autoabbrev"
msgid "Adds autocorrected abbreviations to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective when Capitalize first letter of every sentence option is selected in the [T] column on the Options tab of this dialog."
-msgstr ""
+msgstr "Voeg outo-gekorrigeerde afkortings by die lys van uitsonderings, sou die outokorreksie onmiddellik ongedaan gemaak word. Hierdie funksie is slegs effektief as die hoof eersteletter van elke sinopsie gekies word in die [T] -kolom op die tabblad Opsies van hierdie dialoog."
#. tpV8t
#: cui/uiconfig/ui/acorexceptpage.ui:103
@@ -4569,7 +4492,7 @@ msgstr "Afkortings (geen daaropvolgende hoofletter)"
#: cui/uiconfig/ui/acorexceptpage.ui:248
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
-msgstr ""
+msgstr "Tik die woord of afkorting wat begin met twee hoofletters of 'n klein voorletter wat u nie wil hê dat %PRODUCTNAME na een hoofletter moet verander nie. Voer byvoorbeeld PC in om te voorkom dat %PRODUCTNAME rekenaar na pc verander, of voer eBoek in om te voorkom dat 'n verandering in Eboek plaasvind."
#. kAzxB
#: cui/uiconfig/ui/acorexceptpage.ui:259
@@ -4581,13 +4504,13 @@ msgstr "O_utoInsluit"
#: cui/uiconfig/ui/acorexceptpage.ui:265
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
-msgstr ""
+msgstr "Voeg outomaties by die uitsonderingslys as outokorreksie onmiddellik ongedaan gemaak word."
#. 7u9Af
#: cui/uiconfig/ui/acorexceptpage.ui:268
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
-msgstr ""
+msgstr "Voeg outokorrigeerde woorde wat met twee hoofletters begin by die lys van uitsonderings, as die outokorrigering onmiddellik ongedaan gemaak word. Hierdie funksie is slegs effektief as die Korrigeer Twee Hoof Letters-opsie in die [T] -kolom op die tabblad Opsies in hierdie dialoog geselekteer is."
#. AcEEf
#: cui/uiconfig/ui/acorexceptpage.ui:295
@@ -13021,11 +12944,11 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Skeier"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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 "Tik 'n karakter of teks in wat u na die getalle in die lys wil laat verskyn. As u 'n nommerlys in die formaat \"1.)\" wil hê, voer dan \".)\" In hierdie veld in."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
+msgstr "Voer in 'n karakter of die teks, om agteraan die lys nommer te vertoon. Om die nommerskema \"1.)\" te skep, voer \".)\" In hierdie blokkie in."
#. wVrAN
#: cui/uiconfig/ui/numberingoptionspage.ui:532
@@ -14811,23 +14734,47 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Opsies"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr "Ongestoorde wysigings aan die tabblad sal teruggestel word."
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr "Herstel wysigings aan die huidige tabblad terug na die wat van toepassing was met die oopmaak van die dialoog."
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr "Stoor alle wysigings sonder om die dialoog te sluit. Daarna kan dit nie teruggestel word met \"Herstel\" nie."
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr "Stoor alle wysigings en sluit dialoog."
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr "Stoor alle wysigings en sluit die dialoog."
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr "Negeer alle ongestoorde wysigings en sluit die dialoogvenster."
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
-msgstr "Sluit die dialoog en verwerp alle wysigings."
+msgid "Closes dialog and discards all unsaved changes."
+msgstr "Sluit die dialoogvenster en negeer alle ongestoorde wysigings."
#. CgiEq
#: cui/uiconfig/ui/optjsearchpage.ui:31
@@ -21040,13 +20987,13 @@ msgid "_Next Tip"
msgstr "Volgende Wenk"
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Het u geweet?"
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Koppel"
@@ -21058,79 +21005,79 @@ msgid "Select Your Preferred User Interface"
msgstr "Kies u voorkeur gebruikerskoppelvlak"
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr "_Pas toe op Alles"
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr "_Pas toe op %MODULE"
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Standaard Werksbalk"
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
-msgstr "Tabblad"
+msgstr ""
+
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "Kompakte Tabblad"
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
-msgstr "Groepbalk"
+msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
-msgstr "Kompakte Groepbalk"
+msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Enkelvoudige Kontekslys"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Kontekstuele Groepe"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Enkelvoudige werkbalk"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Sybalk"
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr "Gebruikerskoppelvlak-Variante"
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr "Voorskou"
diff --git a/source/af/dbaccess/messages.po b/source/af/dbaccess/messages.po
index 48f35822d89..9e36e8995f7 100644
--- a/source/af/dbaccess/messages.po
+++ b/source/af/dbaccess/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-02-11 05:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-02-24 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/af/>\n"
"Language: af\n"
@@ -3254,7 +3254,7 @@ msgstr "Verstek Waarde"
#: dbaccess/uiconfig/ui/fielddescpage.ui:350
msgctxt "fielddescpage|STR_NUMERIC_TYPE"
msgid "_Type"
-msgstr "Tipe"
+msgstr "Soor_t"
#. Uym6E
#: dbaccess/uiconfig/ui/fielddescpage.ui:375
@@ -3347,13 +3347,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "Kies die soort databasis waaraan u wil verbind."
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "Soor_t databasis:"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/af/framework/messages.po b/source/af/framework/messages.po
index d13a54eaa1c..b56c046526a 100644
--- a/source/af/framework/messages.po
+++ b/source/af/framework/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-01-26 17:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-09 11:41+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/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.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547621548.000000\n"
#. 5dTDC
@@ -223,6 +223,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr "Tekstaal. Klik regs om die karakter- of paragraaftaal te stel."
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Teksveld"
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr "Merkblokkie"
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "Keuselys En Invoerkombinasie"
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr "Keuse Lysveld"
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr "Datumveld"
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr "Tydveld"
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr "Numeriese Veld"
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr "Geldbedragveld"
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr "Masker patroonveld"
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Geformateerde Veld"
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Drukknoppie"
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "Opsie Knoppie"
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Etiketveld"
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Groepveld"
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Grafiese Knoppie"
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Grafiese Beheerveld"
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Lêer Kieskontrole"
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr "Rolstaaf"
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr "Draaiveld"
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr "Navigasiebalk"
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
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 5ddff4c5682..d5179a644ea 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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-20 19:53+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/af/>\n"
"Language: af\n"
@@ -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.4.2\n"
"X-POOTLE-MTIME: 1560976865.000000\n"
#. W5ukN
@@ -1296,15 +1296,25 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "Merk onbeskermde selle"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
-msgstr "Selekteer slegs Sigbare Selle"
+msgid "Select Visible Rows Only"
+msgstr "Selekteer slegs Sigbare Rye"
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
+msgstr "Selekteer slegs Sigbare Kolomme"
#. LEvrC
#: CalcCommands.xcu
@@ -3176,15 +3186,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "Formateer ~bladsy..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "~Bladsy..."
+msgid "~Page Style..."
+msgstr "~Bladsy Styl..."
#. C83UC
#: CalcCommands.xcu
@@ -9456,6 +9466,26 @@ msgctxt ""
msgid "Layout"
msgstr "Uitleg"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr "Skaal"
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr "Skalering van huidige dokument"
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -20638,35 +20668,25 @@ msgctxt ""
msgid "Background Color"
msgstr "Agtergrondkleur"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
-msgstr ""
+msgstr "Karakter Beklemtoningskleur"
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
-msgstr ""
+msgid "Character Highlighting Color (in Text Box and Shapes)"
+msgstr "Karakter Beklemtoningskleur (In Teksvelde en Vorme)"
#. SPsxZ
#: GenericCommands.xcu
@@ -23388,15 +23408,15 @@ msgctxt ""
msgid "~Export As"
msgstr "Vo~er uit as"
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export as PDF"
+msgstr "Uitskryf as PDF"
#. YsFV2
#: GenericCommands.xcu
@@ -23418,15 +23438,15 @@ msgctxt ""
msgid "Export as PDF"
msgstr "Voer uit as PDF"
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export Directly as PDF"
+msgstr "Direk Uitskryf as PDF"
#. 8eSWp
#: GenericCommands.xcu
@@ -25508,15 +25528,15 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr "Datumkieser-Inhoud Beheer"
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
-msgstr "Ontwikkelingshulpprogram"
+msgid "Development Tools"
+msgstr "Ontwikkelingshulpmiddels"
#. jLF5j
#: GenericCommands.xcu
@@ -26098,15 +26118,15 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr "Opsionele geen breedte, afbreking"
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
-msgstr "Geen Breedte, geen afbreking"
+msgid "Word ~Joiner"
+msgstr "Woord ~ Verbinder"
#. UvwGS
#: GenericCommands.xcu
@@ -32546,7 +32566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No List"
-msgstr ""
+msgstr "Geen lys"
#. 3kGnA
#: WriterCommands.xcu
@@ -33378,6 +33398,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Herbegin nommering"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr "Skakel Herbegin van Nommer"
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33608,6 +33638,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "Merk paragraaf"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr "Selekteer Siklus"
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -33888,16 +33928,6 @@ msgctxt ""
msgid "Fields"
msgstr "Velde"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "Verligting Opvul"
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34206,7 +34236,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~List"
-msgstr ""
+msgstr "~Lys"
#. ZmR9V
#: WriterCommands.xcu
@@ -34348,15 +34378,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "Merkmodus"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "Gaan voort met vorige nommering"
+msgid "~Add to List"
+msgstr "Voeg ~Tot Lys"
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr "\"Voeg Tot Lys\" voeg die geselekteerde paragrawe by die onmiddelike voorafgaande lys."
#. oCEjg
#: WriterCommands.xcu
@@ -35026,7 +35066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "Nomering ABC Lys Styl"
#. uENeD
#: WriterCommands.xcu
@@ -35036,7 +35076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "Nomering ABC Lys Styl"
#. c6BjB
#: WriterCommands.xcu
@@ -35046,7 +35086,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "Nomering ABC Lys Styl"
#. uxkph
#: WriterCommands.xcu
@@ -35056,7 +35096,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "Nomering ABC Lys Styl"
#. Lcogs
#: WriterCommands.xcu
@@ -35066,7 +35106,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "Nomering abc Lys Styl"
#. fYB5d
#: WriterCommands.xcu
@@ -35076,7 +35116,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "Nommering abc Lys Styl"
#. UHSTJ
#: WriterCommands.xcu
@@ -35086,7 +35126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering IVX List Style"
-msgstr ""
+msgstr "Nommering IVX Lys Styl"
#. QwUVJ
#: WriterCommands.xcu
@@ -35096,7 +35136,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering IVX List Style"
-msgstr ""
+msgstr "Nommering IVX Lys Styl"
#. jXDLc
#: WriterCommands.xcu
@@ -35106,7 +35146,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering IVX List Style"
-msgstr ""
+msgstr "Nommering IVX Lys Styl"
#. Pe4gB
#: WriterCommands.xcu
@@ -35116,7 +35156,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ivx List Style"
-msgstr ""
+msgstr "Nommering ivx Lys Styl"
#. dHZMF
#: WriterCommands.xcu
@@ -35126,7 +35166,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering ivx List Style"
-msgstr ""
+msgstr "Nommering ivx Lys Styl"
#. ZSf5C
#: WriterCommands.xcu
@@ -35136,7 +35176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ivx List Style"
-msgstr ""
+msgstr "Nommering ivx Lys Styl"
#. EJceH
#: WriterCommands.xcu
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 223b30d4187..e7e2bd6e340 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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-01-30 14:58+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-09 11:41+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
"Language: af\n"
@@ -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.4.2\n"
"X-POOTLE-MTIME: 1560976792.000000\n"
#. kBovX
@@ -9138,7 +9138,7 @@ msgstr "Nommer 1, nommer 2, ... is numeriese argumente wat 'n steekproef voorst
#: sc/inc/scfuncs.hrc:1941
msgctxt "SC_OPCODE_PERCENTILE"
msgid "Returns the alpha percentile of a sample."
-msgstr ""
+msgstr "Lewer die alfakwantiel van 'n steekproef op."
#. KruQH
#: sc/inc/scfuncs.hrc:1942
@@ -9162,7 +9162,7 @@ msgstr "Alfa"
#: sc/inc/scfuncs.hrc:1945
msgctxt "SC_OPCODE_PERCENTILE"
msgid "The percentile value between 0 and 1, inclusive."
-msgstr ""
+msgstr "Die persentiel waarde tussen 0 en 1, inklusief."
#. pEFyv
#: sc/inc/scfuncs.hrc:1951
@@ -20712,11 +20712,11 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "Formule"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
-msgstr "Selekteer die manier waarop die maksimum ingestel word"
+msgid "Select the way the maximum is set"
+msgstr "Kies die stel wyse van die maksimum"
#. 5P3sd
#: sc/uiconfig/scalc/ui/databaroptions.ui:187
@@ -24734,231 +24734,231 @@ msgid "No solution was found."
msgstr "Geen Oplossing was gevind nie."
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Lêer"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hulp"
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Lêer"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
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:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Inspringing vergroot"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Inspringing verminder"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Begin"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Begin"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoeg"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoeg"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objek-belyning"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "~Uitleg"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Uitleg"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistiek"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Oorsig"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Beel~d"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teken"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teken"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omskakel"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "-Objek"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objek"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "-Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Uitbreiding"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Uitbreiding"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -31747,7 +31747,7 @@ msgstr "Invoer Opsies"
#: sc/uiconfig/scalc/ui/textimportoptions.ui:57
msgctxt "textimportoptions|keepasking"
msgid "Keep asking during this session"
-msgstr ""
+msgstr "Hou aan vrae vra tydens die sessie"
#. Ug4iB
#: sc/uiconfig/scalc/ui/textimportoptions.ui:102
diff --git a/source/af/scaddins/messages.po b/source/af/scaddins/messages.po
index ece5eeef429..f2c093fd366 100644
--- a/source/af/scaddins/messages.po
+++ b/source/af/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: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-01-26 17:37+0000\n"
+"PO-Revision-Date: 2021-03-09 11:41+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/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.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1516029011.000000\n"
#. i8Y7Z
@@ -1110,7 +1110,7 @@ msgstr "Die komplekse getal"
#: scaddins/inc/analysis.hrc:362
msgctxt "ANALYSIS_Impower"
msgid "Returns a complex number raised to a real power"
-msgstr "Lewer 'n komplekse getal met 'n heelgetal eksponent"
+msgstr "Lewer 'n komplekse getal met 'n reële getal eksponent"
#. vH6oX
#: scaddins/inc/analysis.hrc:363
@@ -1320,7 +1320,7 @@ msgstr "Nog 'n komplekse getal"
#: scaddins/inc/analysis.hrc:438
msgctxt "ANALYSIS_Imreal"
msgid "Returns the real coefficient of a complex number"
-msgstr "Die werklike koëffisiënt van 'n komplekse getal word teruggekeer"
+msgstr "Die reële koëffisiënt van 'n komplekse getal word teruggekeer"
#. eSUVX
#: scaddins/inc/analysis.hrc:439
@@ -1554,7 +1554,7 @@ msgstr "'n Komplekse getal"
#: scaddins/inc/analysis.hrc:531
msgctxt "ANALYSIS_Complex"
msgid "Converts real and imaginary coefficients into a complex number"
-msgstr "Skakel werklike en denkbeeldige koëffisiënte om in 'n komplekse getal"
+msgstr "Skakel reële en imaginêre koëffisiënte om in 'n komplekse getal"
#. sorkj
#: scaddins/inc/analysis.hrc:532
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 338f2fa9acd..c7eb21f5107 100644
--- a/source/af/sd/messages.po
+++ b/source/af/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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-01-26 17:37+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/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.4.2\n"
"X-POOTLE-MTIME: 1560928573.000000\n"
#. WDjkB
@@ -899,158 +899,164 @@ msgstr ""
"\n"
"Wil u die gekopieerde objekte skaal sodat dit by die nuwe bladsygrootte pas?"
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr "Skaalfaktor van die dokument; wysig dit met regs muisklik."
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "Skep Skyfies"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "Wysig bladsyformaat"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "Wysig bladsykantlyne"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "~Redigeer"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Skrap Skyfies"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "Die dokumentformaat kon nie op die gespesifiseerde drukker gestel word nie."
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeld lêer kan nie oopgemaak word nie"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeld lêer kan nie gelees word nie"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeld formaat"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Die Beeld Lêer weergawe word nie ondersteun nie"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeld filter was nie gevind nie"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "Nie genoeg geheue om die afbeelding in te voer nie"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Objekte"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "Speltoets op die hele dokument is voltooi."
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "Die speltoets op die geselekteerde objekte is voltooi."
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "Skakel geselekteerde objek na kurwe om?"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "Wysig voorleggingsobjek '$'"
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "Skyfie-uitleg"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr "Bladsy uitleg"
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "Voeg lêer in"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "Voeg spesiale karakter in"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "Pas voorlegginguitleg toe"
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "~Speel"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "St~op"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "Oorspronklike grootte"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1060,128 +1066,128 @@ msgstr ""
"Wil u 'n nuwe skaal invoer?"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "Geen aksie"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "Gaan na vorige skyfie"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "Gaan na volgende skyfie"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "Gaan na eerste skyfie"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "Gaan na laaste skyfie"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "Gaan na bladsy of objek"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "Gaan na dokument"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr "Speel audio"
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr "Begin objekaksie"
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "Laat loop program"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "Laat loop makro"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "Sluit voorlegging af"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "Teiken"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "Ak~sie"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr "Audio"
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "Skyfie / Objek"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "Program"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "Makro"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr "Vertoon: %s"
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1190,254 +1196,254 @@ msgstr[1] ""
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "Voeg teks in"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr "Laai Meester Skyfie"
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "Deftig"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "Links"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "Regs"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "Bokant"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "Onderkant"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "Bo links?"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "Onder links?"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "Bo regs?"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "Onder regs?"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "Horisontaal"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "Vertikaal"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "Almal?"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr "Hierdie aksie kan nie in die lewendige modus laat loop word nie."
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "Terug"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "Gaan voort"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "Oorsig"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "Kleurkeuse Pipet"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr "Oorkruisuitdowing"
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "Vou skyfie uit"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "Inhoudsopgaweskyfie"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr "Geen SANE-bron is tans beskikbaar nie."
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr "Geen TWAIN-bron is tans beskikbaar nie."
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "Vaste"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "Wisselend"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "Standaard"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "Standaard (kort)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "Standaard (lank)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "Lêernaam"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "Pad/lêernaam"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "Pad"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "Lêernaam sonder uitbreiding"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr "Nuwe doelgemaakte skyfievertoning"
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "Kopieer "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr "%PRODUCTNAME-aanbiedingsformaat (Impress 6)"
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr "% PRODUCTNAME teken formaat (Draw 6)"
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr "Ongroepeer metalêer(s)..."
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr "Al die tekenobjekte kon nie ontgroepeer word nie."
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr "%PRODUCTNAME %PRODUCTVERSION aanbieding"
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr "%PRODUCTNAME %PRODUCTVERSION \"Draw\""
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1447,157 +1453,157 @@ msgstr ""
"Wil u dit vervang?"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "Teks"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "Besoekte skakel"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "Aktiewe skakel"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "Notas"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "Inhoudsopgawe"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr "Kliek hier om te begin"
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr "E-pos"
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "Tuisblad"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr "Verdere inligting"
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "Laai voorlegging af"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr "U blaaier ondersteun ongelukkig nie swewende rame nie."
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "Eerste bladsy"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "Laaste bladsy"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "Teks"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Beeld"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "Met inhoud"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "Sonder inhoud"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "Na gegewe bladsy"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "Skakel biskaart om na veelhoek"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr "Kliek om voorlegging te verlaat..."
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "Pouse..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr "Pas 3-D gunsteling toe"
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "Afbeelding filter"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1607,829 +1613,829 @@ msgstr ""
"is nie 'n geldige klanklêer nie!"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "Skakel om na metalêer"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "Skakel om na biskaart"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "Die lêer $(URL1) kan nie geskep word nie."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "Die lêer $(URL1) kon nie geopen word nie."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr "Die lêer $(URL1) kon nie gekopieer word na $(URL2) nie"
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr "Naam van die foelie meester. Muis Regsklik op die lys en dubbelklik op die dialoog."
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "Hernoem skyfie"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr "Hernoem Bladsy"
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr "Duplikaat of leë name ontoelaatbaar"
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "Naam"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr "Hernoem Model Skyfie"
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr "Titelarea vir OutoUitleg"
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr "Objekarea vir OutoUitleg"
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "Voetstukarea"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "Kopstukarea"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "Datumarea"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "Skyfienommerarea"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "Bladsynommerarea"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<kopstuk>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<voetstuk>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<datum/tyd>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<nommer>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<count>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr "<skyfie-naam>"
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr "<bladsy-naam>"
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "Notasarea"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "Hangoel/Handja-omskakeling"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "Skyfies"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "Bladsye"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "Voorskou nie beskikbaar nie"
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "Berei tans voorskou voor"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "Uitlegte"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr "Tekening profiele"
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "Aanbiedingsprofiele"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "Selstyle"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr "Vorm %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr "Stel agtergrondprent..."
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "Opmerkings"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "Herstel Skyfie Uitleg"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "Voeg tabel in"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "Voeg grafiek in"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "Voeg Beeld in"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "Voeg Audio of Video in"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "Trek en Neersit Bladsye"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "Trek en Neersit Skyfies"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "Voeg Beelde in die Album."
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "Teks Skyfie"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr "Die plaaslike teiken vouer '%FILENAME' is nie leeg nie. Sommige lêers kan oorskryf word. Wil u voortgaan?"
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "Agtergrond"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "Agtergrondobjekte"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "Uitleg"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr "Kontroles"
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr "Dimensielyne"
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "Skyfie"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "Bladsy"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "Skyfie"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr "Meester Skyfie"
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr "Meester Skyfie:"
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Meester Skyfie"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr "Meester Bladsy:"
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Notas)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Uitdeelstukke"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Kliek om die titelteksformaat te redigeer"
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Kliek om die skemateksformaat te redigeer"
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr "Wysig die titelformaat deur dubbel te klik"
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr "Wysig die buiteteks formaat deur te dubbelklik"
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Tweede skemavlak"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Derde skemavlak"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Vierde skemavlak"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Vyfde skemavlak"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Sesde skemavlak"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Sewende skemavlak"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Kliek om die skyfie te verplaas"
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Kliek om die notaformaat te redigeer"
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr "Verskuif die skyfie met 'n dubbelklik"
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr "Dubbel-klik om die notas te redigeer"
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "Klik om ’n titel by te voeg"
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Klik om teks by te voeg"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Klik om teks by te voeg"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "Kliek om Notas by te voeg"
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr "Dubbel-kliek om Titel by te voeg"
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr "Dubbel-kliek om Teks by te voeg"
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr "Dubbel-kliek om Teks by te voeg"
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr "Tik om teks te redigeer"
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr "Dubbel-kliek om Notas by te voeg"
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "Dubbel-kliek om Beeld by te voeg"
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "Dubbel-kliek om Objek by te voeg"
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "Dubbel-kliek om Diagram by te voeg"
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "Dubbel-kliek om om Organisasie Kaart by te voeg"
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "Dubbel-kliek om Sprei-blad by te voeg"
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Verstek"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Titel"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr "Verstek Teken Styl"
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Verplaas skyfies"
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr "Voeg Bladsye in"
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr "Voeg Bladsy in"
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr "Skyfie Eienskappe"
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Objek sonder agtergrond"
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "Objek met geen vul of omlyning"
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Teks"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr "A4"
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr "Titel A4"
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr "Opskrif A4"
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr "Teks A4"
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr "A0"
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr "Titel A0"
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr "Opskrif A0"
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr "Teks A0"
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr "Afbeelding"
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr "Vorms"
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr "Lyne"
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr "Pyllyn"
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr "Gestippelde lyn"
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr "Gevul"
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr "Blou gevul"
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr "Groen gevul"
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr "Geel gevul"
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr "Gevul rooi"
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr "Omlyn"
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr "Blou Omlyn"
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr "Groen Omlyn"
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr "Geel Omlyn"
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr "Rooi Omlyn"
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Titel"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Subtitel"
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Skema"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Agtergrondobjekte"
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Agtergrond"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Notas"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint-invoer"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Stoor dokument"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Banding van sel"
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Kop"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Totaalreël"
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Eerste kolom"
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Laaste kolom"
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "Verkleinde Font grootte"
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "Vergrote Font grootte"
@@ -2437,628 +2443,628 @@ msgstr "Vergrote Font grootte"
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Tekeningaansig"
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Tekeningaansig"
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Skema-aansig"
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Skyfiesaansig"
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Dit is waar jy skyfies sorteer."
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Nota-aansig"
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Uitdeelstuk-aansig"
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Aanbieding Titel"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "Aanbieding Omlyning"
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "Aanbieding Subtitel"
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Aanbieding Bladsy"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Aanbieding Notas"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Uitdeelstuk"
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "Onbekende Toeganklike Aanbiedingsvorm"
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "Aanbiedingsbladsy Voetstuk"
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "Aanbieding Voetstukvorm"
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Aanbieding Kopstuk"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "Aanbieding Datum en Tyd"
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "Aanbieding BladsyNommer"
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME-voorlegging"
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Titel"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Skema"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Subtitel"
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Bladsy"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Notas"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Uitdeelstuk"
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "Onbekende Toeganklike Aanbiedingvorm"
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Voet"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Kop"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Datum"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Nommer"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(leesalleen)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "geen"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "Tot volgende kliek"
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "Tot einde van skyfie"
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "Rigting:"
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Zoom"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "Animasie Helde:"
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Eerste kleur:"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "Tweede kleur:"
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "Volkleur:"
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Styl:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Font"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Font Kleur:"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Styl:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Lettertipe:"
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Lynkleur:"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Fontgrootte:"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Grootte:"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Hoeveelheid:"
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Kleur:"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(Geen klank nie)"
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(Stop vorige klank)"
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Ander klank..."
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Monster"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Sneller"
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "Gebruikerspaaie"
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr "Ingang: %1"
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "Benadruk: %1"
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "Uitgang: %1"
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "Animasie Paaie: %1"
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr "Diverse: %1"
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "Geen"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Vandag,"
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Gister,"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(geen outeur)"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress het die einde van die voorlegging bereik. Wil u verder aan die begin soek?"
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress het die begin van die voorlegging bereik. Wil u verder aan die einde soek?"
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw het die einde van die dokument bereik. Wil u verder aan die begin soek?"
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw het tot aan die begin van die dokument gesoek. Wil u verder aan die einde soek?"
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Voeg opmerking in"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Skrap opmerking(s)"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Skuif opmerking"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Redigeer opmerking"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Antwoord aan%1"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Media-terugspeel"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Tabel"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Dokument"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr "Skyfies per bladsy:"
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr "Volgorde:"
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Inhoud"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Skyfie Naam"
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Bladsynaam"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Datum en tyd"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Versteekde bladsye"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Kleur"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Grootte"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Brosjure"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Bladsy Rande"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Sluit in"
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "Gebruik slegs die papierrak met die drukkerinstellings"
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr "Bladsye:"
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr "Skyfies:"
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress het tot aan die einde van die voorlegging gesoek. Wil u verder soek aan die begin?"
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress het tot aan die begin van die voorlegging gesoek. Wil u verder soek aan die einde?"
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw het tot aan die einde van die dokument gesoek. Wil u aan die begin voortgaan?"
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw het tot aan die begin van die dokument gesoek. Wil u verder soek aan die einde?"
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr "Animasie"
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Skakel"
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
-msgstr ""
+msgstr "~Volgende"
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
-msgstr ""
+msgstr "Vo~rige"
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
-msgstr ""
+msgstr "~Eerste Skyfie"
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
-msgstr ""
+msgstr "~Laaste Skyfie"
#. xNozF
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
@@ -9338,7 +9344,7 @@ msgstr "Gaan na Skyfie"
#: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38
msgctxt "slidecontextmenu|pen"
msgid "Mouse Pointer as _Pen"
-msgstr ""
+msgstr "Muis Merker as _Pen"
#. TXPqW
#: sd/uiconfig/simpress/ui/slidecontextmenu.ui:46
@@ -9503,139 +9509,139 @@ msgid "Sound:"
msgstr "Klank:"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "Geen klank"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "Stop vorige klank"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "Ander klank..."
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr "Lys die klankgreep wat tydens die skyfieoorgang gespeel kan word."
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "Herhaal tot volgende klankgreep"
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr "Aktiveer om die klankgreep herhaaldelik te speel totdat 'n ander klankgreep begin."
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "Variant:"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr "Kies 'n variant van die oorgang."
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "Wysig oorgang"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "Op muiskliek"
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr "Aktiveer om met 'n muis klik na die volgende skyfie te gaan."
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
-msgstr "Automaties daarna:"
+msgid "After:"
+msgstr "Daarna:"
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "Kies die opsie om na 'n aantal sekondes na die volgende skyfie te wissel. Voer die aantal sekondes in langsaan of direk met die draai-blokkie."
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "Kies die opsie om na 'n aantal sekondes na die volgende skyfie te wissel. Voer die aantal sekondes in langsaan of direk met die draai-blokkie."
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "Wissel skyfie"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr "Oorgang toepas op alle skyfies"
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr "Pas die geselekteerde skyfoorgang toe op alle skyfies in die huidige aanbiedingsdokument."
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Automatiese Voorskou"
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr "Aktiveer om die skyfie-oorgange outomaties in die dokument te vertoon."
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Speel"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "Effek voorskou"
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr "Vertoon die huidige skyfie-oorgang as 'n voorskou."
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr "Spesifiseer die spesiale effek vir die vervaging van 'n skyfie in die skyfievertoning."
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 7c5769e37be..e15ff48065c 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-20 19:53+0000\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
+"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.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.4.2\n"
"X-POOTLE-MTIME: 1560975251.000000\n"
#. bHbFE
@@ -859,11 +859,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Geen"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "Beeld"
+msgstr "Afbeelding"
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1655,12 +1655,12 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sluit Paneel."
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
-msgstr "Verstek Sjablone 1"
+msgid "Grey Elegant"
+msgstr "Grys Elegant"
#. FkuLG
#: include/sfx2/strings.hrc:300
@@ -1680,17 +1680,17 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Bloudruk Planne"
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
-msgstr " "
+msgid "Candy"
+msgstr "Bonbon"
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
-msgstr ""
+msgid "Yellow Idea"
+msgstr "Geel Motief"
#. QDNuB
#: include/sfx2/strings.hrc:305
@@ -1710,11 +1710,11 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Woudvoël"
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
-msgstr ""
+msgid "Freshes"
+msgstr "Verfrissend"
#. C5N9D
#: include/sfx2/strings.hrc:309
@@ -1728,11 +1728,11 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ligte"
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
-msgstr ""
+msgid "Growing Liberty"
+msgstr "Florerende Vryheid"
#. xo2gC
#: include/sfx2/strings.hrc:312
@@ -1776,11 +1776,11 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Vordering"
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
-msgstr ""
+msgid "Sunset"
+msgstr "Sonsondergang"
#. 73Y2e
#: include/sfx2/strings.hrc:320
@@ -2280,6 +2280,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "Etikette"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr "Teksgedeelte %1"
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr "Paragraaf %1"
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr "Vorm %1"
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr "Pagina %1"
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr "Skyfie %1"
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr "Model Skyfie %1"
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr "Blad %1"
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr "Vorms"
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr "Diagramme"
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr "Spiltabelle"
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr "Dokument"
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr "Blaaie"
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr "Style"
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr "Skyfies"
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr "Model Skyfies"
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr "Pagina's"
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr "Paragrawe"
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr "Tabelle"
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr "Rame"
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr "Grafiese Objekte"
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr "Ingeslote Objekte"
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr "Waar"
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr "Vals"
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr "Vakant"
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr "Onbekend"
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr "objek"
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr "struktuur"
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr "genommer"
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr "volgorde"
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr "benoemde stoor"
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr "indeks stoor"
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr "nommering"
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr "[in]"
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr "[uit]"
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr "[in&uit]"
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr "kenmerk"
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr "verkry"
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr "stel"
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr "moontlik ongeldig"
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr "lees-alleen"
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr "skryf-alleen"
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr "verwyderbaar"
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr "gebonde"
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr "beperk"
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr "verbygaande"
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr "moontlik dubbelsinnig"
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr "kan verstekwaarde wees"
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr "<Volgorde [%1]>"
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr "<Object@%1>"
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr "<Struct>"
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2628,11 +2928,11 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr "Hier kan u aan u dokument gebruikergedefinieerde velde toewys."
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
-msgstr "Sluit Sybalkpaneel"
+msgstr "Sluit Sybalk"
#. pxEPn
#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
@@ -2689,90 +2989,156 @@ msgid "Contains descriptive information about the document."
msgstr "Bevat beskrywende inligting oor die dokument."
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr "Objek"
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr "Huidige seleksie in die dokument"
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
-msgstr "Huidige Seleksie"
+msgstr "Huidige seleksie"
+
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr "Hervertoon die Dokument Boomstruktuur."
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr "Vernuwe"
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr "Terug"
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr "Terugkeer"
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr "Inspekteer"
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr "Inspekteer"
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr "Vernuwe"
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr "Vernuwe"
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr "Klas Naam:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
-msgstr ""
+msgstr "Naam"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
-msgstr ""
+msgstr "Koppelvlakke"
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
-msgstr ""
+msgstr "Dienste"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr "Waarde"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
msgstr "Tipe"
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr "Inligting"
+
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
-msgstr ""
+msgstr "Eienskappe"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
-msgstr ""
+msgstr "Metode"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
-msgstr ""
+msgstr "Resultaat Datatipe"
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
-msgstr ""
+msgstr "Parameters"
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
-msgstr ""
+msgstr "Implementasie Klas"
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
-msgstr ""
+msgstr "Metodes"
+
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr "Inspekteer"
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
@@ -3932,9 +4298,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr "Spesifiseer die druk opstellings."
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Meer Opsies"
diff --git a/source/af/starmath/messages.po b/source/af/starmath/messages.po
index 021e1983d0d..e0fa34f5fe4 100644
--- a/source/af/starmath/messages.po
+++ b/source/af/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548164561.000000\n"
#. GrDhX
@@ -491,2209 +491,2209 @@ msgstr "_Ja"
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ Teken"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- Teken"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- Teken"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ Teken"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Boolese NIE"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Optel +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Aftrek -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Vermenigvuldiging (punt)"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Vermenigvuldiging (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Vermenigvuldiging (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Deling (solidus)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Deling (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Deling (breuk)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr "Breuk"
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Punt Deling"
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Dot Vermenigvuldiging"
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Omsirkelde Minus"
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Omsirkelde Plus"
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Tensor Produk"
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Boolese EN"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Boolese OF"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Is gelyk"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Is nie gelyk"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Is minder as"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Is groter as"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is minder as of gelyk aan"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is groter as of gelyk aan"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Is minder as of gelyk aan"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Is groter as of gelyk aan"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Is heelwat Kleiner"
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Is heelwat groter as"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Is gedefineerd as"
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Is kongruent aan"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Is ongeveer gelyk"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Is soortgelyk aan"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Is soortgelyk of gelyk aan"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Is proporsioneel aan"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Is ortogonaal aan"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Is parallel aan"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Na"
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Ooreenstemmende Afbeelding"
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Stem Ooreen met (Regs)"
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Is in"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Is nie in"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Besit"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Vereniging"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Snyding"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Verskil"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr "Kwosiëntstel"
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Substel"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Substel of gelyk aan"
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Superstel"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Superstel of gelyk aan"
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Nie substel"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Nie substel of gelyk aan"
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Nie superstel"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Nie superstel of gelyk aan"
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Algemeen oor funksie"
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Absolute waarde"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Faktoriaal"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Vierkantswortel"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-de wortel"
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Eksponensiële funksie"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Eksponensiële funksie"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Natuurlike logaritme"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Logaritme"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Sinus"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Kosinus"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tangens"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Kotangens"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Boogsinus"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Boogkosinus"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Boogtangens"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Boogkotangens"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Hiperboliese sinus"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Hiperboliese kosinus"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Hiperboliese tangens"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Hiperboliese kotangens"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Areahiperboliese sinus"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Areahiperboliese kosinus"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Areahiperboliese tangens"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Areahiperboliese kotangens"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Algemeen oor operatore"
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Algemeen operator Voetskrif Onder"
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Algemeen operator Boskrif Bo"
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Algemeen operator Bo/Voet-skrif"
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Som"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Som van onderste Grense"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Som van Boonste Grense"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Som van Sup/Sub Grense"
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Produk"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Produk van Onderste Grense"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Produk van Bogrense"
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Produk van Onder en Bo Grense"
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Ko-produk"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Koproduk van onderste Grense"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Koproduk van Bo Grense"
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Koproduk van Sup/Sub Grense"
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Lemmetjies"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Limes met Voetskrif"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limiet Superior"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limiet van Sup/Sub Grense"
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Limiet Inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Limiet Inferior van Onder Grense"
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Limiet Inferior van Bo Grense"
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Limiet Inferior Sup/Sub Grense"
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Limiet Superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Limiet Superior van Onder Grense"
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Limiet Superior van Bo Grense"
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Limiet Superior van Sup/Sub Grense"
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Daar bestaan"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Daar bestaan nie"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Vir alle"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integraal"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integraal van Onder Grense"
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integraal van Bogrense"
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integraal Sup/Sub Grense"
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Dubbele integraal"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Dubbel Integraal van Onder Grense"
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Dubbel Integraal van Boonste Grense"
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Dubbel Integraal Sup/Sub Grense"
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Driedubbele integraal"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Trippel Integraal van onder Grense"
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Trippel Integraal van Bo Grense"
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Trippel Integraal van Onder en Bo Grense"
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Kurwe-integraal"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Kurwe Integraal van Onder Grense"
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Kurwe Integraal van Bo Grense"
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Kurwe Integraal van Sup/Sub Grense"
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Dubbelkurwe-integraal"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Dubbel Lyn Integraal met Onder-Grens"
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Dubbel Lyn Integraal met Bo-Grens"
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Dubbel Lyn Integraal met Bo- Onder-Grens"
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Driedubbelekurwe-integraal"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Trippel Lyn Integraal met Onder-Grens"
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Trippel Lyn Integraal met Bo-Grens"
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Trippel Lyn Integraal met Onder-/Bo-Grens"
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Akuutaksent"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Reël bo"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Brevis"
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Omgekeerde sirkumfleks"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Sirkel"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Stippel"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Dubbele punt"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Driedubbele punt"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Gravisaksent"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Sirkumfleks"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Slangetjie"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vektorpyl"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Harpoen"
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Reël onder"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Reël oor"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Reël deur"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Deursigtig"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Vetskriffont"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Skuinsskriffont"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Herskaleer"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Verander font"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Tekenkleur Swart"
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Tekenkleur Blou"
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Tekenkleur Groen"
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Tekenkleur Rooi"
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr "Kleur Aqua"
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr "Kleur Fuchsia"
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Tekenkleur Grys"
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Tekenkleur Lemmetjie Groen"
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Tekenkleur Donkerrooi"
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Tekenkleur Donkerblou"
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Tekenkleur Olyf"
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Tekenkleur Pers"
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Tekenkleur Silwer"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Tekenkleur Turkoois"
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Tekenkleur Geel"
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Kleur RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr "Kleur RGBA"
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr "Kleur heksadesimaal"
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr "Kleur: Koraal"
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr "Kleur: Bloedrooi"
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr "Kleur: Nagblou"
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr "Kleur: Violet"
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr "Kleur: Oranje"
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr "Kleur: Oranjerooi"
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr "Kleur: Seegroen"
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr "Kleur: Indigo"
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr "Kleur: Skelpienk"
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr "Kleur: Laventel"
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr "Kleur: Sneeu"
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Groephakies"
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Ronde hakies"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Vierkanthakies"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Dubbele vierkanthakies"
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Krulhakies"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Hoekhakies"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Oprond Bogrens"
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Afrond Drempel"
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Enkelreëls"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Dubbelreëls"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Bewerkinghakies"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Ronde hakies (skaleerbaar)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Vierkanthakies (skaleerbaar)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Dubbele vierkanthakies (skaleerbaar)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Krulhakies (skaleerbaar)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Hoekhakies (skaleerbaar)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Oprond Grens (skaleerbaar)"
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Afrond Drempel (skaleerbaar)"
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Enkelreëls (skaleerbaar)"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Dubbele reëls (skaleerbaar)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Bewerkinghakies (skaleerbaar)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Ge-evalueer Op"
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Krulhakies bo (skaleerbaar)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Krulhakies onder (skaleerbaar)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr "Evalueer"
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr "Evalueer Voetskrif Onderaan"
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr "Evalueer hoofdteks bo-aan"
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr "Evalueer Hoofd/Voet-teks"
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subskrif regs"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Mag"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subskrif links"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superskrif links"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subskrif onder"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superskrif bo"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Klein gaping"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Blanko"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Nuwe reël"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Vertikale stapel (2 elemente)"
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Vertikale stapel"
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matriksstapel"
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Belyn links"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Belyn middel"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Regsbelyn"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Alef"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Leë stel"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Reële deel"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Skyndeel"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Oneindig"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Gedeeltelik"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Laplace transformasie"
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Fourier transformasie"
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr "Omgedraaide epsilon"
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass-p"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Punte in die middel"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Punte tot bo"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Punte skuins na onder"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Punte onder"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Punte vertikaal"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Aaneenskakel"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Deling (solidus onderverdeling)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Terug Skuinsstreep"
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Deel"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Deel nie"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Dubbelpyltjie links"
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Dubbelpyltjie links en regs"
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Dubbelpyltjie regs"
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Natuurlikegetalle-stel"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Heelgetalstel"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Stel rasionale nommers"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Versameling reële getalle"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Stel komplekse nommers"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Groot sirkumfleks"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Groot tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Groot vektorpyl"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Groot Harpoen"
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h-balk"
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda-balk"
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Linkspyl"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Regspyl"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Oppyl"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Afpyl"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "geen vry spasie"
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "van 'n laer rang"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "van 'n laer of gelyke rang"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "van 'n laer of ekwivalente rang"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "van 'n hoër rang"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "van 'n hoër of gelyke rang"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "van 'n hoër of ekwivalente rang"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "nie van 'n laer rang"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "nie van 'n hoër rang"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unêre/Binêre operatore"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Relasies"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Versamelingbewerkings"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funksies"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operatore"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Attribute"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Hakies"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formate"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Andere"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Voorbeelde"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Sirkel-Omtrek"
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Massa-energie ekwivalent"
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Stelling van Pythagoras"
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr "Taylor reeks"
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Gauss Distribusie"
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr "Euler-Lagrange vergelyking"
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Fundamentele stelling van infinitesimaalrekening"
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr "Chaos-teorie vergelyking"
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr "Euler se identiteit"
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr "Newton se tweede wet"
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr "Algemene relatiwiteit"
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr "Spesiale relatiwiteit"
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standaard"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Skuinsdruk"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Vetdruk"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "swart"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blou"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "groen"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "rooi"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr "water"
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr "fuchsia"
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grys"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "lemmetjie"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "maroen"
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "vlootblou"
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olyf"
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "pers"
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silwer"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "Turkoois"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "geel"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr "koraal"
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr "bloedrooi"
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr "middernag"
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr "violet"
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr "oranje"
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr "oranjerooi"
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr "laventel"
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr "sneeu"
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr "seegroen"
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr "indigo"
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr "skelpienk"
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "RGB"
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr "heksa"
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Onsigbaar"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "Grootte"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "Font"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Middel"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "regs"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Bevele"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Stoor tans dokument..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-formule"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FOUT : "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr "geen fout"
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Onverwagte karakter"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Onverwagte Simbool"
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' verwag"
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' verwag"
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' verwag"
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' verwag"
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Links en regs simbole stem nie ooreen nie"
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', of 'serif' te wagte"
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' gevolg deur 'n onverwagte Simbool"
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dubbele belyning is nie toegelaat nie"
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dubbele onder/boskrifte is nie toegelaat nie"
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr "Verwagte waarde"
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' verwag"
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kleur vereis"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'REGS' verwag"
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inhoud"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formuleteks"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Omranding"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grootte"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Oo~rspronklike grootte"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Pas by bladsy"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalering"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 80e7880f40a..6482040eda6 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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-11 05:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
"Language: af\n"
@@ -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.4.2\n"
"X-POOTLE-MTIME: 1560976220.000000\n"
#. 3GkZj
@@ -814,5736 +814,5742 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Keer volgorde van %1 om"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr "Sorteer vorme"
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Skuif %1"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Skaleer %1"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Draai %1"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Keer %1 horisontaal om"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "Keer %1 vertikaal om"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Keer %1 diagonaal om"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "Keer %1 vryhand om"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "Vervorm %1 (skuins)"
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "Rangskik %1 in sirkel"
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "Kurwe %1 in sirkel"
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "Verwring %1"
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Ontdoen %1"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Wysig bézier-kenmerke van %1"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Wysig bézier-kenmerke van %1"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "Stel uitgangsrigting vir %1"
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "Stel relatiewe attribuut op %1"
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "Stel verwysingspunt vir %1"
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Groepeer %1"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "Ontgroepeer %1"
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Pas attribute op %1 toe"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Pas style op %1 toe"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Verwyder styl van %1"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "Omskep %1 in veelhoek"
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "Omskep %1 in veelhoeke"
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "Omskep %1 in kromme"
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "Omskep %1 in krommes"
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "Omskep %1 in kontoer"
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "Omskep %1 in kontoere"
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Belyn %1"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "Belyn %1 met bokant"
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "Belyn %1 met onderkant"
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "Sentreer %1 horisontaal"
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "Belyn %1 na links"
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "Belyn %1 na regs"
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "Sentreer %1 vertikaal"
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "Sentreer %1"
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "Omvorm %1"
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Kombineer %1"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Voeg %1 saam"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Trek %1 af"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "Sny %1"
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Versprei geselekteerde objekte"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "Pas wydte %1 aan"
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "Pas Hoogte %1 aan"
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Kombineer %1"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Verdeel %1"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Verdeel %1"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Verdeel %1"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Voeg objek(te) in"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Voeg punt by %1 in"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr "Voeg plakpunt by %1 in"
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "Skuif verwysingspunt"
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Verander %1 geometries"
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Skuif %1"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Skaleer %1"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Draai %1"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Keer %1 horisontaal om"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "Keer %1 vertikaal om"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Keer %1 diagonaal om"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "Keer %1 vryhand om"
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Interaktiewe gradiënt vir %1"
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Interaktiewe deursigtigheid vir %1"
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "Vervorm %1 (skuins)"
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "Rangskik %1 in sirkel"
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "Kurwe %1 in sirkel"
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "Verwring %1"
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Uitsny %1"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Verander radius met %1"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Verander %1"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Skaleer %1"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Skuif %1"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "Skuif eindpunt van %1"
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "Verstel hoek met %1"
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Verander %1"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "TeksRedigeer: Paragraaf %1, ry %2, kolom %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 gekies"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Punt vanaf %1"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 punte vanaf %1"
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr "Plakpunt vanaf %1"
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr "%2 plakpunte vanaf %1"
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Merk objekte"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "Merk bykomende objekte"
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Merk punte"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "Merk bykomende punte"
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr "Merk plakpunte"
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr "Merk bykomende plakpunte"
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Skep %1"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Voeg %1 in"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Kopieer %1"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "Verander objekvolgorde van %1"
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Redigeer teks van %1"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Voeg bladsy in"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Skrap bladsy"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Kopieer bladsy"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Verander bladsyorde"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "Verwyder toewysing van agtergrondbladsy"
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "Verander toewysing van agtergrondbladsy"
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Voeg dokument in"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Voeg laag in"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Skrap laag"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Verander objeknaam van %1 na"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Verander objektitel van %1"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "Verander objekbeskrywing van %1"
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "aan"
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "af"
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "ja"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "Nee"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Tipe 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Tipe 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Tipe 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Tipe 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Horisontaal"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Vertikaal"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Outomaties"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Af"
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Proporsioneel"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Pas aan by grootte (alle rye apart) "
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "Gebruik harde attribute"
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Bokant"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "Sentreer"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Onderkant"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "Gebruik volle hoogte"
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Gerek"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Links"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "Sentreer"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Regs"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "Gebruik volle breedte"
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Gerek"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "af"
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "flits"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "Rol deur"
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "afwisselend"
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "Rol in"
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "links"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "op"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "regs"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "af"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Standaard verbinder"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Lynverbinder"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Reguit verbinder"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Krom verbinder"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Standaard"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Radius"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "outomaties"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr "links buite"
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "binnekant (gesentreer)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr "regs buite"
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "outomaties"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "op die lyn"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "gebroke lyn"
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "onder die lyn"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "gesentreer"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "volle sirkel"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Ronde sektordiagram"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Sirkelsegment"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "Boog"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Onbekende attribuut"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Lynstyl"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "Lynpatroon"
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Lynbreedte"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Lynkleur"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Lynkop"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Lyn einde"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Breedte van lynkop"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Breedte van lyn einde"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "Sentreer pylpunt"
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "Sentreer pylveer"
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Lyndeursigtigheid"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Lynlas"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Lynattribute"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Invulstyl"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Invulkleur"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Gradiënt"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "Arsering"
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Invulbiskaart"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Deursigtigheid"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Getal gradiëntstappe"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Teëlinvulling"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Posisie van invulbiskaart"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Breedte van invulbiskaart"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Hoogte van invulbiskaart"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Deursigtige gradiënt"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "Invulling gereserveer vir 2"
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Teëlgrootte nie in %"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "Teëlverplasing X in %"
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "Teëlverplasing Y in %"
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Biskaartskalering"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "Teëlposisie X in %"
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "Teëlposisie Y in %"
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Agtergrondinvulling"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Area-attribute"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Fontwerkstyl"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Fontwerk-belyning"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "Fontwerkspasiëring"
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Fontwerk begin van font"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "Fontwerkspieëlbeeld"
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Fontwerkbuitelyn"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Fontwerkskaduwee"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Fontwerkskaduweekleur"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "Fontwerkskaduweeverplasing X"
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "Fontwerkskaduweeverplasing Y"
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "Versteek fontwerkbuitelyn"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "Fontwerkskaduweedeursigtigheid"
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "Skadu"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Skadukleur"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Skaduweespasiëring X"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Skaduweespasiëring Y"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Skadudeursigtigheid"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr "Skadu verdof"
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3-D-skadu"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "Perspektiefskadu"
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Soort sleutel"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "Vaste legendehoek"
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Legendehoek"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Spasiëring van legendelyne"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "Uitgangsbelyning van legende"
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "Relatiewe verlaatlegende"
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "Relatiewe verlaatlegende"
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "Absolute uitgang van legende"
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Lengte van legendelyn"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "OutoLengte van legendelyne"
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "Hoekradius"
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Minimum raamhoogte"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "OutoPas hoogte"
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "Pas teks in raam"
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "Teksraamspasiëring links"
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "Teksraamspasiëring regs"
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "Teksraamspasiëring bo"
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "Teksraamspasiëring onder"
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "Vertikale teksanker"
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Maksimum raamhoogte"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Minimum raamwydte"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Maksimum raamwydte"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "OutoPas wydte"
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "Horisontale teksanker"
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "Tikker"
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "Tikkerrigting"
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "Tikker begin binnekant"
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "Tikker stop binnekant"
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "Getal tikkerlopies"
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "Tikkerspoed"
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "Tikkerstapgrootte"
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Vloei van raamwerkteks"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Gebruikergedefinieerde attribute"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "Gebruik fontonafhanklike reëlspasiëring"
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "Vou teks in vorm om"
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr "Volgende koppeling in teksketting"
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Tipe verbinder"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "Horis. spasiëring objek 1"
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "Vert. spasiëring objek 1"
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "Horis. spasiëring objek 2"
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "Vert. spasiëring objek 2"
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "Plak spasiëring objek 1"
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "Plak spasiëring objek 2"
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "Getal skuifbare lyne"
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "Verplasing lyn 1"
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "Verplasing lyn 2"
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "Verplasing lyn 3"
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Tipe dimensionering"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "Dimensiewaarde - horisontale posisie"
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "Dimensiewaarde - vertikale posisie"
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "Dimensie lynspasie"
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "Dimensiehulp lynoorhang"
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "Dimensiehulp lynspasiëring"
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "Agterstand van dimensiehulp lyn 1"
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "Agterstand van dimensiehulp lyn 2"
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "Dimensionering van onderste rand"
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "Dimensiewaarde oor dimensielyn"
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "Roteer dimensiewaarde met 180 grade"
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "Dimensielynoorhang"
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Meet eenheid"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "Bykomende skaalfaktor"
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Meet eenheidsvertoon"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Formaat van dimensiewaarde"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "OutoPosisionering van die dimensiewaarde"
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "Hoek vir die outomatiese posisionering van die dimensiewaarde"
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "Bepaling van die dimensiewaarde hoek"
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "Hoek van die dimensiewaarde"
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Desimale plekke"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Tipe sirkel"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "Beginhoek"
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "Eindhoek"
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Beskermde objekposisie"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Beskermde objekgrootte"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "Objek, drukbaar"
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Objek, sigbaar"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "ID-vlak"
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Laag"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Objeknaam"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "Posisie X, voltooi"
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "Posisie Y, voltooi"
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "Totale breedte"
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "Hoogte, voltooi"
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "Enkele posisie X"
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "Enkele posisie Y"
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "Enkele breedte"
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "Enkele hoogte"
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Logiese breedte"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Logiese hoogte"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "Enkele rotasiehoek"
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "Enkele skuifskeurhoek"
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "Skuif horisontaal"
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "Skuif vertikaal"
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Verstel grootte van X, enkel"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Verstel grootte van Y, enkel"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Enkele rotasie"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "Enkele horisontale skuifskeur"
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "Enkele vertikale skuifskeur"
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Verstel grootte van X, voltooi"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Verstel grootte van Y, voltooi"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Roteer almal"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "Skuifskeur horisontaal, voltooi"
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "Skuifskeur vertikaal, voltooi"
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "Verwysingspunt 1 X"
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "Verwysingspunt 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "Verwysingspunt 2 X"
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "Verwysingspunt 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Woordafbreking"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Vertoon kolle"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "Nommerinkepings"
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Nommeringsvlak"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Kolle en nommering"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Inkepe"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Paragraafspasiëring"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Reëlspasiëring"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Paragraafbelyning"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Tabuleerders"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Fontkleur"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Karakterstel"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Fontgrootte"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Fontbreedte"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "Vet (dikte)"
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Onderstreep"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Oorlyn"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Deurhaal"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Skuinsdruk"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Skema"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Fontskaduwee"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "Superskrif/subskrif"
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Tekssaamdrukking"
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Saamdrukking per hand"
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Geen onderstreping van spasies"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Tabuleerder"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "Opsionele lynbreuk"
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Nieomskakelbare karakter"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Velde"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Rooi"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Groen"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Blou"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Helderheid"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontras"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Deursigtigheid"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Negatief"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Beeld modus"
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "Snoei"
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr "Radius van gloei-effek"
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr "Kleur van gloei-effek"
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr "Transparansie van gloei-effek"
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr "Radius van sagte randeffek"
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Mediaobjek"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Mediaobjekte"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Voeg kolom in"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Voeg ry in"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Skrap kolom"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Skrap ry"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Verdeel selle"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Voeg selle saam"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formateer sel"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "Versprei rye"
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "Versprei kolomme"
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Skrap selinhoud"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Tabelstyl"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Tabelstylinstellings"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Tabel"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Tabelle"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "Fontwerk"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "Aaneenlopend"
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Gradiënt"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Biskaart"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "Patroon"
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "Naamlose patroon"
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Lynstyl"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Geen"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Kleur"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "Arsering"
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Pylpunte"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Pyltjie"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Vierkant"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Sirkel"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- geen -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Deursigtigheid"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Gesentreer"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Nie gesentreer nie"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Verstek"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "Grysskaal"
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Swart/wit"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "Watermerk"
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr "Links-klik met die muis om die agtergrondkleur in te stel en regs-klik om die lynkleur in te stel"
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr "Donkerrooi 2"
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "Blou"
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "Geel"
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr "Donkerblou 1"
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr "Ligblou 2"
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Swart"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Grys"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Wit"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Geel"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Goud"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Oranje"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "Baksteen"
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Rooi"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Magenta"
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Pers"
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "Indigo"
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Blou"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "Turkoois"
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Groen"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "Lemmetjie"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Liggrys"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "Liggeel"
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "Liggoud"
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "Ligoranje"
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "Ligte baksteenrooi"
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Ligrooi"
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr "Ligte magenta"
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "Ligte pers"
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "Ligte indigo"
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Ligblou"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "Ligte turkoois"
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Liggroen"
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "Ligte Lemmetjie"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "Donkergrys"
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "Donkergeel"
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "Donkergoud"
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "Donkeroranje"
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "Donker baksteenrooi"
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Donkerrooi"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr "Donkermagenta"
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "Donkerpers"
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "Donker-indigo"
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "Donkerblou"
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "Donker turkoois"
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "Donker groen"
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "Donker lemmetjie"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "Violet"
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violet"
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blou"
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Blou (buite die spektrum)"
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Lentegroen (buite die spektrum)"
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Groen (buite die spektrum)"
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Geelgroen (buite die spektrum)"
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranje (buite die spektrum)"
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Rooi (buite die spektrum)"
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rooskleur (buite die spektrum)"
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr "Blou"
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "Siaan"
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr "Lentegroen"
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr "Geelgroen"
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr "Rooskleur"
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr "Grys A"
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr "Geel A"
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr "Amber A"
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr "Amber"
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr "Oranje A"
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr "Donkeroranje A"
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr "Donkeroranje"
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr "Rooi A"
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr "Pienk A"
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr "Pers A"
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr "Donkerpers A"
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr "Donderpers"
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr "Indigo A"
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr "Blou A"
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr "Ligblou A"
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr "Cyaan A"
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr "Turkoois A"
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr "Groen A"
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr "Liggroen A"
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr "Lemmetjie A"
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr "Bruin A"
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr "Bruin"
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr "Blougrys A"
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr "Blougrys"
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "Klassieke blou"
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "Blougrys"
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Wynrooi"
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "Pastel geel"
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "Pastel groen"
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "Donkerviolet"
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Salm"
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "Seeblou"
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Grafiek"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "Hemelsblou"
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "Geelgroen"
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Pienk"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoois"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3-D"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Swart 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Swart 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Blou"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Bruin"
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Valuta"
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Valuta 3-D"
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Valutagrys"
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Valutalila"
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Valutaturkoois"
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Grys"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Groen"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Lila"
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Rooi"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoois"
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Geel"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr "Akademies"
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "Lys blou"
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "Lys groen"
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "Lys rooi"
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "Lys geel"
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "Elegant"
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Finansieel"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr "Eenvoudige kolomme"
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr "Eenvoudige ry"
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr "Eenvoudige skadu"
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Lynlas gemiddeld"
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Lynlas skuins"
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Lynlas mitre"
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Lynlas rond"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "Plat lyn-einde"
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "Ronde lyn-einde"
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "Reghoekige lyn-einde"
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Gradiënt"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Lineêr blou/wit"
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Lineêr magenta/groen"
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Lineêr geel/bruin"
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Radiaal groen/swart"
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Radiaal rooi/geel"
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Reghoekig rooi/wit"
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Vierkantig geel/wit"
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Ellipsoïed blougrys/ligblou"
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Aksiaal ligrooi/wit"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Diagonaal 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Diagonaal 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Diagonaal 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Diagonaal 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Diagonaal 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Diagonaal 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Diagonaal 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Diagonaal 4r"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Diagonaal blou"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Diagonaal groen"
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Diagonaal oranje"
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Diagonaal rooi"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Diagonale turkoois"
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Diagonaal violet"
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "Vanuit een hoek"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "Vanuit een hoek, blou"
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "Vanuit een hoek, groen"
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "Vanuit een hoek, oranje"
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "Vanuit een hoek, rooi"
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "Vanuit een hoek, turkoois"
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "Vanuit een hoek, violet"
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "Vanuit die middel"
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "Vanuit die middel, blou"
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "Vanuit die middel, groen"
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "Vanuit die middel, oranje"
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "Vanuit die middel, rooi"
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "Vanuit die middel, turkoois"
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "Vanuit die middel, voilet"
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Horisontaal"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Horisontaal blou"
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Horisontaal groen"
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Horisontale oranje"
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Horisontaal rooi"
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Horisontaal turkoois"
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Horisontaal violet"
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Radiaal"
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Radiaal blou"
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Radiaal groen"
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "Radiaal oranje"
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Radiaal rooi"
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Radiaal turkoois"
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Radiaal violet"
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Vertikaal"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Vertikaal blou"
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Vertikaal groen"
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Vertikaal oranje"
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Vertikaal rooi"
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Vertikaal turkoois"
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Vertikaal violet"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "Grys gradiënt"
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "Geel gradiënt"
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "Oranje gradiënt"
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "Rooi gradiënt"
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "Pienk gradiënt"
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Lug"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "Blougroen gradiënt"
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "Blou gradiënt"
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "Pers buis"
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Nag"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "Groen gradiënt"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr "Paste boeket"
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr "Pastel droom"
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr "Blou aksent"
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr "Wit met grys"
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr "Gestippelde grys"
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr "Londonse newel"
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr "Turkoois tot blou"
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr "Middernag"
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr "Diep oseaan"
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr "Ondersee"
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr "Groen gras"
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr "Neon lig"
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr "Sonskyn"
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr "Aanwesig"
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr "Mahonie"
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr "Swart 0 grade"
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr "Swart 90 grade"
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr "Swart 180 grade gekruis"
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr "Blou 45 grade"
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr "Blou -45 grade"
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr "Blou 45 grade gekruis"
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr "Groen 30 grade"
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr "Groen 60 grade"
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr "Groen 90 grade drievoudig"
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr "Rooi 45 grade"
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr "Rooi 90 grade gekruis"
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr "Rooi -45 grade drievoudig"
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr "Geel 45 grade"
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr "Geel 45 grade gekruis"
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr "Geel 45 grade drievoudig"
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr "Uitbroei"
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Leeg"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr "Wit geverf"
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr "Papier tekstuur"
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr "Gefrommelde papier"
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr "Grafiekpapier"
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "Perkament"
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr "Heining"
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr "Houtbord"
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr "Esdoring blare"
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr "Grassny"
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr "Kleurvolle klippies"
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr "Koffiebone"
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr "Kleine wolke"
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr "Badkamerteëls"
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr "Rotsmuur"
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr "Sebra"
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr "Kleur strepe"
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr "Puin"
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr "Perkament studio"
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr "Nagtelike hemel"
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "Swembad"
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Biskaart"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr "Faktuur papier"
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr "Beton"
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr "Steenmuur"
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr "Klipmuur"
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr "Blomme"
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr "Ruimte"
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr "Yslig"
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr "Marmer"
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr "Sandlig"
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr "Klip"
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr "Wit diffusie"
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr "Oppervlakte"
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr "Karton"
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr "Studio"
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 persent"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 persent"
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 persent"
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 persent"
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 persent"
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 persent"
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 persent"
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 persent"
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 persent"
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 persent"
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 persent"
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 persent"
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "Lig omlaag diagnaal"
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "Lig omhoog diagnaal"
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "Donker omlaag diagnaal"
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "Donker omhoog diagnaal"
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "Breed omlaag diagnaal"
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "Breed omhoog diagnaal"
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "Lig vertikaal"
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "Lig horisontaal"
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "Smal vertikaal"
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "Smal horisontaal"
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "Donker vertikaal"
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "donker horisontaal"
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "Gestippeld omlaag diagnaal"
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "Gestippeld omhoog diagnaal"
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "Gestippeld horisontaal"
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "Gestippeld vertikaal"
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "Klein konfetti"
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "Groot konfetti"
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "Sigsag"
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Golf"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "Diagnale stene"
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "donker baksteen"
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "geweef"
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "geruite"
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "Kol"
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "Gestippelde rooster"
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "Gestippelde diamant"
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "dakteël"
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "Latwerk"
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "sfeer"
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "Klein rooster"
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "Groot rooster"
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "Klein skaakbord"
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "Groot skaakbord"
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "Omgerande diamant"
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "Solied diamant"
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "Vertikaal"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "Horisontaal"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "Neerwaarts diagnaal"
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "Opwaarts diagnaal"
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Kruis"
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "Diagnaal kruis"
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr "Gestreepies-gestippeld"
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr "Stippelde stippelvormige stygende diagonaal"
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr "Vaste en stippellyn"
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr "Punt"
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr "Lang punt"
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr "Dubbele punt"
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr "Strepie"
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr "Lang strepie"
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr "Dubbel strepie"
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr "Lang-streep punt"
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr "Dubbelstreep punt"
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr "Dubbel streep punt streep"
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr "Ultradun gestippeld"
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr "Fyn gestippeld"
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr "Ultrafyn gestreep"
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr "Fyn gestreep"
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr "Fyn gestreep"
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr "Gestreep"
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr "Lyn styl 9"
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr "3 strepies 3 punte"
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr "Ultradun 2 punte 3 strepies"
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr "2 punte 1 strepie"
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr "Lyn met fyn punte"
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr "Gestippeld"
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr "Lyn styl"
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "Alle formate"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr "Konkaaf kort"
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Vierkant 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr "Pyl kort"
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "Maatlyne"
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Dubbelpyltjie"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr "Driehoek"
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr "Konkaaf"
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr "Pyl groot"
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "Maatlyn"
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Sirkel"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Vierkant"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Pyltjie"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr "Halfsirkel"
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "Ongevulde driehoek"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "Ongevulde diamant"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Diamant"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Sirkel, oningevul"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Vierkant 45, oningevul"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "oningevulde vierkant"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr "Ongevulde halfsirkel"
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr "Maatlyn pyl"
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr "Kort lyn"
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr "Lyn"
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr "Halwe Pyl links"
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr "Halwe Pyl regs"
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr "Omgedraaide Pyl"
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr "Kraaipoot Een"
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr "Kraaipoot slegs Een"
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr "Kraaipoot Baie"
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr "Kraaipoot Baie tot Een"
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr "Kraaipoot Nul Een"
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr "Kraaipoot Nul tot Baie"
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Deursigtigheid"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr "Groen 1 (%PRODUCTNAME hoofkleur)"
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "Groen aksent"
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "Blou Aksent"
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "Oranje Aksent"
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Pers"
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "Pers Aksent"
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "Geel Aksent"
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Galerytema"
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Suksesvol herwin"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Oorspronklike dokument herwin"
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Herwinning het misluk"
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Herwinning onderweg"
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Nog nie herwin nie"
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION het begin om u dokumente te herwin. Afhangende van die grootte van die dokumente kan hierdie proses ’n rukkie duur."
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "Herwinning van u dokumente is afgehandel. Kliek “Klaar” om u dokumente te sien."
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~Klaar"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Laaste doelgemaakte waarde"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "pt"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Beeld Uitvoer"
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "Stoor as beeld"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Voeg objek(te) in"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Roteer 3-D-objek"
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Skep ekstrusieobjek"
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Skep rotasieobjek"
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Verdeel 3-D-objek"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Almal]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Grafikafilter"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Nuwe tema"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3-D-effekte"
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Animasies"
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Koeëltjies"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Kantoor"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Vlaggies"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Vloeidiagramme"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Emotikons"
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Beelde"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Agtergronde"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Tuisblad"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Interaksie"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Kaarte"
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Mense"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Oppervlakke"
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Rekenaars"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Diagramme"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "Omgewing"
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Finansies"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "Vervoer"
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Teksvorms"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Klanke"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Simbole"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "My tema"
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Pyltjies"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Ballonne"
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Sleutelbord"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Tyd"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Voorlegging"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Navigasie"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Kommunikasie"
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Finansies"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Rekenaars"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Klimaat"
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Skool en universiteit"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Probleemoplossing"
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Skermboontjies"
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Seleksie druk"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "Wil u die seleksie of die hele dokument druk?"
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~Alles"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "~Seleksie"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Ekstrusie noordwes"
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Ekstrusie noord"
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Ekstrusie noordoos"
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Ekstrusie wes"
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Ekstrusie agtertoe"
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Ekstrusie oos"
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Ekstrusie suidwes"
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Ekstrusie suid"
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Ekstrusie suidoos"
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 cm"
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 cm"
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 cm"
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 cm"
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~cm"
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 duim"
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0,~5 duim"
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 duim"
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 duim"
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 duim"
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "Geen invulling"
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "Deursigtig"
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Verstek"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Grense"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Randstrookstyl"
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "Meer nummering..."
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "Meer kolparagraaf tekens..."
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "Deur Outeur"
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Bladsye"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Maak formatering skoon"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Meer style..."
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Meer opsies..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Fontnaam"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "Font Naam. Die huidige font is nie beskikbaar nie en sal vervang word."
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "doelgemaak"
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "Dokumentkleure"
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "Dokumentkleur"
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Ekstrusie"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Pas ekstrusie aan/af"
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Kantel af"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Kantel op"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Kantel links"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Kantel regs"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Verander ekstrusiediepte"
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Verander gerigtheid"
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Verander projeksiesoort"
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Verander beligting"
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Verander helderheid"
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Verander ekstrusieoppervlak"
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Verander ekstrusiekleur"
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "Gunsteling"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fontwerk"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Pas Fontwerk-vorm toe"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Pas Fontwerk-selfdeletterhoogtes toe"
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Pas Fontwerk-belyning toe"
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Pas Fontwerk-karakterspasiëring toe"
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "met"
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Styl"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "en"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Hoekbeheer"
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Seleksie van 'n hoekpunt."
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Bo links"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Bo middel"
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Bo regs"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Links middel"
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Sentreer"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Regs middel"
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Onder links"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Onder middel"
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Onder regs"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Kontoerbeheer"
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Dit is waar u die kontoer kan redigeer."
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Spesialekarakter-keuse"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Kies spesiale karakters in hierdie area."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Karakterkode "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Toevoer benodig in veld '#'. Tik asseblief 'n waarde in."
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Vorms"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Geen beheer geselekteer nie"
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Eienskappe: "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Vormeienskappe"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Vormnavigator"
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Vorm"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "Verborge"
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Vorm"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Versteekte kontrole"
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Beheer"
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Rekord"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "van"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Voeg veld by:"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Kan nie data na databasis skryf nie"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Sintaksfout in navraaguitdrukking"
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "U beoog om 1 rekord te skrap."
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# rekords sal geskrap word."
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6553,331 +6559,337 @@ msgstr ""
"Wil u in elk geval voortgaan?"
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Navigasiebalk"
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Kol"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Stel eienskap '#' op"
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Voeg in houer in"
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Skrap #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Skrap # objekte"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Vervang 'n houerelement"
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Vervang beheer"
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "Druk knoppie"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr "Opsieknoppie"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Tekskassie"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Merkblokkie"
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "Etiketveld"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "Groepkassie"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "Tekskassie"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "Geformateerde veld"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "Kombinasiekassie"
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Lyskassie"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr "Kombinasiekassie"
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "Beeldknoppie"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "Beeldbeheer"
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "Lêerseleksie"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Datum-veld"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Tyd-veld"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Numeriese veld"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Geldeenheidveld"
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Patroonveld"
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Geformateerde veld"
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Druk knoppie"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "Opsieknoppie"
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Etiketveld"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Groepkassie"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Beeldknoppie"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Beeldbeheer"
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Lêerseleksie"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Tabelbeheer "
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Rolstaaf"
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Spinknoppie"
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Navigasiebalk"
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Veelvoudige seleksie"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr "Datum en Tyd veld"
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "Geen dataverwante beheerinstrumente in huidige vorm nie!"
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Datum)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Tyd)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Filternavigator"
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Filter vir"
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Of"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "Geldige gebinde beheerinstrumente wat in die tabelaansig gebruik kan word bestaan nie in die huidige vorm nie."
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<OutoVeld>"
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Sintaksfout in SQL-stelling"
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "Die waarde #1 kan nie saam met LIKE gebruik word nie."
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE kan nie saam met hierdie veld gebruik word nie."
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "Die waarde wat ingevoer is, is nie 'n geldige datum nie. Tik asseblief 'n datum in 'n geldige formaat in, byvoorbeeld MM/DD/JJ."
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Die veld kan nie met 'n heelgetal vergelyk word nie."
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Die databasis bevat nie 'n tabel genaamd \"#\" nie."
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Die databasis bevat nie 'n tabel of 'n navraag genaamd \"#\" nie."
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "Die databasis bevat reeds 'n tabel of 'n aansig genaamd \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "Die databasis bevat reeds 'n navraag genaamd \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Die kolom \"#1\" is onbekend in die tabel \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "Die veld kan nie met 'n wisselpuntgetal vergelyk word nie."
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Die toegevoerde kriterium kan nie met hierdie veld vergelyk word nie."
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Datanavigator"
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (leesalleen)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Die lêer bestaan reeds. Oorheenskryf?"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object#-etiket"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6887,7 +6899,7 @@ msgstr ""
"Wil u werklik hierdie model skrap?"
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6897,7 +6909,7 @@ msgstr ""
"Wil u werklik die instans skrap?"
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6907,13 +6919,13 @@ msgstr ""
"Wil u werklik hierdie element skrap?"
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Wil u werklik die attribuut '$ATTRIBUTENAME' skrap?"
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6925,7 +6937,7 @@ msgstr ""
"Wil u regtig die indiening skrap?"
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6937,1000 +6949,1000 @@ msgstr ""
"Wil u regtig die binding skrap?"
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Die naam '%1' is nie geldig in XML nie. Tik asseblief 'n ander naam in."
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Die voorvoegsel '%1' is nie geldig in XML nie. Tik asseblief 'n ander voorvoegsel in."
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Die naam '%1' bestaan reeds. Tik asseblief 'n nuwe naam in."
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "Die indiening moet 'n naam hê."
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "POST"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "PUT"
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "GET"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Geen"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Instanse"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Dokument"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Binding: "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Verwysing: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Aksie: "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Metode: "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Vervang: "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Voeg element by"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Redigeer element"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Skrap element"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Voeg attribuut by"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Redigeer attribuut"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Skrap attribuut"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Voeg binding by"
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Redigeer binding"
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Skrap binding"
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Voeg indiening by"
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Redigeer indiening"
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Skrap indiening"
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Element"
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Attribuut"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Binding"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Bindinguitdrukking"
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "Is u seker u wil die %PRODUCTNAME-dokument herwinningsdata kanselleer?"
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Links"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Regs"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Sentreer"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Desimaal"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "Invoegmodus. Klik om na Oorskryfmodus te wissel."
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "Oorskryfmodus. Klik om na Invoegmodus te wissel."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Oorskryf"
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Invoeg"
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Digitale handtekening: Die dokument se handtekening is OK."
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Digitale handtekening: Die dokument se handtekening is OK, maar die sertifikaat kon nie gevalideer word nie."
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr "Digitale handtekening: Die dokumenthandtekening stem nie ooreen met die inhoud van die dokument nie. Ons beveel sterk aan dat u nie hierdie dokument vertrou nie."
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Digitale handtekening: Die dokument is nie onderteken nie."
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Digitale handtekening: Die dokumenthandtekening en die sertifikaat is goed, maar nie alle dele van die dokument is onderteken nie."
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Die dokument is gewysig. Klik om die dokument te stoor."
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "Die dokument is onveranderd sedert dit laas gestoor is."
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Laai tans dokument..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Pas skyfie aan na huidige vensterruimte."
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Kon nie alle \"SmartArt\" objekte laai nie. Stoor in Microsoft Office 2010 of later weergawe sou die kwessie omseil."
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "Zoemfaktor. Klik regs om die zoemfaktor te verander, of klik om die zoemdialoog te open."
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Zoem in"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Zoem uit"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Hele bladsy"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Bladsywydte"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Optimale aansig"
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Style ingesluit"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Paragraafst~yle"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Selst_yle"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "Soek vir formattering"
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "Vervang met formattering"
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "Einde van die document is bereik"
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "Aan die einde van die dokument, hervat aan die begin"
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "Einde van die blad bereik"
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Soeksleutel nie gevind nie"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Navigasie-element nie gevind nie"
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "Begin van die dokument is bereik"
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "Het die begin van die dokument bereik, hervat aan die einde"
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr "Het die eerste herinnering bereik, hervat vanaf die laaste"
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr "Het die laaste herinnering bereik, hervat vanaf die eerste"
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Kleurpalet"
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Kleurvervanger"
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "3D-Effekte"
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Verkeerde wagwoord"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Wagwoorde pas nie"
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Soliede klein sirkelvormige koeëltjies"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Soliede groot sirkelvormige koeëltjies"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Soliede ruitvormige koeëltjies"
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Soliede groot vierkantige koeëltjies"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Regswysende pyltjies ingevul"
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Regswysende pyltjie-koeëltjies"
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "Kruisies as kolparagrawe"
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "Regmerkies as kolparagrawe"
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Nommer 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Nommer 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Nommer (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Bokas Romeinse syfer I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Bokasletter A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Onderkasletter a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Onderkasletter (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Onderkas Romeinse syfer i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numeries, numeries, onderkasletters, soliede klein sirkelvormige koeëltjie"
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numeries, onderkasletters, soliede klein sirkelvormige koeëltjie"
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numeries, onderkasletters, onderkas Romeins, bokasletters, soliede klein sirkelvormige koeëltjie"
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numeries"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Bokas Romeins, bokasletters, onderkas Romeins, onderkasletters, soliede klein sirkelvormige koeëltjie"
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Bokasletters, bokas romein, onderkasletters, onderkas romein, soliede klein ronde koeëltjie"
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numeries met alle subvlakke"
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Regswysende koeëltjie, regswysende pyltjiekoeëltjie, soliede ruitvormige koeëltjie, soliede klein sirkelvormige koeëltjie"
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Hierdie zip-lêer kon nie geskep word nie."
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Tabelontwerpstyle"
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Soek"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Selfde kas"
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "Geformatterde skerm"
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) by $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kB"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr "$(CAPACITY) kiB ($(REDUCTION) %Reduction)"
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "GIF-beeld"
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "JPEG-beeld"
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "PNG-beeld"
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "TIFF-beeld"
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "WMF-beeld"
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "MET-beeld"
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "PCT-beeld"
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "SVG-beeld"
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "BMP-beeld"
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Onbekend"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Wissel"
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Beeld modus"
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Rooi"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Groen"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Blou"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Helderheid"
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontras"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Deursigtigheid"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Snoei"
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Verstek oriëntasie"
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "Van bo na onder"
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "Onder na bo"
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Gestapel"
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Linkerkantlyn: "
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Boonste kantlyn: "
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Regterkantlyn: "
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Onderste kantlyn: "
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Bladsybeskrywing: "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Hoofletters"
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Onderkas"
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Bokas Romein"
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Onderkas Romein"
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabies"
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Geen"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Landskap"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Regop"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Links"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Regs"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Alle"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Spieëlbeeld"
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Outeur: "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Datum: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Teks: "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Karakteragtergrond"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Kleurpalet"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr "Skyfie nommers:"
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7940,1926 +7952,2029 @@ msgstr ""
"Wil u eerder die gewysigde weergawe stoor?"
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Basiese Latyn"
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latyn-1"
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latyn uitgebrei-A"
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latyn uitgebrei-B"
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA-uitbreidings"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Spasiewysigingsletters"
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Kombinerende diakritiese tekens"
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Basiese Grieks"
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Griekse simbole en Kopties"
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cyrillies"
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armeens"
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Basiese Hebreeus"
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebreeus uitgebrei"
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Basiese Arabies"
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabies uitgebrei"
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengaals"
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Goedjarati"
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Odia"
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Teloegoe"
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malabaars"
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thais"
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Basiese Georgies"
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgies uitgebrei"
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangoel Jamo"
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Latyn uitgebrei bykomend"
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Grieks uitgebrei"
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Algemene leestekens"
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Superskrifte en subskrifte"
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Geldeenheidsimbole"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Kombinerende diakritiese simbole"
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Letteragtige simbole"
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Getalvorms"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Pyltjies"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Wiskundige operateure"
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Diverse tegniese"
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Beheer prentjies"
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Optiese karakterherkenning"
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Ingeslote alfanumeriese karakters"
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Kassietekening"
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Blokelemente"
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Geometriese vorms"
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Diverse simbole"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK-simbole en leestekens"
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangoel-versoenbaarheid Jamo"
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK Diverse"
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "Ingeslote CJK-letters en -maande"
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK-versoenbaarheid"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangoel"
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified-ideogramme"
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified-ideogramme uitbreiding-A"
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Area vir private gebruik"
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK-versoenbare ideogramme"
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Alfabetiese aanbiedingsvorms"
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabiese aanbiedingsvorms-A"
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Kombinerende halftekens"
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK-versoenbaarheidsvorms"
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Klein vormvariante"
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabiese aanbiedingsvorms-B"
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Halfbreedte- en volbreedtevorms"
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Spesiales"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi lettergrepe"
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi-Radikale"
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Oue skuinsdruk"
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Goties"
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret-Alfabet"
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Bizantynse musieksymbole"
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Musieksimbole"
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Wiskundige alfanumeriese simbole"
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK Unified-ideogramme uitbreiding-B"
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK Unified-ideogramme uitbreiding-C"
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK Unified-ideogramme uitbreiding-D"
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK versoenbare-ideogramme aanvulling"
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Etikette"
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Cyrillies aanvulling"
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Variasie kiesers"
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Aanvullende privaatgebruik gebied-A"
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Aanvullende privaatgebruik gebied-B"
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Thai Le"
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Khmer simbole"
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Fonetiese uitbreidings"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Allerlei simbole en pyle"
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Yijing heksagram symbole"
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Liniêr B-lettergrepe"
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Liniêr B-Ideogramme"
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Egeïese getalle"
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugarities"
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavianse-Alfabet"
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmaans"
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhalees"
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetaans"
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Birmaans"
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Runies"
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Siries"
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Etiopies"
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Kanadese inheemse lettergrepe"
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongools"
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Diverse wiskundige simbole-A"
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Aanvullende pyltjies-A"
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Braille-patrone"
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Aanvullende pyltjies-B"
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Diverse wiskundige simbole-B"
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK-radikale aanvullend"
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kanxi-woordstamvorme"
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideografiese beskrywende karakters"
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo uitgebrei"
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana fonetiese simbole"
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK-strepe"
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Cypriotiese lettergrepe"
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Tai Xuan Jing Symbole"
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Variasie kiesers, Toevoeging"
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Antieke-Griekse musikale notasie"
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Antieke Griekse Getalle"
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Arabiese Toevoeging"
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buginees"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Gekombineerde diakritiese tekenaanvullings"
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Kopties"
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Etiopiese toevoeging"
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Etiopiese toevoeging"
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Georgiese Toevoeging"
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagoljica"
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Wysiging van toontekens"
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Nuwe Tai Lue"
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Antiek Persies"
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Fonetiese Uitbreidings Toevoeging"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Toegevoegde Leestekens"
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Vertikale vorms"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "N’Ko"
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinees"
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latynse uitbreiding-C"
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latynse uitbreiding-D"
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phagspa"
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Fenisiese"
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Spykerskrif"
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Spykerskrif Getalle en Leestekens"
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Telraam-getalle"
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Soendanees"
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cyrilliese verlengde-A"
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cyrilliese verlengde-B"
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham dialek"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Antieke Simbole"
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Skyf van Phaistos"
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lykian"
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carish"
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lydisch"
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong-teëls"
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Domino-teëltjies"
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritaans"
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Verenigde Kanadese inheemse Klinkers uitgebrei"
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Vediese Toevoegings"
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu dialek"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamun"
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Algemene Indiese nommervorme"
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari uitgebrei"
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo uitgebrei-A"
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Javaans"
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Latynse uitbreiding-A"
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo uitgebrei-B"
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Offisiële Aramees"
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Oud Suid-Arabies"
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avesties"
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Inskripsie Parthian"
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Inskripsie Pahlavi"
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Ou Turks"
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Rumi-getalsymbole"
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Egiptiese hiërogliewe"
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Ingeslote Alfanumeriese Toevoeging"
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Ingeslote Ideografiese Toevoeging"
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaïs"
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Ethiopies, uitbreiding-A"
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Bamum Toevoeging"
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Kana Toevoeging"
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Speelkaarte"
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Diverse Simbole en Piktogramme"
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Emotikons"
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Transport- en kaartsimbole"
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Alchemiese simbole"
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabiese uitbreiding-A"
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Arabiese Wiskundige Alfabetiese Simbole"
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Meetei Mayek-uitbreidings"
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroities Kursief"
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroïtiese hiërogliewe"
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sorang-Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Sundanese Toevoeging"
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Bassa Vah"
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Kaukasiese Albanees"
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Koptiese Getaltekens"
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Gekombineerde diakritiese tekensuitbreiding"
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Duployé"
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Elbasan"
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Geometriese Vorms Toegevoegd"
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Grantha"
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Khojki"
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Khudawadi"
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latyn uitgebrei-E"
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Linieêr A"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Mahajani"
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Manichees"
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Mende Kikakui"
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Modusse"
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Mro"
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Birmaans uitgebreid-B"
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Nabatees"
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Oud Noord-Arabies"
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Oud Permies"
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Ornamentele Diersimbole"
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Pahawh Hmong"
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Palmyreens"
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Pau Cin Hau"
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Psalter Pahlavi"
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Stenografiese Formaat Kontroles"
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Siddham"
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Sinhala argaïese getalle"
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Aanvullende pyltjies-C"
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Tirhuta"
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Warang Citi"
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ahom"
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Anatoliaanse hiërogliewe"
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Cherokee Toevoeging"
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified-ideogramme uitbreiding-E"
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Vroeë dinastiese spykerskrif"
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Hatraans"
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Multanees"
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Oud Hongaars"
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Bykomende simbole en piktogramme"
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Sutton Tekenskrif"
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Adlam"
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Bhaiksuki"
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cyrillies, uitbreiding-C"
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Glagolitiese Toevoeging"
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Ideografiese Simbole en leestekens"
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Marchen"
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Mongoliese Toevoeging"
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Newaans"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Osaags"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Tanguties"
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Tangutiese Toevoegings"
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK Unified-ideogramme uitbreiding-F"
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Kana uitbreiding-A"
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Masaram Gondi"
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Nushu"
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Soyombo"
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Siriese aanvulling"
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "Zanabazar-vierkant skrif"
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "Skaaksimbole"
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr "Dogra"
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr "Gunjala Gondi"
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr "Hanifi Rohingya"
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr "Indiese Siyaq getalle"
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "Makasar"
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Maya getalle"
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "Medefaidrin"
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "Oud Sogdiaans"
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "Sogdiaans"
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr "Egiptiese hiëroglief formaat Kontrols"
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr "Elymaic"
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr "Nandinagari"
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr "Nyiakeng Puachue Hmong"
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr "Ottoman Siyaq Getalle"
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr "Kleine Kana Uitbreiding"
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr "Piktografiese simbole, verlenging-A"
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr "Tamil Toevoeging"
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr "Wancho"
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr "Chorasmian"
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr "Uniforme CJK-ideogramme, uitbreiding-G"
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr "Dhives Akuru"
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr "Khitan klein-skrif"
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr "Lisu Toevoeging"
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr "Simbole vir Retro Rekenaars"
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr "Tangut Toevoeging"
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr "Yezidi"
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "Links-na-regs (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "Regs-na-links (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "Gebruik bogeskikte objekinstellings"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "Links na regs (horisontaal)"
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "Regs na links (horisontaal)"
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "Regs na links (vertikaal)"
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Links na regs (vertikaal)"
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "Onder-na-bo, links-na-regs (vertikaal)"
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Fontwerk"
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr "Digitaal onderteken deur:"
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr "Datum: %1"
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Transpirant:"
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr "Wys geen grense"
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr "Wys slegs Buite Grense"
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Wys Buite Grense en Horisontale lyne"
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Wys Buite Grense en all Binneste Lyne"
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr "Wys Buite Grense en Vertikale Lyne"
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Wys Buite Grense sonder Verandering aan Binneste Lyne"
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr "Stel slegs Diagnale Lyne"
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr "Stel al Vier Grense"
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr "Stel slegs Linker en Regter Grense"
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr "Stel slegs Bo en Onder Grense"
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr "Stel Boonste en Onderste Grense, en Alle Horisontale Lyne"
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr "Stel slegs Linker Grens"
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr "Stel slegs Regter Grens"
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr "Stel slegs Bogrens"
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr "Stel slegs Ondergrens"
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Stel Bo- en Ondergrense, en alle Binneste Lyne"
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Stel Linker en Regter Grense, en Alle Binneste Lyne"
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10705,7 +10820,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Diagonale randlyn van onder links na bo regs"
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10713,11 +10828,29 @@ msgstr "Diagonale randlyn van onder links na bo regs"
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr "Normaal"
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr "Vetletters"
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr "Skuinsletters"
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr "Vals"
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr "Waar"
@@ -13608,176 +13741,44 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "Voeg _kolom in"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "Tekskassie"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr "Merkblokkie"
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr "Kombinasiekassie"
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "Lyskassie"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "Datum-veld"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "Tyd-veld"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "Numeriese veld"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr "Geldeenheidveld"
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr "Patroonveld"
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr "Geformateerde veld"
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr "Datum- en tydveld"
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "Ve_rvang met"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "Tekskassie"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr "Merkblokkie"
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr "Kombinasiekassie"
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "Lyskassie"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "Datum-veld"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "Tyd-veld"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "Numeriese veld"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr "Geldeenheidveld"
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr "Patroonveld"
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr "Geformateerde veld"
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr "Datum- en tydveld"
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "Skrap kolom"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr "Versteek _kolomme"
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr "Wy_s kolomme"
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "_Meer..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
msgctxt "colsmenu|all"
msgid "_All"
msgstr "Almal"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
msgctxt "colsmenu|column"
msgid "Column..."
msgstr "Kolom..."
@@ -13932,126 +13933,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "Beeldinligting"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "_Tekskassie"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "_Knoppie"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "Etiket_veld"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "G_roepkassie"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "_Lyskassie"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr "_Merkblokkie"
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr "_Radioknoppie"
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr "_Kombinasiekassie"
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "_Beeldknoppie"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "_Lêerseleksie"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "_Datum-veld"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "Tyd-v_eld"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "_Numeriese veld"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr "_Geldeenheidveld"
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr "_Patroonveld"
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr "_Beeldkontrole"
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr "Gefo_rmateerde veld"
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr "Rolbalk"
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr "Spinknoppie"
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr "Navigasiebalk"
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
@@ -14878,7 +14759,7 @@ msgstr "Verligting"
#: svx/uiconfig/ui/docking3deffects.ui:1667
msgctxt "docking3deffects|label20"
msgid "_Type"
-msgstr "Soort"
+msgstr "Soor_t"
#. txLj4
#: svx/uiconfig/ui/docking3deffects.ui:1684
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 63f7b076122..b648f37fb9a 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: 2021-02-22 17:18+0100\n"
-"PO-Revision-Date: 2021-02-18 20:37+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
"Language: af\n"
@@ -1564,11 +1564,11 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr "Numering Beginwaarde"
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
-msgstr "Numering Stylnaam"
+msgid "List Style Name"
+msgstr "Lys-styl Naam"
#. zrVDM
#: sw/inc/inspectorproperties.hrc:182
@@ -2268,1504 +2268,1559 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "Spieëlbeeld"
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr "Herstel na ~Boliggende"
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr "Waardes gegewe in die tabblad \"Bevat\" word in \"Organiseerder\" verwyder."
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr "Terugstel"
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr "Ongestoorde wysigings in die tabblad word teruggestel."
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr "Herstel enige veranderinge op die huidige tabblad aangebring na die instellings wat aanwesig was toe die dialoogvenster oopgemaak is, of na die laaste gebruik van \"Toepas\"."
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr "Pas toe"
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr "Stoor alle wysigings sonder om die dialoog te sluit. Daarna kan dit nie teruggestel word met \"Herstel\" nie."
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr "Waardes in hierdie tabblad word gestel op die ooreenkomstige styl-waardes soos gespesifiseer in \"Oorgeneem vanaf \", in die Organiseerder. In alle gevalle wanneer \"Oorgeneem vanaf\" vakant is, word die waardes op hierdie tabblad in \"Bevat\"-area, verwyder."
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr "Verstek Karakter Styl"
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "Voetnoot-karakters"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "Bladsynommer"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "Byskrifkarakters"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "Vallende hoofletters"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "Nommeringsimbole"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr "Koeëlpunt paragrawe"
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "Internetskakel"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "Besoekte internetskakel"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "Plekhouer"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "Indeksskakel"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "Eindnoot-karakters"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "Reëlnommering"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "Hoofindeksinskrywing"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "Voetnoot-anker"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "Eindnoot-anker"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr "Klein drukletters"
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "Simbole vir vertikale nommering"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "Beklemtoning"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr "Aanhaling"
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "Sterk beklemtoning"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "Bronteks"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "Voorbeeld"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "Gebruikersinskrywing"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "Veranderlike"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "Definisie"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "Teletipe"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "Raam"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "Grafika"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "Formule"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "Kantaantekeninge"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "Watermerk"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "Etikette"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr "Verstek Paragraaf Styl"
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "Teksliggaam"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "Eerstereël-inkeep"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "Hangende inkeep"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "Teksliggaaminkeep"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr "Komplimentêre afsluiting"
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "Handtekening"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "Opskrif"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr "Lys"
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "Indeks"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "Lysinkeep"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "Kantaantekeninge"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "Opskrif 1"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "Opskrif 2"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "Opskrif 3"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "Opskrif 4"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "Opskrif 5"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "Opskrif 6"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "Opskrif 7"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "Opskrif 8"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "Opskrif 9"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "Opskrif 10"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "Nommering 1 Begin"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "Nommering 1"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "Nommering 1 Einde"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "Nommering 1 Vlg."
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "Nommering 2 Begin"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "Nommering 2"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "Nommering 2 Einde"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "Nommering 2 Vlg."
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "Nommering 3 Begin"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "Nommering 3"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "Nommering 3 Einde"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "Nommering 3 Vlg."
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "Nommering 4 Begin"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "Nommering 4"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "Nommering 4 Einde"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "Nommering 4 Vlg."
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "Nommering 5 Begin"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "Nommering 5"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "Nommering 5 Einde"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "Nommering 5 Vlg."
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr "Lys 1 Begin"
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr "Lys 1"
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr "Lys 1 Einde"
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr "Lys 1 Vervolg"
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr "Lys 2 Begin"
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr "Lys 2"
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr "Lys 2 Einde"
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr "Lys 2 Vervolg"
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr "Lys 3 Begin"
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr "Lys 3"
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr "Lys 3 Einde"
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr "Lys 3 Vervolg"
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr "Lys 4 Begin"
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr "Lys 4"
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr "Lys 4 Einde"
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr "Lys 4 Vervolg"
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr "Lys 5 Begin"
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr "Lys 5"
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr "Lys 5 Einde"
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lys 5 Vervolg"
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr "Kopstuk en voetstuk"
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "Kop"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "Kop links"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "Kop regs"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "Voet"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "Voet links"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "Voet regs"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "Tabelinhoud"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "Tabelopskrif"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr "Raaminhoud"
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "Voetnoot"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "Eindnota"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "Byskrif"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "Illustrasie"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "Tabel"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "Teks"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "Tekening"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr "Figuur"
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr "Geadresseerde"
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr "Afsender"
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "Indeksopskrif"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "Indeks 1"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "Indeks 2"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "Indeks 3"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "Indeksskeisimbool"
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "Inhoudopskrif"
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Inhoud 1"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Inhoud 2"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Inhoud 3"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Inhoud 4"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Inhoud 5"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Inhoud 6"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Inhoud 7"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Inhoud 8"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Inhoud 9"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Inhoud 10"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "Gebruikersindeks-opskrif"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "Gebruikersindeks 1"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "Gebruikersindeks 2"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "Gebruikersindeks 3"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "Gebruikersindeks 4"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "Gebruikersindeks 5"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "Gebruikersindeks 6"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "Gebruikersindeks 7"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "Gebruikersindeks 8"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "Gebruikersindeks 9"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "Gebruikersindeks 10"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "Aanhaling"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr "Figuur Indekse Opskrifte"
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr "Figuurindeks 1"
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "Objekindeks-opskrif"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "Objekindeks 1"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "Tabelindeks-opskrif"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "Tabelindeks 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "Bibliografie-opskrif"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "Bibliografie 1"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Titel"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "Subtitel"
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr "Aanhangsel"
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "Aanhalings"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "Vooraf geformateerde teks"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "Horisontale reël"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "Lysinhoud"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "Lysopskrif"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr "Verstek Bladsy Styl"
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Eerste bladsy"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "Linkerbladsy"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Regterbladsy"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr "Koevert"
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "Indeks"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "Voetnoot"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "Eindnota"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "Landskap"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "Nommering 123"
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "Nommering ABC"
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr "Nommering abc"
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "Nommering IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "Nommering ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr "Paragraaf Koeëlpunt •"
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr "Paragraaf Koeëlpunt –"
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr "Paragraaf Koeëlpunt "
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr "Paragraaf Koeëlpunt "
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr "Paragraaf Koeëlpunt "
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "1 kolom"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "2 kolomme met gelyke grootte"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "3 kolomme met gelyke grootte"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "2 kolomme met verskillende grootte (links > regs)"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "2 kolomme met verskillende grootte (links < regs)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr "Verstek Tabel Styl"
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Paragraafstyle"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "Karakterstyle"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Raamstyle"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Bladsystyle"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "Lysstyle"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Tabelstyle"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Koevert"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Etikette"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-teksdokument"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Kan nie dokument open nie."
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Kan nie dokument skep nie."
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Filter nie gevind nie."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Naam en pad van meesterdokument"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "Naam en pad van HTML-dokument"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "Redigeer skrip"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "Boekmerk"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr "Ja"
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr "Nee"
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr "Nie-toegelate Karakters:"
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[Geen]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Begin"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Einde"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "Bo"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "Onder"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "leesalleen"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "Die “Outoteks”-gidse is leesalleen. Wil u die dialoog vir padinstellings oopmaak?"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Statistieke"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr "Hierdie opsie is gedeaktiveer as die hoofstuk nommering deel is van 'n paragraaf styl."
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Trek tans dokument in..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Voer tans dokument uit..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Stoor tans dokument..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Herrangskik bladsye..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Formateer dokument tans outomaties..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Soek..."
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Brief"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Speltoets..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Woordafbreking..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Voeg tans indeks in..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Werk tans indeks by..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Skep tans abstrak..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Pas objekte aan..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Tabel"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Beeld"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Objek"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Raam"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "Vorm"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Afdeling"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Nommering"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "skoon bladsy"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Abstrak: "
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "geskei deur: "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "Skema: Vlak "
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Styl: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Bladsynommer: "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Breek voor nuwe bladsy"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Westerse teks: "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Asiatiese teks: "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr "KTL-teks: "
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "Onbekende outeur"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Skrap ~alle opmerkings deur $1"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Versteek alle opmerki~ngs deur $1"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr "Hoofstuk Nommering"
@@ -3773,14 +3828,14 @@ msgstr "Hoofstuk Nommering"
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "Gemerk: $1, $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3789,7 +3844,7 @@ msgstr[1] "$1 woorde"
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3799,7 +3854,7 @@ msgstr[1] "$1 karakters"
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1, $2"
@@ -3807,7 +3862,7 @@ msgstr "$1, $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3817,7 +3872,7 @@ msgstr[1] "$1 woorde"
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3825,91 +3880,91 @@ msgstr[0] "$1 karakter"
msgstr[1] "$1 karakters"
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Skakel teks om na tabel"
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Voeg Outoformaat by"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Naam"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Skrap Outoformaat"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "Die volgende Outoformaat-inskrywing sal geskrap word:"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Hernoem Outoformaat"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Sluit"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Jan"
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb"
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mrt"
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "Noord"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mid"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Suid"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Som"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3921,416 +3976,416 @@ msgstr ""
"Probeer weer met ’n ander naam."
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Numeries"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Rye"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "Kolom"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Redigeer bibliografie-inskrywing"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Voeg bibliografie-inskrywing in"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "Spasiëring tussen %1 en %2"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Kolom %1 se wydte"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "%PRODUCTNAME Writer-tabel"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "%PRODUCTNAME Writer-raam"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "%PRODUCTNAME Writer-beeld"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "Ander OLE-objekte"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr "Die naam van die tabel mag nie spasies bevat nie."
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr "Gemerkte tabelselle is te kompleks om saam te voeg."
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "Seleksie kan nie gesorteer word nie"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "Kliek objek"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Voordat Outoteks ingevoeg word"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "Nadat Outoteks ingevoeg is"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Muis oor objek"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Aktiveer hiperskakel"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Muis verlaat objek"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "Beeld suksesvol gelaai"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "Laai van beeld is gestaak"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "Kon beeld nie laai nie"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Invoer van alfanumeriese karakters"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Invoer van niealfanumeriese karakters"
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Verstel raamgrootte"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Skuif raam"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Opskrifte"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Tabelle"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr "Rame"
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Beelde"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE-objekte"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Boekmerke"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Afdelings"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Hiperskakels"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Verwysings"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Tekenobjekte"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Opmerkings"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Opskrif 1"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "Hierdie is die inhoud van die eerste hoofstuk. Dit is ’n inskrywing vir ’n gebruikersindeks."
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Opskrif 1.1"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr "Hierdie is die inhoud van hoofstuk 1.1. Dit is die inskrywing vir die inhoudsopgawe."
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Opskrif 1.2"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr "Hierdie is die inhoud van hoofstuk 1.2. Dié sleutelwoord is die hoofinskrywing."
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "Tabel 1: Hierdie is tabel 1"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "Beeld 1: Hierdie is beeld 1"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr "Sleutelwoord"
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr "Gebruikergidsinskrywing"
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr "Inskrywing"
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr "hierdie"
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr "1. Primêre Sleutel"
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr "2. Sekondêre Sleutel"
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Opskrif"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Tabel"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr "Raam"
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Boekmerk"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Afdeling"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Verwysing"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "Indeks"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Opmerking"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Tekenobjek"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Bykomende formate..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Stelsel]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4340,626 +4395,626 @@ msgstr ""
"in ’n ander dokument"
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Woordafbreking"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr "Ontbrekende Koppelteken Data"
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr "Installeer asb. die koppelteken vir gebiedskema \"%1\"."
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "nie moontlik nie"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Skrap $1"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Voeg $1 in"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Oorskryf: $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Nuwe paragraaf"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Skuif"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Pas attribute toe"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Pas style toe: $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Laai attribute terug"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Verander styl: $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Voeg lêer in"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Voeg Outoteks in"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Skrap boekmerk: $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Voeg boekmerk in: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Sorteer tabel"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Sorteer teks"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Voeg tabel in: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Skakel om teks → tabel"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Skakel om tabel → teks"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Kopieer: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Vervang $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Voeg bladsybreuk in"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Voeg kolombreuk in"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Voeg koevert in"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Kopieer: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Skuif: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Voeg %PRODUCTNAME-grafiek in"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Voeg raam in"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Skrap raam"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Outoformaat"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Tabelopskrif"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Vervang: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Voeg afdeling in"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Skrap afdeling"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Wysig afdeling"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Wysig verstek waardes"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Vervang styl: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Skrap bladsybreuk"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Tekskorreksie"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Verhef/verlaag skema"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Skuif skema"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Voeg nommering in"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Verhef vlak"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Verlaag vlak"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Skuif paragrawe"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Voeg tekenobjek in: $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Nommer aan/af"
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Vergroot keep"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Verklein keep"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Voeg opskrif in: $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Herbegin nommering"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Wysig voetnoot"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Aanvaar wysiging: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Verwerp wysiging: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Verdeel tabel"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Stop eienskap"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Voeg tabel saam"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Verander letterkas"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Skrap nommering"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Tekenobjekte: $1"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Groepeer tekenobjekte"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Degroepeer tekenobjekte"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Skrap tekenobjekte"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Vervang beeld"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Skrap beeld"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Pas tabeleienskappe toe"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Outoformateer tabel"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Voeg kolom in"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Voeg ry in"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Skrap ry/kolom"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Skrap kolom"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Skrap ry"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Verdeel selle"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Voeg selle saam"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formateer sel"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Voeg indeks/tabel in"
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Verwyder indeks/tabel"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Stel wyser"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr "Koppel rame"
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr "Ontkoppel rame"
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Wysig voetnootopsies"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Vergelyk dokument"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Pas raamstyl toe: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Robyninstelling"
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Voeg voetnoot in"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "voeg URL-knoppie in"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Voeg hiperskakel in"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "verwyder onsigbare inhoud"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Tabel/indeks gewysig"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "“"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "”"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "veelvoudige seleksie"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Tik: $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Plak knipbord"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "voorkomste van"
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -4967,7 +5022,7 @@ msgstr[0] "Een keep"
msgstr[1] "$1 kepe"
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -4975,308 +5030,308 @@ msgstr[0] "Een lynbreuk"
msgstr[1] "$1 lynbreuke"
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "bladsybreuk"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "kolombreuk"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Voeg $1 in"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Skrap $1"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Attribute gewysig"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Tabel het verander"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Styl het verander"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Paragraafformatering het verander"
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Voeg ry in"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Skrap ry"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Voeg sel in"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Skrap sel"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 wysigings"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Wysig bladsystyl: $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Skep bladsystyl: $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Skrap bladsystyl: $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Hernoem bladsystyl: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Kopstuk/voetstuk het verander"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Veldname het verander"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Skep paragraafstyl: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Skrap paragraafstyl: $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Hernoem paragraafstyl: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Skep karakterstyl: $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Skrap karakterstyl: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Hernoem karakterstyl: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Skep raamstyl: $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Skrap raamstyl: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Hernoem raamstyl: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Skep nommerstyl: $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Skrap nommerstyl: $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Hernoem nommerstyl: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Hernoem boekmerk: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Voeg indeksinskrywying in"
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Skrap indeksinskrywing"
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "veld"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr "Teksveld"
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Paragrawe"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "raam"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE-objek"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "formule"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "grafiek"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "opmerking"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "kruisverwysing"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "skrip"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "bibliografie-inskrywing"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "spesiale karakter"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "voetnoot"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "beeld"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "tekenobjek(te)"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "tabel: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5284,1665 +5339,1665 @@ msgstr[0] "hoofstuk"
msgstr[1] "hoofstukke"
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "paragraaf"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Paragrarafteken"
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Verander objektitel van $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Wysig Objek Beskrywing van $1"
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Skep bladsystyl: $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Skrap bladsystyl: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Werk bladsystyl by: $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Skrap bladsy"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr "Voeg vorm-veld in"
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr "U kan maksimum 25 elemente spesifiseer vir 'n Aftuimel-Vormveld."
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Dokumentaansig"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Dokumentaansig"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Kop $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Kopbladsy $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Voet $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Voetbladsy $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Voetnoot $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Voetnoot $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Eindnoot $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Eindnoot $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) op bladsy $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Bladsy $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Bladsy: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Outeur"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Datum"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr "Opgelos"
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Aksies"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "Aktiveer dié knoppie om ’n lys aksies wat op dié opmerking en ander opmerkings verrig kan word te open"
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Dokumentvoorskou"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Voorskoumodus)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME-dokument"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Leesfout"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Beeld kan nie vertoon word nie."
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Fout tydens lees van die knipbord."
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Handmatige kolombreuk"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ry %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Kolom %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Karakter"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Raam"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Bladsye"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "Nommering"
+msgid "List"
+msgstr "Lys"
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Tabel"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Sel"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Asiaties"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "KTL"
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Westers"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Inhoud"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "~Bladsyagtergrond"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "Beelde en ander graf~ika-objekte"
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Verstee~kte teks"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "~Teksplekhouers"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Vormkontrole~s"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Kleur"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Druk te~ks in swart"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Bladsye:"
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Druk ~outomaties ingevoegde leë bladsye"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Gebr~uik slegs die papierlaai van die drukvoorkeure"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Geen (slegs dokument)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Slegs opmerkings"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Plaas aan einde van dokument"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Plaas aan einde van bladsy"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Opmerkings"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Brosj~ure"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Links-na-regs-skrif"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Regs-na-links-skrif"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr "Alle Bladsye"
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Bladsye:"
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr "Ewe bladsye"
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr "Onewe bladsye"
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "Gekiesde"
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Plaas in kantlyne"
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Funksies"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Kanselleer"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Pas toe"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Formule-nutsbalk"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Soort formule"
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Formuleteks"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "Globale Oorsig"
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Aansig vir inhoudnavigering"
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Skemavlak"
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Sleepmodus"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Stuur Buitelyn na die Knipbord"
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Buitelyn Spoor"
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr "Verstek"
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr "Kokus"
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr "Af"
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr "Klik om inhoud se sigbaarheid te wissel"
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "regsmuisklik om subvlakke in te sluit"
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr "Klik om inhoud se sigbaarheid te wissel"
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "regsmuisklik om subvlakke in te sluit"
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr "raamwerkinhoud se sigbaarheid"
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr "Wissel"
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr "Vertoon Alles"
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr "Verberg Alles"
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr "Alles uitvou"
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr "Alles invou"
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Voeg hiperskakel in"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Voeg as skakel in"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Voeg as kopie in"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Vertoon"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Aktiewe venster"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "versteek"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "aktief"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "onaktief"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Redigeer..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "~Werk by"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Redigeer"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Redigeer skakel"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Voeg in"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "~Indeks"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "Lêer"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Nuwe dokument"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Teks"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Skrap"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~Skrap"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Seleksie"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Skakels"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "versteek"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Lêer nie gevind nie: "
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr "OPGELOS"
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Links: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Regs: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Binnekant: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Buitekant: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Bo: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". Onder: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Bladsy"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Reël"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Sintaksfout **"
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Deling deur nul **"
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Hakies verkeerd gebruik **"
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Oorvloei in Kwadraatfunksie **"
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Oorvloei **"
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Fout **"
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Uitdrukking is foutief **"
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Fout: Verwysingsbron nie gevind nie"
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Geen"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(vaste)"
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Alfabetiese indeks"
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Gebruikergedefinieer"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Inhoudsopgawe"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Bibliografie"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Aanhaling"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Tabelindeks"
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Objektabel"
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Figuurtabel"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Titel"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Onderwerp"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Sleutelwoorde"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Opmerkings"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Geskep"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Gewysig"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Laas gedruk"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Hersieningsnommer"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Totale redigeertyd"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Skakel $(ARG1) om"
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Skakel eers $(ARG1) om"
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Skakel dan $(ARG1) om"
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Artikel"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Boek"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Brosjures"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Boekuittreksel"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Boekuittreksel met titel"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Joernaal"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Tegniese dokumentasie"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Tesis"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Allerlei"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Verhandeling"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Navorsingsverslag"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Ongepubliseer"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "E-pos"
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "WWW-dokument"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Gebruikergedefinieer1"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Gebruikergedefinieer2"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Gebruikergedefinieer3"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Gebruikergedefinieer4"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Gebruikergedefinieer5"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Kort naam"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Soort"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Adres"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Annotering"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Outeur(s)"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Boektitel"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Uitgawe"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Redakteur"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Soort publikasie"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Instelling"
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Joernaal"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Maand"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Nommer"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Organisasie"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Bladsy(e)"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Uitgewer"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Universiteit"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Reeks"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Soort verslag"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Volume"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Jaar"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Gebruikergedefinieer1"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Gebruikergedefinieer2"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Gebruikergedefinieer3"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Gebruikergedefinieer4"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Gebruikergedefinieer5"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Redigeer indeksinskrywing"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Voeg indeksinskrywying in"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "Hierdie dokument bevat reeds die bibliografie-inskrywing maar met ander data. Wil u die bestaande inskrywings aanpas?"
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Opmerking"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Wys opmerkings"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Versteek opmerkings"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Kortpadnaam bestaan reeds. Kies asseblief ’n ander naam."
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Skrap Outoteks?"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Skrap die kategorie "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "OutoTeks:"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Stoor Outoteks"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Daar is geen Outoteks in hierdie lêer nie."
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "My Outoteks"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Outoteks vir kortpad “%1” nie gevind nie."
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "’n Tabel kan nie met geen rye of kolomme ingevoeg word nie"
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Die tabel kan nie ingevoeg word nie want hy is te groot"
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Outoteks kon nie geskep word nie."
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "Verlangde knipbordformaat is nie beskikbaar nie."
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-teksdokument"
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Beeld (%PRODUCTNAME %PRODUCTVERSION-teksdokument)"
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Objek (%PRODUCTNAME %PRODUCTVERSION-teksdokument)"
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE-skakel)"
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Opmerkings deur "
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(geen datum)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(geen outeur)"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Antwoord aan $1"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Redigeer adresblok"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Eie aanhef (manlike ontvangers)"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Eie aanhef (vroulike ontvangers)"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Aanhefe~lemente"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Voeg by aanhef"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Verwyder uit aanhef"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~Sleep aanhefelemente na die boksie hieronder"
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Aanhef"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Leesteken"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Teks"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Wys die velde toe uit u databron wat pas by die adreselemente."
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Aanhefvoorskou"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Adreselemente"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Aanhefelemente"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Pas by veld:"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Voorskou"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr "Wil u die geregistreerde Databron verwyder?"
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " nog nie gepas nie "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Alle lêers"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Adreslyste (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Skoonteks (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Teks met kommas geskei (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -6954,91 +7009,91 @@ msgstr ""
"Wil u die epos rekeninginligting nou invoer?"
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME-adreslys (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Kies begindokument"
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Kies die dokumenttipe"
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Voeg adresblok in"
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Kies adreslys"
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Skep aanhef"
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Pas uitleg aan"
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "Sluit ontvanger uit"
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Klaar"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Massapos-slimmerd"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabel"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Navraag"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Wil u weer van die dokument se begin af toets?"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Die speltoets is klaar."
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "Geen woordeboek beskikbaar nie"
@@ -7048,252 +7103,252 @@ msgstr "Geen woordeboek beskikbaar nie"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Datum"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Tyd"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Lêernaam"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Databasisnaam"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Hoofstuk"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Bladsynommer"
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Statistieke"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Outeur"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Sjablone"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Afsender"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Stel veranderlike"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Wys veranderlike"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Voeg formule in"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Toevoerveld"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Toevoerveld (veranderlike)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Toevoerveld (gebruiker)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Voorwaardelike teks"
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE-veld"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Voer makro uit"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Getalomvang"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Stel bladsyveranderlike"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Wys bladsyveranderlike"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Laai URL"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Plekhouer"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Kombineer karakters"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Toevoerlys"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Stel verwysing"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Voeg verwysing in"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Massapos-velde"
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Volgende rekord"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Enige rekord"
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Rekordnommer"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Vorige bladsy"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Volgende bladsy"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Versteekte teks"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Gebruikerveld"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Skrip"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Bibliografie-inskrywing"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Versteekte paragraaf"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "DokInligting"
@@ -7302,87 +7357,87 @@ msgstr "DokInligting"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Datum"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Datum (vas)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Tyd"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Tyd (vas)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tabelle"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Karakters"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Woorde"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Paragrawe"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Beeld"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Objekte"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Bladsye"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "Outomatiese DDE"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "Handmatige DDE"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Teks]"
@@ -7391,103 +7446,103 @@ msgstr "[Teks]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Maatskappy"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Naam"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Van"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Voorletters"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Straat"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Land"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Poskode"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Stad"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Titel"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posisie"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Foon (tuis)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Foon (werk)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Faks"
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "E-pos"
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Provinsie"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "af"
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "aan"
@@ -7497,37 +7552,37 @@ msgstr "aan"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Lêernaam"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Lêernaam sonder uitbreiding"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Pad/lêernaam"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Pad"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr "Sjabloonnaam"
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Kategorie"
@@ -7536,25 +7591,25 @@ msgstr "Kategorie"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Naam van hoofstuk"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Hoofstuknommer"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Hoofstuknommer sonder skeisimbool"
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Hoofstuknommer en -naam"
@@ -7563,55 +7618,55 @@ msgstr "Hoofstuknommer en -naam"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Romeinse syfers (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Romeinse syfers (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Arabiese syfers (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Soos bladsystyl"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Teks"
@@ -7620,13 +7675,13 @@ msgstr "Teks"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Naam"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Voorletters"
@@ -7635,49 +7690,49 @@ msgstr "Voorletters"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Stelsel"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Naam"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Formule"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Databasis"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Stelsel"
@@ -7686,19 +7741,19 @@ msgstr "Stelsel"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Tyd"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Datum"
@@ -7707,79 +7762,79 @@ msgstr "Datum"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "Verwysing"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Bladsy"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "Bo/Onder"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "Soos bladsystyl"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Kategorie en nommer"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Byskrifteks"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Nommering"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Nommer"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Nommer (geen konteks)"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Nommer (volledige konteks)"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Artikel a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Artikel A/Az + "
@@ -7788,31 +7843,31 @@ msgstr "Artikel A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Teks"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabel"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Raam"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Beeld"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Objek"
@@ -7821,1499 +7876,1499 @@ msgstr "Objek"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Voorwaarde"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Dan, Anders"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE-stelling"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Versteekte t~eks"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "~Makronaam"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Verwysing"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "K~arakters"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "Regstelling"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Waarde"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Formule"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Doelgemaak"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Gebruiker]"
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "H. Hoogte"
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "V. Hoogte"
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Wydte"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Hoogte"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Linkerkantlyn"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Bokantlyn"
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Kolomme"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Rye"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Woord- en karaktertelling. Klik om die Woordtellingdialoog oop te maak."
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Enkelbladaansig"
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Multibladaansig"
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Boekaansig"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Bladsynommer in dokument. Klik om die “Gaan na bladsy”-dialoog oop te maak, of klik regs vir boekmerklys."
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Bladsynommer in dokument (bladsynommer op gedrukte dokument). Klik om die “Gaan na bladsy”-dialoog oop te maak."
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Bladsystyl. Klik regs om die styl te verander of klik om die styldialoog oop te maak."
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Hoofletters oor"
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "rye"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Geen vallende hoofletters"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Geen bladsybreuk"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Moenie weerspieël nie"
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Swaai vertikaal om"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Swaai horisontaal om"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Horisontale en vertikale omswaai"
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ horisontale weerspieëling op ewe bladsye"
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Karakterstyl"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Geen karakterstyl"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Voet"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Geen voet"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Kop"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Geen kop"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr "Optimaal"
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Geen"
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Deur"
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr "Parallel"
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr "Voor"
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr "Daarna"
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Slegs anker)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Wydte:"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Vaste hoogte:"
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Min. hoogte:"
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "aan paragraaf"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "aan karakter"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "aan bladsy"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X-koördinaat:"
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y-koördinaat:"
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "bo"
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Vertikaal gesentreer"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "onder"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Bokant van reël"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Reël gesentreer"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Onderkant van reël"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "Bladsy lyn-spasiëring"
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "Nie-bladsy lynspasiëring"
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "regs"
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Horisontaal gesentreer"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "links"
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "binnekant"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "buitekant"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Volle breedte"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Kolomme"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Wydte van skeisimbool:"
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Maks. voetnoot-area:"
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Redigeerbaar in leesalleen-dokument"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Verdeel"
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "Nommering"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr "Lys Styl: (%LISTSTYLENAME)"
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "geen nommering"
+msgid "List Style: (None)"
+msgstr "Lys Styl: (Geen)"
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "geskakel met "
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "en "
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Tel reëls"
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "moenie reëls tel nie"
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "herbegin reëltelling by: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Helderheid: "
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Rooi: "
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Groen: "
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Blou: "
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Kontras: "
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Gamma: "
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Deursigtigheid: "
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Keer om"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "moenie omkeer nie"
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Grafikamodus: "
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Standaard"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Grys skale"
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Swart-en-wit"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Watermerk"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Rotasie"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Geen rooster"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Rooster (slegs reëls)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Rooster (reëls en karakters)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Volg teksvloei"
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Moenie teksvloei volg nie"
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Voeg rande saam"
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Moenie rande saamvoeg nie"
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabel"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr "Raam"
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "Bladsy"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Tekening"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Beheer"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
msgctxt "ST_REG"
msgid "Section"
msgstr "Afdeling"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Boekmerk"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Grafika"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Opskrifte"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Seleksie"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Voetnoot"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Herinnering"
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Opmerking"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Herhaal soektog"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Indeksinskrywing"
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Tabelformule"
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Verkeerde tabelformule"
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr "Onlangsheid"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Volgende tabel"
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr "Volgende raam"
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Volgende bladsy"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Volgende tekening"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Volgende kontrole"
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Volgende afdeling"
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Volgende boekmerk"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Volgende grafika"
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Volgende OLE-objek"
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Volgende opskrif"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Volgende seleksie"
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Volgende voetnoot"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Volgende herinnering"
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Volgende opmerking"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Soek verder vorentoe"
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Volgende indeksinskrywing"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Vorige tabel"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr "Vorige raam"
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Vorige bladsy"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Vorige tekening"
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Vorige kontrole"
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Vorige afdeling"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Vorige boekmerk"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Vorige grafika"
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Vorige OLE-objek"
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Vorige opskrif"
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Vorige seleksie"
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Vorige voetnoot"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Vorige herinnering"
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Vorige opmerking"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Soek verder agtertoe"
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Vorige indeksinskrywing"
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Vorige tabelformule"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Volgende tabelformule"
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Vorige foutiewe tabelformule"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Volgende foutiewe tabelformule"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr "Gaan terug"
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr "Gaan vooruit"
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Ingevoeg"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Geskrap"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Geformateer"
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Tabel het verander"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Paragraafformatering het verander"
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ry ingevoeg"
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ry geskrap"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Sel ingevoeg"
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Ry geskrap"
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Eindnoot: "
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Voetnoot: "
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "[%s+Kliek], om die 'Smart Tag' kieslys oop te maak"
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Kop (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Eerste bladsykop (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Linkerbladsykop (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Regterbladsykop (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Voet (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Eerste bladsyvoet (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Linkerbladsyvoet (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Regterbladsyvoet (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Skrap kop..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Formateer kop..."
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Skrap voet..."
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Formateer voet..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Onbeweeglike Tabel"
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr "Redigeer bladsybreuk"
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeldlêer kan nie oopgemaak word nie"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeldlêer kan nie gelees word nie"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeldformaat"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Hierdie beeldlêerweergawe word nie ondersteun nie"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeldfilter nie gevind nie"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Nie genoeg geheue om die beeld in te voeg nie."
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Voeg beeld in"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Opmerking: "
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Invoeging"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Skrapping"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Formate"
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Tabelveranderinge"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Bladsy "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Bladsy %1 van %2"
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Bladsy %1 van %2 (bladsy %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Bladsy %1 van %2 (Bladsy %3 van %4 vir drukwerk)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Raam"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabel"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Tabelry"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Tabelsel"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Bladsy"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Kop"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Voet"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-HTML-dokument"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titel"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Skeier"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Vlak "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Die lêer “%1” in die “%2” pad kon nie gevind word nie."
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Gebruikergedefinieerde indeks"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<geen>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<geen>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "H#"
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "HI"
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "BH"
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Hoofstuknommer"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Inskrywing"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Inkeep"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Teks"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Bladsynommer"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Hoofstukinligting"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Begin van hiperskakel"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Einde van hiperskakel"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Bibliografie-inskrywing: "
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Karakterstyl: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Teks Struktuur"
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Druk Ctrl+Alt+A om fokus te skuif vir meer bewerkings"
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Druk linker- of regterpyltjie om die struktuurkontroles te kies"
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Druk Ctrl+Alt+B om fokus terug te skuif na die huidige struktuurkontrole"
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Keuringslêer vir indeks (* .sdi)"
@@ -9322,259 +9377,259 @@ msgstr "Keuringslêer vir indeks (* .sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Basislyn ~bo"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~Basislyn onder"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "~Gesentreerde basislyn"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Voeg objek in"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Redigeer objek"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Sjabloon: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Rande"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Agtergrond"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Paragraafstyl: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Bladsynommers kan nie op die huidige bladsy toegepas word nie. Ewe getalle kan op linkerbladsye gebruik word en onewe getalle op regterbladsye."
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-meesterdokument"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "’n Lêerkoppeling sal die inhoud van die huidige afdeling skrap. Nogtans koppel?"
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Die getikte wagwoord is ongeldig."
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Die wagwoord is nie gestel nie."
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Woordafbreking klaar"
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Geen (moenie spelling kontroleer nie)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Stel terug na verstektaal"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Meer..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Ignoreer"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Verduidelikings..."
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Kontrole van spesiale streke is gedeaktiveer. Kontroleer in elk geval?"
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Kon nie dokumente saamvoeg nie."
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "Die %PRODUCTNAME Base-komponent ontbreek en is nodig om massapos te gebruik."
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Die bron kan nie gelaai word nie."
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Geen faksdrukker is onder Nutsgoed/Opsies/%1/Druk gestel nie."
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML-dokument"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Teksdokument"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Bron nie gespesifiseer nie."
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Vlak "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Skema "
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Redigeer voetnoot/eindnoot"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Soeksleutel is XX maal vervang."
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ry "
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Kolom "
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~Voer bron uit..."
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~Voer kopie van bron uit..."
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~Gaan voort"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Stuur aan: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Suksesvol vesend"
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Stuur het misluk"
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "MAATSKAPPY;CR;VOORNAAM; ;VAN;CR;ADRES;CR;STAD; ;PROV; ;POSKODE;CR;LAND;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Teksformule"
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Geen Item gespesifiseer"
@@ -9583,7 +9638,7 @@ msgstr "Geen Item gespesifiseer"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasievlak hoër is"
@@ -9592,121 +9647,121 @@ msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasie
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Geldig "
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Ongeldig"
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Ongeldige handtekening"
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Onderteken deur"
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Paragraafhandtekening"
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Visitekaartjies"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Pos-Instellings"
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Voeg in"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Skrap"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Attribute"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Soekterm"
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Alternatiewe inskrywing"
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1e sleutel"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2e sleutel"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Opmerking"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Selfde kas"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Slegs woord"
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ja"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Nee"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Doelgemaak"
@@ -9837,6 +9892,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "Voeg niebrekende spasie in"
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr "Vertaal RNL Hongaarse teks na Ou Hongaarse skrif"
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -11005,7 +11066,7 @@ msgstr "Ongeorden"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:163
msgctxt "bulletsandnumbering|bullets"
msgid "Select a bullet type for an unordered list."
-msgstr ""
+msgstr "Kies 'n kolpunt tipe vir 'n ongeordende lys."
#. pHHPT
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:210
@@ -11017,7 +11078,7 @@ msgstr "Georden"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:211
msgctxt "bulletsandnumbering|singlenum"
msgid "Select a numbering scheme for an ordered list."
-msgstr ""
+msgstr "Kies 'n nommering skema vir 'n geordende lys."
#. 8AADg
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:259
@@ -11029,7 +11090,7 @@ msgstr "Skema"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:260
msgctxt "bulletsandnumbering|outlinenum"
msgid "Select an outline format for an ordered list."
-msgstr ""
+msgstr "Kies'n skema formaat vir 'n geordende lys."
#. hW6yn
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:308
@@ -11041,7 +11102,7 @@ msgstr "Beeld"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:309
msgctxt "bulletsandnumbering|graphics"
msgid "Select a graphic bullet symbol for an unordered list."
-msgstr ""
+msgstr "Kies 'n grafiese kolpunt simbool vir 'n ongeordende lys."
#. zVTFe
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:357
@@ -11053,7 +11114,7 @@ msgstr "Posisie"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:358
msgctxt "bulletsandnumbering|position"
msgid "Modify indent, spacing, and alignment options for ordered and unordered lists."
-msgstr ""
+msgstr "Wysig die inspringing-, spasiëring- en belyning-opsies vir geordende en ongeordende lyste."
#. nFfDs
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:406
@@ -11065,7 +11126,7 @@ msgstr "Doelmaak"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:407
msgctxt "bulletsandnumbering|customize"
msgid "Design your own bullet or numbering scheme."
-msgstr ""
+msgstr "Ontwerp u eie kolpunt of nommering skema."
#. rK9Jk
#: sw/uiconfig/swriter/ui/businessdatapage.ui:26
@@ -12061,7 +12122,7 @@ msgstr "Toegepaste style"
#: sw/uiconfig/swriter/ui/conditionpage.ui:99
msgctxt "conditionpage|extended_tip|links"
msgid "Here you can see the %PRODUCTNAME predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer."
-msgstr ""
+msgstr "Hier kan u die voorafgedefinieerde kontekste van % PRODUCTNAME sien, insluitend die vlakke 1 tot 10, lysvlakke 1 tot 10, tabelhoof, tabelinhoud, afdeling, rand, voetnota, kop en voetskrif."
#. nDZqL
#: sw/uiconfig/swriter/ui/conditionpage.ui:128
@@ -12199,61 +12260,61 @@ msgstr "10e skemavlak"
#: sw/uiconfig/swriter/ui/conditionpage.ui:243
msgctxt "conditionpage|filter"
msgid " 1st List Level"
-msgstr ""
+msgstr " 1e Lys Vlak"
#. sGSZA
#: sw/uiconfig/swriter/ui/conditionpage.ui:244
msgctxt "conditionpage|filter"
msgid " 2nd List Level"
-msgstr ""
+msgstr " 2e Lys Vlak"
#. FGGC4
#: sw/uiconfig/swriter/ui/conditionpage.ui:245
msgctxt "conditionpage|filter"
msgid " 3rd List Level"
-msgstr ""
+msgstr " 3e Lys Vlak"
#. kne44
#: sw/uiconfig/swriter/ui/conditionpage.ui:246
msgctxt "conditionpage|filter"
msgid " 4th List Level"
-msgstr ""
+msgstr " 4e Lys Vlak"
#. Wjkzx
#: sw/uiconfig/swriter/ui/conditionpage.ui:247
msgctxt "conditionpage|filter"
msgid " 5th List Level"
-msgstr ""
+msgstr " 5e Lys Vlak"
#. R7zrU
#: sw/uiconfig/swriter/ui/conditionpage.ui:248
msgctxt "conditionpage|filter"
msgid " 6th List Level"
-msgstr ""
+msgstr " 6e Lys Vlak"
#. A4QuR
#: sw/uiconfig/swriter/ui/conditionpage.ui:249
msgctxt "conditionpage|filter"
msgid " 7th List Level"
-msgstr ""
+msgstr " 7e Lys Vlak"
#. RiFQb
#: sw/uiconfig/swriter/ui/conditionpage.ui:250
msgctxt "conditionpage|filter"
msgid " 8th List Level"
-msgstr ""
+msgstr " 8ste Lys Vlak"
#. AoCPE
#: sw/uiconfig/swriter/ui/conditionpage.ui:251
msgctxt "conditionpage|filter"
msgid " 9th List Level"
-msgstr ""
+msgstr " 9e Lys Vlak"
#. gLAFZ
#: sw/uiconfig/swriter/ui/conditionpage.ui:252
msgctxt "conditionpage|filter"
msgid "10th List Level"
-msgstr ""
+msgstr "10e Lys Vlak"
#. AniaD
#: sw/uiconfig/swriter/ui/conditionpage.ui:273
@@ -15905,7 +15966,7 @@ msgstr "Anker"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:486
msgctxt "frmtypepage|lbPreview"
msgid "Preview"
-msgstr ""
+msgstr "Voorskou"
#. 7RCJH
#: sw/uiconfig/swriter/ui/frmtypepage.ui:523
@@ -20204,289 +20265,289 @@ msgid "Text"
msgstr "Teks"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Wissel meesteraansig"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Wissel tussen die model aansig en die normale aansig wanneer die dokument oop is."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Gaan na bladsy"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Voer in die bladsynommer en druk \"Enter\". Gebruik die pyle om vorentoe of agtertoe na 'n bladsy te beweeg."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Aansig vir inhoudnavigering"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Wissel tussen die vertoon van alle kategorië in die Navigator en die geselekteerde kategorie."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Kop"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Verskuif die merker na die kopteks, of van die kopteks na die dokument teks area."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Voet"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Verskuif die merker na die voetteks, of van die voetteks na die dokument teks area."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Ankerpunt ↔ Teks"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Spring van die voetnota teks en die voetnota anker."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Definieer onthouplek"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Klik hier om 'n merker op die huidige wyserposisie in te stel. U kan tot vyf vlaggies so definieer. Om na 'n vlaggie te spring, klik op die Navigasiesimbool, dan op die Vlaggie-simbool in die navigasievenster en laastens op die vorige of volgende simbool."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Opskrifvlakke gewys"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Klik op hierdie ikoon en kies dan die aantal opskrifvlakke wat in die Navigator vertoon moet word."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Lysboksie aan/af"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Vertoon of versteek die Navigator lys."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Verhef vlak"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Verhoog die struktuurvlak van die geselekteerde opskrif en die ondergeskikte opskrifte met een vlak. Om die struktuurvlak van slegs die geselekteerde opskrif te verhoog, hou die Ctrl-sleutel ingedruk en klik dan op hierdie ikoon."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Verlaag vlak"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Verlaag die struktuurvlak van die geselekteerde opskrif en die ondergeskikte opskrifte met een vlak. Om slegs die geselekteerde opskrif se struktuurvlak te verlaag, hou die Ctrl-sleutel ingedruk en klik dan op hierdie ikoon."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Verhef hoofstuk"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Verskuif die geselekteerde opskrif, en die teks daaronder, een struktuurposisie opwaarts in die Navigator en in die dokument. Om slegs die geselekteerde opskrif te skuif en nie die geassosieerde teks, hou Ctrl ingedruk en klik dan op die simbool."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Verlaag hoogstuk"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Verskuif die geselekteerde opskrif, en die teks daaronder, een struktuurposisie afwaarts in die Navigator en in die dokument. Om slegs die geselekteerde opskrif te skuif en nie die geassosieerde teks, hou Ctrl ingedruk en klik dan op die simbool."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Sleepmodus"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Spesifiseer die trek-en-los-opsies vir die invoeging van elemente vanaf die Navigator in 'n dokument, byvoorbeeld as u dit as hiperskakels invoeg. Klik op hierdie ikoon en kies dan die opsie wat u wil hê."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Dokument"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Aktiewe venster"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Wissel meesteraansig"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Wissel tussen die model aansig en die normale aansig wanneer die dokument oop is."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Redigeer"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Word gebruik om die komponent wat in die Navigator gekies is, te wysig. As die keuse 'n lêer is, word hierdie lêer oopgemaak vir redigering. As die keuse 'n Indeks is, word die \"Indeks\"-dialoog oopgemaak."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Werk by"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Klik en kies die inhoud wat u wil wysig."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Voeg in"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Voeg in 'n lêer, 'n indeks of 'n nuwe dokument in die hoofdokument."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Stoor inhoud ook"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr "Stoor die inhoud van die gekoppelde lêers in die hoofdokument as 'n kopie. Dit verseker dat die huidige dokumentinhoud beskikbaar is, selfs al is daar nie toegang tot die gekoppelde lêers nie."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Skuif op"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Skuif die seleksie een posisie op in die Navigator lys."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Skuif af"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Skuif die seleksie een posisie af in die Navigator lys."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Seleksie"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Skakels"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
@@ -20528,181 +20589,181 @@ msgid "~File"
msgstr "~Lêer"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Tuis"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Tuis"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Voeg ~in"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Uit~leg"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Uit~leg"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwysing~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Beeld"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Beeld"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_eken"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~eken"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -21746,20 +21807,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "Stoor as"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr "Name van gestoorde formate."
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "Klik op 'n nommersjabloon in die lys en tik dan in, 'n naam vir die sjabloon. Die getalle stem ooreen met die struktuurvlak waarop die sjablone aangewys is."
+msgid "Shows the current saved format names."
+msgstr "Vertoon die huidig gestoorde formaat name."
+
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr "Voer in die formaatnaam wat gestoor gaan word."
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "Klik op 'n nommersjabloon in die lys en tik dan in, 'n naam vir die sjabloon. Die getalle stem ooreen met die struktuurvlak waarop die sjablone aangewys is."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
+msgstr "Voer 'n naam in vir die formaat wat gestoor word. Daarna sal die naam in die lys verskyn met die laai / stoor-slag."
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "Formaat"
@@ -21770,212 +21843,224 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr "Skemavlak:"
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
-msgstr "Selekteer of verander die Omlyningsvlak wat op die geselekteerde paragrawe of paragraafstyl toegepas moet word."
+msgstr "Selekteer of wysig die Skemavlak toegepas op die gemerkte paragrawe of Paragraafstyle."
+
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr "Toegepaste Skemavlak"
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr "Teksliggaam"
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr "Vlak 1"
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr "Vlak 2"
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr "Vlak 3"
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr "Vlak 4"
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr "Vlak 5"
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr "Vlak 6"
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr "Vlak 7"
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr "Vlak 8"
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr "Vlak 9"
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "Vlak 10"
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr "Ken 'n struktuurvlak van 1 tot 10 toe, aan die geselekteerde paragrawe of Paragraaf Style."
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "Skema"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr "_Lys styl:"
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
-msgstr "Kies die lysstyl om toe te pas op die paragraaf."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
+msgstr "Selekteer 'n Lysstyl vir toepassing op die paragraaf."
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr "Aangewysde Lysstyl"
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "Geen"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr "Selekteer die Lys Styl wat u op die paragraaf wil toepas"
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "Redigeer styl"
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr "Wysig die kenmerke van die geselekteerde Lys-Styl."
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr "H_erbegin numering vanaf hierdie paragraaf"
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
-msgstr "Vir Genommerde Lyste en Lysstyle met numering."
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
+msgstr "Vir geordende Lyste en Lysstyle met nommering"
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr "Herbegin die numering met die huidige paragraaf."
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "B_egin by:"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr "Aktiveer die merkveld, en dan voer in die nommer wat u aan die paragraaf wil toeken."
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr "Voer in die nommer wat u aan die paragraaf wil toeken."
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
-msgstr "Lys"
+msgid "Apply List Style"
+msgstr "Pas die Lysstyl toe"
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "Slu_it hierdie paragraaf by die reëlnommering in"
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr "Sluit die huidige paragraaf in die lyn numering."
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "Herbegin by hierdie p_aragraaf"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr "Herbegin die numering met die huidige paragraaf, of met die nommer wat u invoer."
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "B_egin by:"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr "Voer in die nommer waarmee u die numering wil herbegin."
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "Reëlnommering"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr "Voeg by of verwyder uit die paragraaf: skemavlak, lysstyl en reël nommering. U kan ook die nommering in 'n genommerde lys herstel."
@@ -25360,13 +25445,13 @@ msgstr "Stoor agtergrond..."
#: sw/uiconfig/swriter/ui/readonlymenu.ui:156
msgctxt "readonlymenu|backaslink"
msgid "As Link"
-msgstr ""
+msgstr "As Koppeling"
#. CwLB2
#: sw/uiconfig/swriter/ui/readonlymenu.ui:164
msgctxt "readonlymenu|backascopy"
msgid "Copy"
-msgstr ""
+msgstr "Kopie"
#. K9D4E
#: sw/uiconfig/swriter/ui/readonlymenu.ui:188
@@ -27972,11 +28057,11 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr "Open 'n dialoog waar u die geselekteerde karakterstyl kan wysig."
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
-msgstr "Spesifiseer die formaat styl vir die geselekteerde deel van die Struktuurlyn."
+msgid "Specify the character style for the selected part on the Structure line."
+msgstr "Spesifiseer die karakterstyl vir die geselekteerde gedeelte op die Struktuurlyn."
#. 5nWPi
#: sw/uiconfig/swriter/ui/tocentriespage.ui:303
@@ -28230,11 +28315,11 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr "Karakterstyl vir hoofinskrywings:"
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
-msgstr "Definieer die formaatstyl vir die hoofinskrywings in die alfabetiese indeks. Om 'n indeksinvoer in 'n hoofinvoer te omskep, klik voor die indeksveld in die dokument en kies dan \"Edit→Directory entry\"."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgstr "Spesifiseer die karakterstyl vir die hoofinskrywings in die alfabetiese indeks. Om 'n indeks-item in 'n hoofinvoer om te skakel, klik u voor die indeksveld in die dokument en kies dan Wysig - Indeks-item."
#. r33aA
#: sw/uiconfig/swriter/ui/tocentriespage.ui:839
diff --git a/source/af/uui/messages.po b/source/af/uui/messages.po
index 86bb2724007..181adee2568 100644
--- a/source/af/uui/messages.po
+++ b/source/af/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2021-01-26 17:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/af/>\n"
@@ -13,35 +13,35 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560969657.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr "Die bewerking wat op $(ARG1) uitgevoer was, is gestaak."
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr "Toegang tot $(ARG1) is geweier."
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "$(ARG1) bestaan reeds."
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Teiken bestaan reeds."
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -53,7 +53,7 @@ msgstr ""
"bevat wat te groot is om in binêre formaat gestoor te word. As jy nie wil hê gebruikers moet toegang tot die programmateekwagwoord hê om makro's in daardie module(s) te laat loop nie, moet jy daardie modules verdeel in 'n aantal kleiner modules. Wil jy voortgaan om hierdie programmateek te stoor/uit te voer?"
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -73,289 +73,289 @@ msgstr ""
"Is u seker dat hierdie lêer 'n ou dokument van jare gelede is?"
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr "Die data uit $(ARG1) het 'n verkeerde kontrolesom."
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr "Die objek $(ARG1) kan nie in die gids $(ARG2) geskep word nie."
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr "Data van $(ARG1) kon nie gelees word nie."
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr "Die soekbewerking in $(ARG1) kon nie uitgevoer word nie."
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr "Die vertelbewerking in $(ARG1) kon nie uitgevoer word nie."
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr "Data vir $(ARG1) kon nie geskryf word nie."
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr "Aksie onmoontlik: $(ARG1) is die huidige gids."
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr "$(ARG1) is nie gereed nie."
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr "Aksie onmoontlik: $(ARG1) en $(ARG2) is verskillende toestelle (aandrywers)."
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr "Algemene toevoer-/afvoerfout by verkryging van toegang tot $(ARG1)."
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr "'n Poging is aangewend om toegang tot $(ARG1) op 'n ongeldige manier te verkry."
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "$(ARG1) bevat ongeldige karakters."
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr "Die toestel (aandrywer) $(ARG1) is ongeldig."
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr "Die data uit $(ARG1) het 'n ongeldige lengte."
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr "Die bewerking in $(ARG1) is met 'n ongeldige parameter begin."
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr "Die bewerking kan nie uitgevoer word nie want $(ARG1) bevat oorheersstringe."
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr "Fout tydens gedeelde toegang tot $(ARG1)."
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "$(ARG1) bevat misplaaste karakters."
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "Die naam $(ARG1) bevat te veel karakters."
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "$(ARG1) bestaan nie."
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "Die pad $(ARG1) bestaan nie."
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr "Die bewerking in $(ARG1) word nie deur hierdie bedryfstelsel ondersteun nie."
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "$(ARG1) is nie 'n gids nie."
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "$(ARG1) is nie 'n lêer nie."
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr "Daar is geen ruimte oor op die toestel $(ARG1) nie."
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr "Die bewerking in $(ARG1) kan nie uitgevoer word nie omdat daar al te veel lêers oop is."
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr "Die bewerking in $(ARG1) kan nie uitgevoer word nie aangesien daar geen geheue oor is nie."
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr "Die bewerking in $(ARG1) kan nie uitgevoer word nie aangesien meer data in afwagting is."
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr "$(ARG1) kan nie in homself gekopieer word nie."
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr "Onbekende toevoer-/afvoerfout by verkryging van toegang tot $(ARG1)."
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "$(ARG1) is skryfbeskerm."
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "$(ARG1) is nie in die korrekte formaat nie."
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "Die weergawe van $(ARG1) is nie korrek nie."
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "Aandrywer $(ARG1) bestaan nie."
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "Vouer $(ARG1) bestaan nie."
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr "Die geïnstalleerde Java-weergawe word nie ondersteun nie."
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr "Die geïnstalleerde Java-weergawe $(ARG1) word nie ondersteun nie."
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr "Die geïnstalleerde Java-weergawe word nie ondersteun nie, ten minste weergawe $(ARG1) word vereis."
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr "Die geïnstalleerde Java-weergawe $(ARG1) word nie ondersteun nie, ten minste weergawe $(ARG2) word vereis."
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr "Die data wat met die vennootskap geassosieer word, is korrup."
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr "Die data wat met die vennootskap $(ARG1) geassosieer word, is korrup."
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr "Volume $(ARG1) is nie gereed nie."
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr "$(ARG1) is nie gereed nie, voeg asseblief 'n stoormedium in."
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr "Volume $(ARG1) is nie gereed nie, voeg asseblief 'n stoormedium in."
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr "Plaas asseblief skryf $(ARG1) in."
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr "Die objek kan nie in die gids $(ARG1) geskep word nie."
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr "%PRODUCTNAME kan nie voorkom dat lêers oorgeskryf word terwyl hierdie versendingsprotokol gebruik word nie. Wil u in elk geval voortgaan?"
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -377,13 +377,13 @@ msgstr ""
"Moet %PRODUCTNAME die lêer herstel?\n"
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "Die lêer '$(ARG1)' kon nie herstel word nie en kan daarom nie oopgemaak word nie."
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -393,7 +393,7 @@ msgstr ""
"Wil u steeds %PRODUCTNAME laat loop sonder die gekorrupteerde opstellingdata?"
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -403,13 +403,13 @@ msgstr ""
"Wil u steeds %PRODUCTNAME laat loop sonder die gekorrupteerde opstellingsdata?"
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr "Die opstellingdatabron '$(ARG1)' is onbeskikbaar. Sonder hierdie data sal sekere funksies nie behoorlik werk nie."
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -419,31 +419,31 @@ msgstr ""
"Wil u steeds %PRODUCTNAME laat loop sonder die vermiste opstellingdata?"
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr "Die vorm bevat ongeldige data. Wil u steeds voortgaan?"
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr "Die lêer $(ARG1) is reeds gereserveer deur 'n ander gebruiker. Huidig, kan daar nie weer skryf toegang tot die lêer wees nie."
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr "Die lêer $(ARG1) is alreeds deur u gereserveer. Huidig, is 'n tweede skryftoegang nie moontlik nie."
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr "Die lêer $(ARG1) is huidig nie gereserveer vir u gebruik nie."
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -453,7 +453,7 @@ msgstr ""
"Dit kan gebeur as gevolg van probleme op die bediener wat die lêerslot reserveer. Dit kan nie gewaarborg word dat skryfbewerkings op hierdie lêer nie die veranderinge wat deur ander gebruikers aangebring is, sal oorskryf nie!"
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -467,7 +467,7 @@ msgstr ""
" $(ARG1)."
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -479,7 +479,7 @@ msgstr ""
"Voor u hierdie sertifikaat aanvaar, behoort u hierdie werf se sertifikaat noukeurig te ondersoek. Is u gewillig om hierdie sertifikaat te aanvaar vir die doel om die webwerf te identifiseer $(ARG1)?"
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -491,13 +491,13 @@ msgstr ""
"Maak seker of u rekenaar se tyd korrek is."
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr "Sekuriteitswaarskuwing: Bedienersertifikaat ongeldig"
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -513,13 +513,13 @@ msgstr ""
"Wil u nogtans voortgaan?"
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr "Sekuriteitswaarskuwing: Bedienersertifikaat het verval"
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -531,7 +531,7 @@ msgstr ""
"As u die sertifikaat wantrou, kanselleer asseblief die verbinding en stel die werfadministrateur in kennis."
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr "Sekuriteitswaarskuwing: Domeinnaam-wanpassing"
@@ -602,55 +602,55 @@ msgid "_Yes"
msgstr "_Ja"
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr "Tik wagwoord in om lêer te open: \n"
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr "Tik wagwoord in om lêer te redigeeer: \n"
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "Tik wagwoord in: "
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr "Bevestig wagwoord: "
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "Stel wagwoord"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "Tik wagwoord in"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Die wagwoord en bevestigingswagwoord stem nie ooreen nie. Stel die wagwoord weer deur die selfde wagwoord in altwee boksies te tik."
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Dokument in gebruik"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -662,19 +662,19 @@ msgstr ""
"Open dokument leesalleen, of ignoreer eie lêerslot en open die dokument om te redigeer."
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~Open"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -686,61 +686,61 @@ msgstr ""
"Sluit dokument op ander rekenaar en probeer weer stoor, of ignoreer eie lêerslot en stoor huidige dokument."
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "~Probeer weer stoor"
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~Stoor"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "~Onthou wagwoord tot aan einde van sessie"
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "On_thou wagwoord"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Niegeënkripteerde strome"
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "Dokument kon nie gesluit word nie"
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr "Skepping van die sluitlêer (vir eksklusiewe toegang) deur % PRODUCTNAME faal, weens: of die ontbrekende magtiging om 'n sluitlêer in daardie lêerlokasie te kan skep, of onvoldoende vrye skyfspasie."
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Dokument in gebruik"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -756,7 +756,7 @@ msgstr ""
"Maak die dokument oop vir lees-alleen of maak 'n kopie van die dokument oop vir redigering. $(ARG3)"
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -766,31 +766,31 @@ msgstr ""
"U kan ook die lêersluiting ignoreer en die dokument oopmaak vir redigering."
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Open ~kopie"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Onbekende gebruiker"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Dokument is deur andere gewysig"
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -802,19 +802,19 @@ msgstr ""
"Wil u in elk geval stoor?"
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "~Stoor in elk geval"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Dokument in gebruik"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -830,7 +830,7 @@ msgstr ""
"Probeer later weer die dokument stoor, of stoor ’n kopie van daardie dokument."
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -846,19 +846,19 @@ msgstr ""
"U kan die lêer sluiting probeer ignoreer en daarna die bestaande dokument oorskryf."
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "~Probeer weer stoor"
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "~Stoor as..."
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -868,7 +868,7 @@ msgstr ""
"Kies Vervang om die bestaande lêer te oorskryf of verskaf 'n nuwe lêernaam."
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -878,55 +878,55 @@ msgstr ""
"Verskaf 'n nuwe lêernaam asseblief."
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Gee asb. ’n ander lêernaam."
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Die wagwoord is verkeerd. Die lêer kan nie geopen word nie."
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Die wagwoord is verkeerd. Die lêer kan nie gewysig word nie."
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Die meesterwagwoord is verkeerd."
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Die wagwoord is verkeerd."
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Die wagwoordbevestiging pas nie."
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "Slotlêer is beskadig"
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr "Die slotlêer is beskadig en waarskynlik leeg. Sou u die dokument leesalleen oopmaak en weer toemaak, word die beskadigde slotlêer verwyder."
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index 50c3f042214..b3cae20fa6d 100644
--- a/source/af/vcl/messages.po
+++ b/source/af/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/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.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547709865.000000\n"
#. k5jTM
@@ -665,150 +665,138 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "Herstel"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr "Aftuimel"
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr "Rol op"
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "Hulp"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr "Neem en annoteer ’n skermskoot"
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "Wys"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "Versteek"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "Sluit dokument"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "~OK"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "~Kanselleer"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "OK"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "Kanselleer"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "~Ja"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "~Nee"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "He~rprobeer"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~Hulp"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "~Sluit"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "~Meer"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "~Ignoreer"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "~Staak"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "Mi~nder"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "~Stoor"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "~Open"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr "~Skermskoot"
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -818,357 +806,357 @@ msgstr ""
"Begin asseblief die opstelling met die herstel-opsie."
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "Aangaande %PRODUCTNAME"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "Voorkeure..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "Enige soort"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "~Outomatiese lêernaamuitbreiding"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "Stoor met wag~woord"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr "Enkripteer met ~GPG-sleutel"
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "R~edigeer filterinstellings"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "~Leesalleen"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "Voeg as skake~l in"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "Voo~rskou"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "S~peel"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "~Weergawe:"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "S~tyle:"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "Raamstyl: "
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr "A~nker: "
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "~Seleksie"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "Kies pad"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "Kies asseblief ’n gids."
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "’n Lêer genaamd “$filename$” bestaan reeds. Wil u hom vervang?"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr "Die lêer bestaan reeds in “$dirname$”. Vervanging sal die inhoud oorskryf."
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "Alle formate"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "Open"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "Stoor"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "Lêer~tipe"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "Geen fonte kon op die stelsel gevind word nie."
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "Geen bladsye"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr "Voorskou is gedeaktiveer"
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "Druk na lêer..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "Verstek drukker"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "Tik asseblief die faksnommer in"
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Doelgemaak"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "Die ingevoegde teks oorskry die maksimum lengte van hierdie teksveld. Die teks is afgekap."
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "SVE-drade: "
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "BS: "
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "UI-Lewering "
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr "GL"
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr "Skia/Vulkan"
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr "Skia/Rooster"
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "verstek"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Inligting"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "Waarskuwing"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "Fout"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Bevestiging"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "skrap lyn"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "skrap veelvuldige lyne"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "voeg veelvuldige lyne in"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "voeg “$1”"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "skrap “$1”"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ry: %1, kolom: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Leë veld"
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "Dag"
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "Week"
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Vandag"
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Stappe"
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Afeindig"
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Volgende >"
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Terug"
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Skeidingskarakter"
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/af/writerperfect/messages.po b/source/af/writerperfect/messages.po
index cf20cc9e42a..b4d0812bfc9 100644
--- a/source/af/writerperfect/messages.po
+++ b/source/af/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2021-01-26 17:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/af/>\n"
@@ -13,53 +13,53 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548063239.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "Voer lêer in"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr "Invoer van MS Multiplan vir DOS lêer"
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr "Invoer van MS Works lêer"
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr "Invoer van MS Write lêer"
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr "Invoer van MS Word vir DOS lêer"
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "Invoer van Lotus-lêer"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr "Invoer van Symphony lêer"
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr "Invoer van Quattro Pro lêer"
diff --git a/source/am/chart2/messages.po b/source/am/chart2/messages.po
index 5cf57caa975..035b79e044d 100644
--- a/source/am/chart2/messages.po
+++ b/source/am/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: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-12 17:36+0000\n"
+"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/am/>\n"
"Language: am\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559505967.000000\n"
#. NCRDD
@@ -1169,7 +1169,7 @@ msgstr "ተከታታይ ማስገቢያ"
#: chart2/uiconfig/ui/chartdatadialog.ui:96
msgctxt "chartdatadialog|extended_tip|InsertColumn"
msgid "Inserts a new data series after the current column."
-msgstr "ከ አሁኑ አምድ በታች አዲስ ተከታታይ ዳታ ማስገቢያ "
+msgstr "ከ አሁኑ አምድ በታች አዲስ ተከታታይ ዳታ ማስገቢያ:"
#. KuFy7
#: chart2/uiconfig/ui/chartdatadialog.ui:109
@@ -1181,7 +1181,7 @@ msgstr "የ ጽሁፍ አምድ ማስገቢያ"
#: chart2/uiconfig/ui/chartdatadialog.ui:114
msgctxt "chartdatadialog|extended_tip|InsertTextColumn"
msgid "Inserts a new text column after the current column for hierarchical axes descriptions."
-msgstr "አዲስ የ ጽሁፍ አምድ ማስገቢያ ከ አሁኑ አምድ በኋላ ለ አክሲስ ደረጃ መግለጫ "
+msgstr "አዲስ የ ጽሁፍ አምድ ማስገቢያ ከ አሁኑ አምድ በኋላ ለ አክሲስ ደረጃ መግለጫ:"
#. 4JgTE
#: chart2/uiconfig/ui/chartdatadialog.ui:127
@@ -1229,7 +1229,7 @@ msgstr "ተከታታይ ወደ ቀኝ ማንቀሳቀሻ"
#: chart2/uiconfig/ui/chartdatadialog.ui:196
msgctxt "chartdatadialog|extended_tip|MoveRightColumn"
msgid "Switches the current column with its neighbor at the right."
-msgstr "የ አሁኑን አምድ መቀየሪያ በ ቀኝ በኩል ካለው ጎረቤቱ ጋር "
+msgstr "የ አሁኑን አምድ መቀየሪያ በ ቀኝ በኩል ካለው ጎረቤቱ ጋር:"
#. EkxKw
#: chart2/uiconfig/ui/chartdatadialog.ui:209
@@ -1253,7 +1253,7 @@ msgstr "ረድፍ ወደ ታች ማንቀሳቀሻ"
#: chart2/uiconfig/ui/chartdatadialog.ui:232
msgctxt "chartdatadialog|extended_tip|MoveDownRow"
msgid "Switches the current row with its neighbor below."
-msgstr "የ አሁኑን ረድፍ መቀየሪያ ከ ታች በኩል ካለው ጎረቤቱ ጋር "
+msgstr "የ አሁኑን ረድፍ መቀየሪያ ከ ታች በኩል ካለው ጎረቤቱ ጋር:"
#. rRJDK
#: chart2/uiconfig/ui/chartdatadialog.ui:366
@@ -1295,7 +1295,7 @@ msgstr "የ ዳታ ምልክቶች ለሁሉም የ ዳታ ተከታታዮች"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:107
msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Value as _number"
-msgstr ""
+msgstr "ዋጋ እንደ _ቁጥር"
#. sDLeD
#: chart2/uiconfig/ui/dlg_DataLabel.ui:115
@@ -1307,7 +1307,7 @@ msgstr "የ ፍጹም ዋጋዎች የ ዳታ ነጥብ ማሳያ"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:126
msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Value as _percentage"
-msgstr ""
+msgstr "ዋጋ እንደ _ፐርሰንት"
#. 5Hp8E
#: chart2/uiconfig/ui/dlg_DataLabel.ui:134
@@ -1319,7 +1319,7 @@ msgstr "በ አምድ ውስጥ ከ እያንዳንዱ የ ዳታ ነጥቦች
#: chart2/uiconfig/ui/dlg_DataLabel.ui:145
msgctxt "dlg_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "_ምድብ"
#. oJGQF
#: chart2/uiconfig/ui/dlg_DataLabel.ui:153
@@ -1331,7 +1331,7 @@ msgstr "የ ዳታ ነጥብ ጽሁፍ ምልክቶች ማሳያ"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:164
msgctxt "dlg_DataLabel|CB_SYMBOL"
msgid "_Legend key"
-msgstr ""
+msgstr "_መግለጫ ቁልፍ"
#. 7WADc
#: chart2/uiconfig/ui/dlg_DataLabel.ui:172
@@ -1385,7 +1385,7 @@ msgstr "የ ቁጥር አቀራረብ ለ ፐርሰንት ዋጋ"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:259
msgctxt "dlg_DataLabel|CB_DATA_SERIES_NAME"
msgid "_Series name"
-msgstr ""
+msgstr "የ _ተከታታይ ስም"
#. 8bEui
#: chart2/uiconfig/ui/dlg_DataLabel.ui:268
@@ -1535,7 +1535,7 @@ msgstr "ለ ተመረጠው እቃ በ በርካታ የ ጽሁፍ ሀረጎች
#: chart2/uiconfig/ui/dlg_DataLabel.ui:407
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "የ መለያ ምርጫዎች"
#. gE7CA
#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
@@ -1631,7 +1631,7 @@ msgstr "_የማያቋርጥ ዋጋ"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:153
msgctxt "dlg_InsertErrorBars|extended_tip|RB_CONST"
msgid "Displays constant values that you specify in the Parameters area."
-msgstr "መደበኛ ዋጋ ማሳያ እርስዎ የወሰኑትን በ ደንቦች ቦታ ውስጥ "
+msgstr "መደበኛ ዋጋ ማሳያ እርስዎ የወሰኑትን በ ደንቦች ቦታ ውስጥ:"
#. UzxQQ
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:165
@@ -1643,7 +1643,7 @@ msgstr "_ፐርሰንት"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:174
msgctxt "dlg_InsertErrorBars|extended_tip|RB_PERCENT"
msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
-msgstr "ፐርሰንቴጅ ማሳያ: ማሳያው የሚያመሳክረው ለ ተመሳሳይ ዳታ ነጥብ ነው: ፐርሰንቴጅ በ ደንቦች ቦታ ማሰናጃ ውስጥ "
+msgstr "ፐርሰንቴጅ ማሳያ: ማሳያው የሚያመሳክረው ለ ተመሳሳይ ዳታ ነጥብ ነው: ፐርሰንቴጅ በ ደንቦች ቦታ ማሰናጃ ውስጥ:"
#. tSBH9
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:199
@@ -1691,7 +1691,7 @@ msgstr "የ ክፍል _መጠን"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:249
msgctxt "dlg_InsertErrorBars|extended_tip|RB_RANGE"
msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
-msgstr "ይጫኑ የ ክፍል መጠን ላይ እና ከዛ ይወስኑ የ ክፍል መጠን እርስዎ የ አዎንታዊ እና አሉታዊ የ ስህተት መደርደሪያ ዋጋዎች የሚወስዱበት "
+msgstr "ይጫኑ የ ክፍል መጠን ላይ እና ከዛ ይወስኑ የ ክፍል መጠን እርስዎ የ አዎንታዊ እና አሉታዊ የ ስህተት መደርደሪያ ዋጋዎች የሚወስዱበት:"
#. vdvVR
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:265
@@ -1709,7 +1709,7 @@ msgstr "አዎንታዊ _እና አሉታዊ"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:303
msgctxt "dlg_InsertErrorBars|extended_tip|RB_BOTH"
msgid "Shows positive and negative error bars."
-msgstr "የ አዎንታዊ እና አሉታዊ ስህተት መደርደሪያ ማሳያ "
+msgstr "የ አዎንታዊ እና አሉታዊ ስህተት መደርደሪያ ማሳያ:"
#. jJw8Y
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:314
@@ -1751,13 +1751,13 @@ msgstr "አ_ዎንታዊ (+)"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:454
msgctxt "dlg_InsertErrorBars|extended_tip|MF_POSITIVE"
msgid "Enter the value to add to the displayed value as the positive error value."
-msgstr "እርስዎ መጨመር የሚፈልጉትን ዋጋ ያስገቡ ለሚታየው ዋጋ እንደ አዎንታዊ የ ስህተት ዋጋ "
+msgstr "እርስዎ መጨመር የሚፈልጉትን ዋጋ ያስገቡ ለሚታየው ዋጋ እንደ አዎንታዊ የ ስህተት ዋጋ:"
#. SUBEs
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:473
msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_POSITIVE"
msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
-msgstr "እርስዎ የ አድራሻ መጠን ያስገቡ የ አዎንታዊ የ ስህተት ዋጋዎች የሚገኙበትን: የማሳጠሪያ ቁልፍ ይጠቀሙ መጠኑን ከ ወረቀት ውስጥ ለመምረጥ "
+msgstr "እርስዎ የ አድራሻ መጠን ያስገቡ የ አዎንታዊ የ ስህተት ዋጋዎች የሚገኙበትን: የማሳጠሪያ ቁልፍ ይጠቀሙ መጠኑን ከ ወረቀት ውስጥ ለመምረጥ:"
#. 5FfdH
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:488
@@ -1781,13 +1781,13 @@ msgstr "_አሉታዊ (-)"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:537
msgctxt "dlg_InsertErrorBars|extended_tip|MF_NEGATIVE"
msgid "Enter the value to subtract from the displayed value as the negative error value."
-msgstr "እርስዎ መጨመር የሚፈልጉትን ዋጋ ያስገቡ ለሚታየው ዋጋ እንደ አሉታዊ የ ስህተት ዋጋ "
+msgstr "እርስዎ መጨመር የሚፈልጉትን ዋጋ ያስገቡ ለሚታየው ዋጋ እንደ አሉታዊ የ ስህተት ዋጋ:"
#. DTR5D
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:556
msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_NEGATIVE"
msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
-msgstr "እርስዎ የ አድራሻ መጠን ያስገቡ የ አሉታዊ የ ስህተት ዋጋዎች የሚገኙበትን: የማሳጠሪያ ቁልፍ ይጠቀሙ መጠኑን ከ ወረቀት ውስጥ ለመምረጥ "
+msgstr "እርስዎ የ አድራሻ መጠን ያስገቡ የ አሉታዊ የ ስህተት ዋጋዎች የሚገኙበትን: የማሳጠሪያ ቁልፍ ይጠቀሙ መጠኑን ከ ወረቀት ውስጥ ለመምረጥ:"
#. jsckc
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:571
@@ -1919,7 +1919,7 @@ msgstr "_Z አክሲስ"
#: chart2/uiconfig/ui/insertaxisdlg.ui:150
msgctxt "insertaxisdlg|extended_tip|primaryZ"
msgid "Displays the Z axis as a line with subdivisions."
-msgstr "የ Z አክሲስ በ ንዑስ ክፍሎች ውስጥ ማሳያ "
+msgstr "የ Z አክሲስ በ ንዑስ ክፍሎች ውስጥ ማሳያ:"
#. YZ7GG
#: chart2/uiconfig/ui/insertaxisdlg.ui:167
@@ -1985,7 +1985,7 @@ msgstr "_X አክሲስ"
#: chart2/uiconfig/ui/insertgriddlg.ui:110
msgctxt "insertgriddlg|extended_tip|primaryX"
msgid "Adds gridlines to the X axis of the chart."
-msgstr "መጋጠሚያ መስመር መጨመሪያ ለ X አክሲስ ቻርትስ "
+msgstr "መጋጠሚያ መስመር መጨመሪያ ለ X አክሲስ ቻርትስ:"
#. FEBZW
#: chart2/uiconfig/ui/insertgriddlg.ui:122
@@ -1997,7 +1997,7 @@ msgstr "_Y አክሲስ"
#: chart2/uiconfig/ui/insertgriddlg.ui:130
msgctxt "insertgriddlg|extended_tip|primaryY"
msgid "Adds gridlines to the Y axis of the chart."
-msgstr "መጋጠሚያ መስመር መጨመሪያ ለ Y አክሲስ ቻርትስ "
+msgstr "መጋጠሚያ መስመር መጨመሪያ ለ Y አክሲስ ቻርትስ:"
#. XEXTu
#: chart2/uiconfig/ui/insertgriddlg.ui:142
@@ -2009,7 +2009,7 @@ msgstr "_Z አክሲስ"
#: chart2/uiconfig/ui/insertgriddlg.ui:150
msgctxt "insertgriddlg|extended_tip|primaryZ"
msgid "Adds gridlines to the Z axis of the chart."
-msgstr "መጋጠሚያ መስመር መጨመሪያ ለ Z አክሲስ ቻርትስ "
+msgstr "መጋጠሚያ መስመር መጨመሪያ ለ Z አክሲስ ቻርትስ:"
#. 9QbAA
#: chart2/uiconfig/ui/insertgriddlg.ui:167
@@ -2063,7 +2063,7 @@ msgstr "አነስተኛ መጋጠሚያዎች"
#: chart2/uiconfig/ui/insertgriddlg.ui:295
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 "እርስዎ መከፋፈል ይችላሉ አክሲስ ወደ ክፍሎች የ መጋጠሚያ መስመር በ መወሰን: ይህ እርስዎን የሚያስችለው ቻርትስ በ ጥሩ ሁኔታ እንዲያዩ ነው: በተለይ እርስዎ የሚሰሩ ከሆነ በጣም ትልቅ ቻርትስ ውስጥ:"
#. rqADt
#: chart2/uiconfig/ui/inserttitledlg.ui:8
@@ -2087,13 +2087,13 @@ msgstr "_ንዑስ አርእስት"
#: chart2/uiconfig/ui/inserttitledlg.ui:125
msgctxt "inserttitledlg|extended_tip|maintitle"
msgid "Enter the desired title for the chart."
-msgstr "የሚፈለገውን የ ቻርት አርእስት ያስገቡ "
+msgstr "የሚፈለገውን የ ቻርት አርእስት ያስገቡ:"
#. 5eiq7
#: chart2/uiconfig/ui/inserttitledlg.ui:143
msgctxt "inserttitledlg|extended_tip|subtitle"
msgid "Enter the desired subtitle for the chart."
-msgstr "የሚፈለገውን የ ቻርት ንዑስ አርእስት ያስገቡ "
+msgstr "የሚፈለገውን የ ቻርት ንዑስ አርእስት ያስገቡ:"
#. y8KiH
#: chart2/uiconfig/ui/inserttitledlg.ui:178
@@ -3359,7 +3359,7 @@ msgstr "ው_ስጥ"
#: chart2/uiconfig/ui/tp_AxisPositions.ui:466
msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_INNER"
msgid "Specifies that minor interval marks are placed on the inner side of the axis."
-msgstr "አነስተኛ ክፍተት ምልክቶች የት እንደሚሆኑ መወሰኛ በ አክሲስ በ ውስጥ በኩል "
+msgstr "አነስተኛ ክፍተት ምልክቶች የት እንደሚሆኑ መወሰኛ በ አክሲስ በ ውስጥ በኩል:"
#. nBCFJ
#: chart2/uiconfig/ui/tp_AxisPositions.ui:477
@@ -3371,7 +3371,7 @@ msgstr "ው_ጪ"
#: chart2/uiconfig/ui/tp_AxisPositions.ui:488
msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_OUTER"
msgid "Specifies that minor interval marks are placed on the outer side of the axis."
-msgstr "አነስተኛ ክፍተት ምልክቶች የት እንደሚሆኑ መወሰኛ በ አክሲስ በ ውጪ በኩል "
+msgstr "አነስተኛ ክፍተት ምልክቶች የት እንደሚሆኑ መወሰኛ በ አክሲስ በ ውጪ በኩል:"
#. XWuxR
#: chart2/uiconfig/ui/tp_AxisPositions.ui:513
@@ -3401,7 +3401,7 @@ msgstr "በ አክሲስ እና ምልክቶች ላይ"
#: chart2/uiconfig/ui/tp_AxisPositions.ui:535
msgctxt "tp_AxisPositions|extended_tip|LB_PLACE_TICKS"
msgid "Select where to place the marks: at labels, at axis, or at axis and labels."
-msgstr "ምልክቶቹ የት እንደሚሆኑ ይምረጡ: ከ ምልክት አጠገብ: ከ አክሲስ አጠገብ ወይንም ከ አክሲስ እና ምልክቶች አጠገብ "
+msgstr "ምልክቶቹ የት እንደሚሆኑ ይምረጡ: ከ ምልክት አጠገብ: ከ አክሲስ አጠገብ ወይንም ከ አክሲስ እና ምልክቶች አጠገብ:"
#. jK9rf
#: chart2/uiconfig/ui/tp_AxisPositions.ui:558
@@ -3449,7 +3449,7 @@ msgstr "የ ቻርት አይነት ይምረጡ"
#: chart2/uiconfig/ui/tp_ChartType.ui:96
msgctxt "tp_ChartType|extended_tip|subtype"
msgid "Select a sub type of the basic chart type."
-msgstr "ይምረጡ የ ንዑስ አይነት ከ መሰረታዊ ቻርትስ አይነት ውስጥ "
+msgstr "ይምረጡ የ ንዑስ አይነት ከ መሰረታዊ ቻርትስ አይነት ውስጥ:"
#. FSf6b
#: chart2/uiconfig/ui/tp_ChartType.ui:123
@@ -3503,7 +3503,7 @@ msgstr "_ክምር ተከታታይ"
#: chart2/uiconfig/ui/tp_ChartType.ui:248
msgctxt "tp_ChartType|extended_tip|stack"
msgid "Displays stacked series for Line charts."
-msgstr "ተከታታይ ክምር ለ መስመር ቻርትስ ማሳያ "
+msgstr "ተከታታይ ክምር ለ መስመር ቻርትስ ማሳያ:"
#. KfD2L
#: chart2/uiconfig/ui/tp_ChartType.ui:266
@@ -3515,7 +3515,7 @@ msgstr "ከ ላይ"
#: chart2/uiconfig/ui/tp_ChartType.ui:274
msgctxt "tp_ChartType|extended_tip|ontop"
msgid "Stack series display values on top of each other."
-msgstr "ተከታታይ ክምር ለ ዋጋዎች ማሳያ አንዱን በ አንዱ ላይ "
+msgstr "ተከታታይ ክምር ለ ዋጋዎች ማሳያ አንዱን በ አንዱ ላይ:"
#. C7JxK
#: chart2/uiconfig/ui/tp_ChartType.ui:285
@@ -3527,7 +3527,7 @@ msgstr "ፐርሰንት"
#: chart2/uiconfig/ui/tp_ChartType.ui:293
msgctxt "tp_ChartType|extended_tip|percent"
msgid "Stack series display values as percent."
-msgstr "ተከታታይ ክምር ዋጋዎች የሚያሳየው በ ፐርሰንት ነው "
+msgstr "ተከታታይ ክምር ዋጋዎች የሚያሳየው በ ፐርሰንት ነው:"
#. ijuPy
#: chart2/uiconfig/ui/tp_ChartType.ui:304
@@ -3563,7 +3563,7 @@ msgstr "ደረጃ"
#: chart2/uiconfig/ui/tp_ChartType.ui:351
msgctxt "tp_ChartType|extended_tip|linetype"
msgid "Choose the type of line to draw."
-msgstr "ይምረጡ የሚሳለውን መስመር አይነት "
+msgstr "ይምረጡ የሚሳለውን መስመር አይነት:"
#. JqNUv
#: chart2/uiconfig/ui/tp_ChartType.ui:362
@@ -3575,7 +3575,7 @@ msgstr "ባህሪዎች..."
#: chart2/uiconfig/ui/tp_ChartType.ui:368
msgctxt "tp_ChartType|extended_tip|properties"
msgid "Opens a dialog to set the line or curve properties."
-msgstr "ንግግር መክፈቻ ለማሰናጃ መስመር እና ክብ ባህሪዎች "
+msgstr "ንግግር መክፈቻ ለማሰናጃ መስመር እና ክብ ባህሪዎች:"
#. KzGZQ
#: chart2/uiconfig/ui/tp_ChartType.ui:385
@@ -3587,7 +3587,7 @@ msgstr "_መለያ በ X ዋጋ"
#: chart2/uiconfig/ui/tp_ChartType.ui:392
msgctxt "tp_ChartType|extended_tip|sort"
msgid "Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram."
-msgstr "ነጥቦች ማገነኛ እየጨመረ በሚሄድ የ X ዋጋዎች: የ ዋጋዎች ደንብ የ ተለየ ቢሆንም እንኳን: በ XY የተበታተነ ንድፍ "
+msgstr "ነጥቦች ማገነኛ እየጨመረ በሚሄድ የ X ዋጋዎች: የ ዋጋዎች ደንብ የ ተለየ ቢሆንም እንኳን: በ XY የተበታተነ ንድፍ:"
#. CmGat
#: chart2/uiconfig/ui/tp_ChartType.ui:411
@@ -3599,7 +3599,7 @@ msgstr "የ መስመሮች _ቁጥር"
#: chart2/uiconfig/ui/tp_ChartType.ui:431
msgctxt "tp_ChartType|extended_tip|nolines"
msgid "Set the number of lines for the Column and Line chart type."
-msgstr "የ መስመሮች ቁጥር ማሰናጃ ለ አምድ እና ለ መስመር ቻርትስ አይነት "
+msgstr "የ መስመሮች ቁጥር ማሰናጃ ለ አምድ እና ለ መስመር ቻርትስ አይነት:"
#. M2sxB
#: chart2/uiconfig/ui/tp_ChartType.ui:500
@@ -3611,7 +3611,7 @@ msgstr "ይምረጡ መሰረታዊ የ ቻርትስ አይነት"
#: chart2/uiconfig/ui/tp_DataLabel.ui:39
msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Value as _number"
-msgstr ""
+msgstr "ዋጋ እንደ _ቁጥር"
#. uGdoi
#: chart2/uiconfig/ui/tp_DataLabel.ui:47
@@ -3623,7 +3623,7 @@ msgstr "የ ፍጹም ዋጋዎች የ ዳታ ነጥብ ማሳያ"
#: chart2/uiconfig/ui/tp_DataLabel.ui:58
msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Value as _percentage"
-msgstr ""
+msgstr "ዋጋ እንደ _ፐርሰንት"
#. FcaPo
#: chart2/uiconfig/ui/tp_DataLabel.ui:66
@@ -3635,7 +3635,7 @@ msgstr "በ አምድ ውስጥ ከ እያንዳንዱ የ ዳታ ነጥቦች
#: chart2/uiconfig/ui/tp_DataLabel.ui:77
msgctxt "tp_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "_ምድብ"
#. EZXZX
#: chart2/uiconfig/ui/tp_DataLabel.ui:85
@@ -3647,7 +3647,7 @@ msgstr "የ ዳታ ነጥብ ጽሁፍ ምልክቶች ማሳያ"
#: chart2/uiconfig/ui/tp_DataLabel.ui:96
msgctxt "tp_DataLabel|CB_SYMBOL"
msgid "_Legend key"
-msgstr ""
+msgstr "_መግለጫ ቁልፍ"
#. Bm8gp
#: chart2/uiconfig/ui/tp_DataLabel.ui:104
@@ -3701,13 +3701,13 @@ msgstr "የ ቁጥር አቀራረብ ለ ፐርሰንት ዋጋ"
#: chart2/uiconfig/ui/tp_DataLabel.ui:191
msgctxt "tp_DataLabel|CB_DATA_SERIES_NAME"
msgid "_Series name"
-msgstr ""
+msgstr "_ተከታታይ ስም"
#. 3tWYv
#: chart2/uiconfig/ui/tp_DataLabel.ui:200
msgctxt "tp_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
-msgstr ""
+msgstr "የ ዳታ ተከታታይ ስም በ ምልክት ላይ ማሳያ"
#. 3BZrx
#: chart2/uiconfig/ui/tp_DataLabel.ui:221
@@ -3851,7 +3851,7 @@ msgstr "ለ ተመረጠው እቃ በ በርካታ የ ጽሁፍ ሀረጎች
#: chart2/uiconfig/ui/tp_DataLabel.ui:339
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "የ መለያ ምርጫዎች"
#. avLCL
#: chart2/uiconfig/ui/tp_DataLabel.ui:391
@@ -3905,7 +3905,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_DataLabel.ui:544
msgctxt "tp_DataLabel|label3"
msgid "Leader Lines"
-msgstr ""
+msgstr "ቀዳሚ መስመር"
#. iDheE
#: chart2/uiconfig/ui/tp_DataLabel.ui:574
@@ -3953,7 +3953,7 @@ msgstr "_ተከታታይ ዳታ:"
#: chart2/uiconfig/ui/tp_DataSource.ui:116
msgctxt "tp_DataSource|extended_tip|LB_SERIES"
msgid "Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click Add to insert a new series into the list after the selected entry."
-msgstr "ሁሉንም የ ተከታታይ ዳታ ዝርዝር በ ቻርትስ ውስጥ ማሳያ: ይጫኑ ማስገቢያ ለ መመልከት እና ለ ማረም ተከታታይ ዳታ: ይጫኑ መጨመሪያ አዲስ ተከታታይ ወደ ዝርዝር ውስጥ ለማስገባት ከ ተመረጠው ማስገቢያ በኋላ "
+msgstr "ሁሉንም የ ተከታታይ ዳታ ዝርዝር በ ቻርትስ ውስጥ ማሳያ: ይጫኑ ማስገቢያ ለ መመልከት እና ለ ማረም ተከታታይ ዳታ: ይጫኑ መጨመሪያ አዲስ ተከታታይ ወደ ዝርዝር ውስጥ ለማስገባት ከ ተመረጠው ማስገቢያ በኋላ:"
#. rqABh
#: chart2/uiconfig/ui/tp_DataSource.ui:137
@@ -3965,7 +3965,7 @@ msgstr "_መጨመሪያ"
#: chart2/uiconfig/ui/tp_DataSource.ui:145
msgctxt "tp_DataSource|extended_tip|BTN_ADD"
msgid "Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type."
-msgstr "አዲስ ዳታ መጨመሪያ ከ አሁኑ ማስገቢያ ከ ታች በኩል ከ ተከታታይ ዳታ ዝርዝር ውስጥ: ማስገቢያ ከ ተመረጠ: አዲሱ ተከታታይ ዳታ ተመሳሳይ የ ቻርትስ አይነት ያገኛል "
+msgstr "አዲስ ዳታ መጨመሪያ ከ አሁኑ ማስገቢያ ከ ታች በኩል ከ ተከታታይ ዳታ ዝርዝር ውስጥ: ማስገቢያ ከ ተመረጠ: አዲሱ ተከታታይ ዳታ ተመሳሳይ የ ቻርትስ አይነት ያገኛል:"
#. dCyXA
#: chart2/uiconfig/ui/tp_DataSource.ui:163
@@ -4013,7 +4013,7 @@ msgstr "የ _ዳታ መጠኖች:"
#: chart2/uiconfig/ui/tp_DataSource.ui:297
msgctxt "tp_DataSource|extended_tip|LB_ROLE"
msgid "Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address."
-msgstr "ሁሉንም የ ዳታ መጠኖች ማሳያ የ ተጠቀሙትን ከ ተመረጠው ተከታታይ ዳታ ውስጥ የ ተመረጠውን በ ተከታታይ ዳታ ዝርዝር ሳጥን ውስጥ: እያንዳንዱ የ ዳታ መጠን የሚናውን ስም እና የ አድራሻ መጠን ምንጭ ያሳያል "
+msgstr "ሁሉንም የ ዳታ መጠኖች ማሳያ የ ተጠቀሙትን ከ ተመረጠው ተከታታይ ዳታ ውስጥ የ ተመረጠውን በ ተከታታይ ዳታ ዝርዝር ሳጥን ውስጥ: እያንዳንዱ የ ዳታ መጠን የሚናውን ስም እና የ አድራሻ መጠን ምንጭ ያሳያል:"
#. qRMfs
#: chart2/uiconfig/ui/tp_DataSource.ui:312
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index a20992d1c4c..534eeb7205b 100644
--- a/source/am/cui/messages.po
+++ b/source/am/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: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-01-25 14:03+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-14 21:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
"Language: am\n"
@@ -442,7 +442,7 @@ msgstr "ቁልፍ"
#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
-msgstr "ጽሑፍ"
+msgstr "ጽሁፍ"
#. 9nkb2
#: cui/inc/strings.hrc:78
@@ -1913,248 +1913,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "የ ጥቅስ መጨረሻ"
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "ድንበሮች አታሰናዳ"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "የ ውጪ ድንበሮችን ብቻ ማሰናጃ"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "የ ውጪ ድንበሮች እና የ አግድም መስመሮች ማሰናጃ"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "የ ውጪ ድንበሮች እና የ ውስጥ መስመሮች በሙሉ ማሰናጃ"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "የ ውስጥ መስመሮች ሳይቀየሩ የ ውጪ ድንበሮችን ማሰናጃ"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "የ አግድም መስመሮች ብቻ ማሰናጃ"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "አራቱንም ድንበሮች በሙሉ ማሰናጃ"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "የ ግራ እና የ ቀኝ ድንበሮችን ብቻ ማሰናጃ"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "የ ላይ እና የ ታች ድንበሮች ብቻ ማሰናጃ"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "የ ግራ ድንበር ብቻ ማሰናጃ"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "የ ላይ እና የ ታች ድንበሮችን እና ሁሉንም የ ውስጥ መስመሮች ማሰናጃ"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "የ ግራ እና የ ቀኝ ድንበሮችን እና ሁሉንም የውስጥ መስመሮችን ማሰናጃ"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ጥላ የለም"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ከ ታች በ ቀኝ በኩል ጥላ ማጥላት"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ከ ላይ በ ቀኝ በኩል ጥላ ማጥላት"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ከ ታች በ ግራ በኩል ጥላ ማጥላት"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ከ ላይ በ ግራ በኩል ጥላ ማጥላት"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "የ ተፈረመው በ: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "የ ተመዘገቡ ዳታቤዞች"
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "ይህን URL <%1> ወደ ፋይል ስርአት መቀየር አይቻልም:"
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr "Copyright © 2000–2021 LibreOffice contributors."
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ይህ ስርጭት የቀረበው በ %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "የ ሊብሬ ቢሮ መሰረት OpenOffice.org ነው"
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "UI: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "መንገዶችን ማረሚያ: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "ምልክት"
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "ትእዛዝ"
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "ፍንጭ"
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "እርስዎ ማጥፋት የሚችሉት በ ተጠቃሚ-የ ተገለጸውን ቀለም ብቻ ነው:"
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "እባክዎን ማጥፋት የሚፈጉትን ቀለም ይምረጡ:"
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "መግጠሚያ"
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "ተገጥሟል"
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "በ መግጠም ላይ"
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "በ መፈለግ ላይ..."
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "በ መጫን ላይ..."
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "ተጨማሪዎች"
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "መፈጸሚያ ወደ %MODULE"
@@ -2331,14 +2259,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2520,1071 +2449,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr "እርስዎ የ ማብራሪያ ማውጫ መፍጠር ይችላሉ ከ እቃዎች ስም ውስጥ: ከ መግለጫ ብቻ ውስጥ አይደለም:"
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr "ራሱ በራሱ ምልክት ማድረጊያ በ ፊደል ቅደም ተከተል ማስገቢያ ፋይል በ መጠቀም:"
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr "እርስዎ የ ነበረ ፒዲኤፍ ፋይሎች መፈረም እና እነዚህን ፊርማዎች ማረጋገጥ ይችላሉ:"
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3595,22 +3518,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3619,16 +3542,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -13019,11 +12942,11 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "መለያያ"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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 "ባህሪ ወይንም ጽሁፍ ያስገቡ ለማሳየት ከ ቁጥር በኋላ በ ዝርዝር ውስጥ: እርስዎ ቁጥር የ ተሰጠው ዝርዝር መፍጠር ከፈለጉ የሚጠቀም ዘዴ \"1.)\": ያስገቡ \")\" በዚህ ሳጥን ውስጥ "
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
+msgstr ""
#. wVrAN
#: cui/uiconfig/ui/numberingoptionspage.ui:532
@@ -14809,23 +14732,47 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "ምርጫዎች"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr "ለውጦቹን ማስቀመጫ እና ንግግሩን መዝጊያ "
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
-msgstr "ንግግሩን መዝጊያ እና ለውጦቹን ማስወገጃ "
+msgid "Closes dialog and discards all unsaved changes."
+msgstr ""
#. CgiEq
#: cui/uiconfig/ui/optjsearchpage.ui:31
@@ -21038,13 +20985,13 @@ msgid "_Next Tip"
msgstr "_ይቀጥሉ"
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21056,79 +21003,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/am/dbaccess/messages.po b/source/am/dbaccess/messages.po
index bdaf8246bd6..272f773102f 100644
--- a/source/am/dbaccess/messages.po
+++ b/source/am/dbaccess/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-01-25 14:04+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-16 04:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/am/>\n"
"Language: am\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1563039147.000000\n"
#. BiN6g
@@ -3217,7 +3217,7 @@ msgstr "የ አቀራረብ ምሳሌ"
#: dbaccess/uiconfig/ui/fielddescpage.ui:172
msgctxt "fielddescpage|STR_BUTTON_FORMAT"
msgid "_Format Field"
-msgstr ""
+msgstr "የ _አቀራረብ ሜዳ"
#. Ff2B8
#: dbaccess/uiconfig/ui/fielddescpage.ui:194
@@ -3347,13 +3347,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "ግንኙነት መፍጠር የሚፈልጉትን የዳታቤዝ አይነት ይምረጡ"
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "የ ዳታቤዝ _አይነት:"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
@@ -4846,7 +4846,7 @@ msgstr "ሰንጠረዥ ወይንም ጥያቄ መጨመሪያ"
#: dbaccess/uiconfig/ui/taskwindow.ui:109
msgctxt "taskwindow|STR_DESCRIPTION"
msgid "Description"
-msgstr ""
+msgstr "መግለጫ"
#. 8b2nn
#: dbaccess/uiconfig/ui/textconnectionsettings.ui:8
@@ -5080,4 +5080,4 @@ msgstr "_ባህሪ ማሰናጃ:"
#: dbaccess/uiconfig/ui/userdetailspage.ui:203
msgctxt "userdetailspage|charsetheader"
msgid "Data Conversion"
-msgstr ""
+msgstr "ዳታ መቀየሪያ"
diff --git a/source/am/framework/messages.po b/source/am/framework/messages.po
index 23c459b55ce..3787e21a86e 100644
--- a/source/am/framework/messages.po
+++ b/source/am/framework/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-01-25 14:03+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-14 21:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/am/>\n"
"Language: am\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1508611040.000000\n"
#. 5dTDC
@@ -223,6 +223,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr "የ ጽሁፍ ቋንቋ: በ ቀኝ-ይጫኑ ባህሪ ወይንም የ አንቀጽ ቋንቋ ለማሰናዳት"
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "የ ጽሁፍ ሳጥን"
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr "የ ምልክት ሳጥን"
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "መቀላቀያ ሳጥን"
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr "ዝርዝር ሳጥን"
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr "የ ቀን ሜዳ"
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr "የ ጊዜ ሜዳ"
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr "የ ቁጥር ሜዳ"
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr "የ ገንዘብ ሜዳ"
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr "የ ንድፍ ሜዳ"
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "የ አቀራረብ ሜዳ"
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "መግፊያ ቁልፍ"
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "የ ምርጫ ቁልፍ"
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "የ ምልክት ሜዳ"
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "የ ቡድን ሳጥን"
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "የ ምስል ቁልፍ"
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "የ ምስል መቆጣጠሪያ"
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "ፋይል መምረጫ"
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr "መሸብለያ መደርደሪያ"
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr "ማሽከርከሪያ ቁልፍ"
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr "መቃኛ መደርደሪያ"
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
diff --git a/source/am/helpcontent2/source/text/sbasic/python.po b/source/am/helpcontent2/source/text/sbasic/python.po
index a4575334b60..b21d45bbe95 100644
--- a/source/am/helpcontent2/source/text/sbasic/python.po
+++ b/source/am/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -166,13 +166,13 @@ msgctxt ""
msgid "It is recommended to have knowledge of Python standard modules and %PRODUCTNAME API features prior to perform inter-language calls from Python to Basic, JavaScript or any other script engine."
msgstr ""
-#. yXTrk
+#. Sffwq
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0338\n"
"help.text"
-msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME nested Basic engine may be absent. Avoid Python to %PRODUCTNAME Basic calls in such context. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
+msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
msgstr ""
#. NcuDF
@@ -445,13 +445,13 @@ msgctxt ""
msgid "My Macros or %PRODUCTNAME Macros dialogs"
msgstr ""
-#. jCE4m
+#. pcUEy
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0339\n"
"help.text"
-msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. ChW9B
@@ -463,13 +463,13 @@ msgctxt ""
msgid "Document embedded dialogs"
msgstr ""
-#. SsPGJ
+#. uHH6H
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0365\n"
"help.text"
-msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. mMo7w
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 74ecab20b63..30bd152d9fe 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -4741,13 +4741,13 @@ msgctxt ""
msgid "-no UI-"
msgstr ""
-#. FsrLe
+#. AUk3A
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id961599839198859\n"
"help.text"
-msgid "When the document disk location has changed, for example after a <emph>File - Save As...</emph> action."
+msgid "When the document disk location has changed, for example after a <emph>File - Save As</emph> action."
msgstr ""
#. n5TCf
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/03.po b/source/am/helpcontent2/source/text/sbasic/shared/03.po
index e8101f7a62b..0851c10e24d 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2018-07-12 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6 +16,87 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1531405533.000000\n"
+#. ViEWM
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"tit\n"
+"help.text"
+msgid "(Un)Available since release"
+msgstr ""
+
+#. CeSww
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasMeth\n"
+"help.text"
+msgid "This method is not available in Basic."
+msgstr ""
+
+#. LDXQx
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasProp\n"
+"help.text"
+msgid "This property is not available in Basic."
+msgstr ""
+
+#. 4GDXo
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycMeth\n"
+"help.text"
+msgid "This method is not available in Python."
+msgstr ""
+
+#. 3ZUdq
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycProp\n"
+"help.text"
+msgid "This property is not available in Python."
+msgstr ""
+
+#. GXE45
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id281613660174140\n"
+"help.text"
+msgid "These methods are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. qjuHF
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id981613655373210\n"
+"help.text"
+msgid "This control is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. bAYUN
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id831613654401663\n"
+"help.text"
+msgid "These event properties are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. kVj8c
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id201613654395537\n"
+"help.text"
+msgid "This property is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. EziC4
#: lib_ScriptForge.xhp
msgctxt ""
@@ -43,15 +124,6 @@ msgctxt ""
msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value>"
msgstr ""
-#. MHX92
-#: lib_ScriptForge.xhp
-msgctxt ""
-"lib_ScriptForge.xhp\n"
-"par_id901528999850603\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#basiclibrarynote\" markup=\"keep\"/><br/> <item type=\"literal\">GlobalScope.BasicLibraries.LoadLibrary(\"ScriptForge\")</item>"
-msgstr ""
-
#. WLejn
#: lib_ScriptForge.xhp
msgctxt ""
@@ -79,15 +151,69 @@ msgctxt ""
msgid "The <literal>ScriptForge</literal> Basic library is available from %PRODUCTNAME 7.1 onwards."
msgstr ""
-#. acPUv
+#. Depaw
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
-"par_id891611613601554\n"
+"hd_id851613836643580\n"
"help.text"
msgid "Services provided by the ScriptForge library"
msgstr ""
+#. dw2Fe
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838858931\n"
+"help.text"
+msgid "Category"
+msgstr ""
+
+#. TmFbF
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id441613838858931\n"
+"help.text"
+msgid "Services"
+msgstr ""
+
+#. ZZKBq
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id851613847558931\n"
+"help.text"
+msgid "%PRODUCTNAME Basic"
+msgstr ""
+
+#. jv7Z3
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838825831\n"
+"help.text"
+msgid "Document Content"
+msgstr ""
+
+#. 8fZtg
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613947858931\n"
+"help.text"
+msgid "User Interface"
+msgstr ""
+
+#. dAomL
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613866258931\n"
+"help.text"
+msgid "Utilities"
+msgstr ""
+
#. 6gvZc
#: lib_ScriptForge.xhp
msgctxt ""
@@ -178,13 +304,13 @@ msgctxt ""
msgid "Its entry points are:"
msgstr ""
-#. SBNCb
+#. puNwN
#: lib_euro.xhp
msgctxt ""
"lib_euro.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Euro Converter…</emph> wizard loads the following libraries in memory:"
+msgid "Selecting the <emph>Euro Converter</emph> wizard loads the following libraries in memory:"
msgstr ""
#. TGAHA
@@ -268,13 +394,13 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. kN4F6
+#. ewcAB
#: lib_gimmicks.xhp
msgctxt ""
"lib_gimmicks.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText...</emph> wizard."
+msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText</emph> wizard."
msgstr ""
#. kHzUe
@@ -358,13 +484,13 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. asxd6
+#. Anhsb
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document converter...</emph> wizard."
+msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document Converter</emph> wizard."
msgstr ""
#. FaGZt
@@ -376,13 +502,13 @@ msgctxt ""
msgid "Its entry point is:"
msgstr ""
-#. EyBsL
+#. foGsC
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Document Converter...</emph> wizard loads the following libraries in memory:"
+msgid "Selecting the <emph>Document Converter</emph> wizard loads the following libraries in memory:"
msgstr ""
#. vV4TD
@@ -2230,13 +2356,13 @@ msgctxt ""
msgid "Definitions"
msgstr ""
-#. nXWRV
+#. 4gE5A
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id511591016999246\n"
"help.text"
-msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>)."
+msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>."
msgstr ""
#. kq2Br
@@ -2275,15 +2401,6 @@ msgctxt ""
msgid "The example below copies data from document A (opened as read-only and hidden) to document B."
msgstr ""
-#. 22mej
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id941591020321580\n"
-"help.text"
-msgid "SheetName"
-msgstr ""
-
#. iED65
#: sf_calc.xhp
msgctxt ""
@@ -2302,15 +2419,6 @@ msgctxt ""
msgid "The shortcut \"~\" (tilde) represents the current sheet."
msgstr ""
-#. pL4FD
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id101591020737697\n"
-"help.text"
-msgid "RangeName"
-msgstr ""
-
#. nskFb
#: sf_calc.xhp
msgctxt ""
@@ -4282,6 +4390,636 @@ msgctxt ""
msgid "'Sort range based on columns A (ascending) and C (descending)"
msgstr ""
+#. zNFY6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDatabases.Database service"
+msgstr ""
+
+#. K7nuj
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id371587913266310\n"
+"help.text"
+msgid "<variable id=\"DatabaseService\"><link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link></variable>"
+msgstr ""
+
+#. RByov
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407198144\n"
+"help.text"
+msgid "The <literal>Database</literal> service provides access to databases either embedded or described in Base documents. This service provides methods to:"
+msgstr ""
+
+#. 7dqXS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924481\n"
+"help.text"
+msgid "Get access to data in database tables."
+msgstr ""
+
+#. 29pT5
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924285\n"
+"help.text"
+msgid "Run <literal>SELECT</literal> queries and perform aggregate functions."
+msgstr ""
+
+#. LYsPD
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924111\n"
+"help.text"
+msgid "Run SQL action statements such as <literal>INSERT</literal>, <literal>UPDATE</literal>, <literal>DELETE</literal>, etc."
+msgstr ""
+
+#. ABgYk
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id811599407236602\n"
+"help.text"
+msgid "Each instance of the <literal>Database</literal> service represents a single database and gives access to its tables, queries and data. This service does not provide access to forms or reports in the Base document."
+msgstr ""
+
+#. Snu6R
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231615386789950\n"
+"help.text"
+msgid "All exchanges between this service and the database are done using SQL only."
+msgstr ""
+
+#. MiGUE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id121599407322804\n"
+"help.text"
+msgid "SQL statements may be run in <emph>direct</emph> or <emph>indirect</emph> mode. In direct mode the statement is transferred to the database engine without any syntax checking or review."
+msgstr ""
+
+#. Kg5Cn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id681599407189019\n"
+"help.text"
+msgid "The provided interfaces include simple tables and queries lists, as well as access to database data."
+msgstr ""
+
+#. N3J98
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407280007\n"
+"help.text"
+msgid "To make SQL statements more readable, you can use optional square brackets to enclose tables, queries and fields instead of using other enclosing characters that may be exclusive to certain Relational Database Management Systems (RDBMS)."
+msgstr ""
+
+#. CAFnK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id91587913266988\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. GBCxf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id541599408159668\n"
+"help.text"
+msgid "The code snippet below shows how to access any database with the <literal>Database</literal> service."
+msgstr ""
+
+#. RApNW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id471599408248873\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. f2tV4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id111615146818256\n"
+"help.text"
+msgid "<emph>FileName</emph>: The name of the Base file. Must be expressed using <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. yg5bv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id771615146944307\n"
+"help.text"
+msgid "<emph>RegistrationName</emph>: The name of a registered database. If a file name is provided, this argument should not be used."
+msgstr ""
+
+#. RM9c6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id491615147048748\n"
+"help.text"
+msgid "Conversely, if a <literal>RegistrationName</literal> is specified, the <literal>FileName</literal> parameter should not be defined."
+msgstr ""
+
+#. 3d6NY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id841615147168279\n"
+"help.text"
+msgid "<emph>ReadOnly</emph>: Determines if the database will be opened as readonly (Default = True)."
+msgstr ""
+
+#. Gn7AF
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id291615147236001\n"
+"help.text"
+msgid "<emph>User, Password</emph>: Additional connection parameters to the database server."
+msgstr ""
+
+#. Z2VVg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id771615147491563\n"
+"help.text"
+msgid "Accessing Databases with the UI Service"
+msgstr ""
+
+#. 6s3Hr
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id901599408410712\n"
+"help.text"
+msgid "It is also possible to access the database associated with a Base document using the <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"UI Service\"><literal>ScriptForge.UI</literal></link> service, as shown in the example below:"
+msgstr ""
+
+#. T6mkQ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id631615147843278\n"
+"help.text"
+msgid "' User and password are supplied below, if needed"
+msgstr ""
+
+#. 88wGG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id921599408791887\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. EF9Lc
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id841587913266618\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. x4Z5A
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521587913266568\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. QUrYT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587913266368\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. 3kQCm
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id631587914939732\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. RYuuo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id951587913266220\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. BzLQb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id651587913266754\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. up8WT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587914989890\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. dGoYp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id351587913266349\n"
+"help.text"
+msgid "The list of stored queries."
+msgstr ""
+
+#. bfdLR
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id931599409717463\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2DDTs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599409717945\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. rGTvw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id341599409717612\n"
+"help.text"
+msgid "The list of stored tables."
+msgstr ""
+
+#. u5YE4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id741599409777967\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. evuSw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551599409777759\n"
+"help.text"
+msgid "The UNO object representing the current database connection."
+msgstr ""
+
+#. w9YZG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599409887585\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NeTGg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id861599409887284\n"
+"help.text"
+msgid "The UNO object representing the metadata describing the database system attributes."
+msgstr ""
+
+#. ApsdK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the Database Service"
+msgstr ""
+
+#. emrA2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id201587913266596\n"
+"help.text"
+msgid "Closes the current database connection."
+msgstr ""
+
+#. nwbSh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id13159655484952\n"
+"help.text"
+msgid "Computes the given aggregate function on a field or expression belonging to a table."
+msgstr ""
+
+#. E9LsG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id101615148468548\n"
+"help.text"
+msgid "Optionally, a SQL <literal>WHERE</literal> clause can be specified as a filter that will be applied prior to the aggregate function."
+msgstr ""
+
+#. rKxVP
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441596554849949\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 3PSmS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id381596554849698\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. F4AAZ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521596554849185\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. AGBFS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id781615150306678\n"
+"help.text"
+msgid "The example below assumes the file <literal>Employees.odb</literal> has a table named <literal>EmployeeData</literal>."
+msgstr ""
+
+#. KAqZB
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id871615150277916\n"
+"help.text"
+msgid "' Counts the number of employees in the table"
+msgstr ""
+
+#. AVstM
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id291615150373387\n"
+"help.text"
+msgid "' Returns the sum of all salaries in the table"
+msgstr ""
+
+#. cMiVJ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id931615150423062\n"
+"help.text"
+msgid "' Below are some examples of how tables can be filtered"
+msgstr ""
+
+#. kCmmv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id41599488113961\n"
+"help.text"
+msgid "Computes a SQL expression on a single record returned by a <literal>WHERE</literal> clause defined by the <literal>Criteria</literal> parameter."
+msgstr ""
+
+#. 8yUaz
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id601615381471954\n"
+"help.text"
+msgid "If the query returns multiple records, only the first one is considered. Use the <literal>OrderClause</literal> parameter to determine how query results are sorted."
+msgstr ""
+
+#. CNwh2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id671599488113986\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 5DGVh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441599488113247\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. jtrX7
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id40159948811316\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. X5HJp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599488689029\n"
+"help.text"
+msgid "<emph>OrderClause</emph>: An <literal>ORDER BY</literal> clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets."
+msgstr ""
+
+#. CPoBx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id481599489278579\n"
+"help.text"
+msgid "Stores the contents of a table or the results of a <literal>SELECT</literal> query or of an SQL statement in a two-dimensional array. The first index in the array corresponds to the rows and the second index refers to the columns."
+msgstr ""
+
+#. GXji8
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id821615384762425\n"
+"help.text"
+msgid "An upper limit can be specified to the number of returned rows. Optionally column names may be inserted in the first row of the array."
+msgstr ""
+
+#. gX7AY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599490209915\n"
+"help.text"
+msgid "The returned array will be empty if no rows are returned and the column headers are not required."
+msgstr ""
+
+#. dURZU
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id451599489278429\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A table or query name (without square brackets) or a <literal>SELECT</literal> SQL statement."
+msgstr ""
+
+#. fFFFd
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599489278141\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
+#. unoDn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id941599489278747\n"
+"help.text"
+msgid "<emph>Header</emph>: When <literal>True</literal>, the first row of the returned array contains the column headers."
+msgstr ""
+
+#. BZxwK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id591599489278926\n"
+"help.text"
+msgid "<emph>MaxRows</emph>: The maximum number of rows to return. The default is zero, meaning there is no limit to the number of returned rows."
+msgstr ""
+
+#. 3XZPf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id721615385125947\n"
+"help.text"
+msgid "Below are a few examples of how the <literal>GetRows</literal> method can be used:"
+msgstr ""
+
+#. zkeuW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id171615385196045\n"
+"help.text"
+msgid "' Returns all rows in the table with column headers"
+msgstr ""
+
+#. eFmmE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id371615385230721\n"
+"help.text"
+msgid "' Returns the first 50 employee records ordered by the 'FirstName' field"
+msgstr ""
+
+#. FMBEy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id31599490609759\n"
+"help.text"
+msgid "Executes an action query of an SQL statement such as creating a table, as well as inserting, updating and deleting records."
+msgstr ""
+
+#. gyiQy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id331615385491925\n"
+"help.text"
+msgid "The method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. G5bDE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id21599490810021\n"
+"help.text"
+msgid "The <literal>RunSql</literal> method is rejected with an error message in case the database was previously opened in read-only mode."
+msgstr ""
+
+#. cMjus
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id701599490609473\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A query name (without square brackets) or a SQL statement."
+msgstr ""
+
+#. kngXb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id51599490609377\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. (Default = <literal>False</literal>). For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
#. BC4Sc
#: sf_dialog.xhp
msgctxt ""
@@ -4363,13 +5101,13 @@ msgctxt ""
msgid "Service invocation and usage"
msgstr ""
-#. hZcuK
+#. v8RcL
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The dialog service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
+msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
msgstr ""
#. Ntzqh
@@ -4444,6 +5182,15 @@ msgctxt ""
msgid "Note that in previous examples, the prefix <literal>\"SFDialogs.\"</literal> may be omitted."
msgstr ""
+#. zLWvF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id251612628336779\n"
+"help.text"
+msgid "Properties or methods marked below as <emph>(7.2)</emph> are available as from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. nXGkZ
#: sf_dialog.xhp
msgctxt ""
@@ -4669,121 +5416,301 @@ msgctxt ""
msgid "The UNO object representing the dialog view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControl interface\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog-members.html\" name=\"UnoControlDialog interface\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. gTQjc
+#. q8eyc
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id921606472825856\n"
+"hd_id421612628828054\n"
"help.text"
-msgid "Methods"
+msgid "Event properties"
msgstr ""
-#. DiCyL
+#. EbGWN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id871583933076448\n"
+"par_id41612629140856\n"
"help.text"
-msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
msgstr ""
-#. 7QdPA
+#. XCC7C
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id151598178880227\n"
+"par_id961612628879819\n"
"help.text"
-msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgid "Name"
msgstr ""
-#. L9qDh
+#. V3bin
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id61583933076171\n"
+"par_id401612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "ReadOnly"
msgstr ""
-#. iFcFd
+#. uW85z
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id26158393307687\n"
+"par_id281612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Basic IDE Description"
msgstr ""
-#. eYDfG
+#. dFkbN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"bas_id841598179117184\n"
+"par_id111612629836630\n"
"help.text"
-msgid "' Dialog stored in current document's standard library"
+msgid "Yes"
msgstr ""
-#. 4qLn9
+#. aKBvg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id161584541257982\n"
+"par_id1001612629836902\n"
"help.text"
-msgid "Return either:"
+msgid "When receiving focus"
msgstr ""
-#. isSnB
+#. 4FBaJ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id421598179770993\n"
+"par_id291612629836294\n"
"help.text"
-msgid "the list of the controls contained in the dialog"
+msgid "Yes"
msgstr ""
-#. 4EuYK
+#. 8U7FZ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id81598185229301\n"
+"par_id62161262983683\n"
"help.text"
-msgid "a dialog control class instance based on its name"
+msgid "When losing focus"
msgstr ""
-#. 2RFtC
+#. wBCKi
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id601584541257443\n"
+"par_id81612629836634\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "Yes"
msgstr ""
-#. 7PGuV
+#. CK5vU
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id291584541257237\n"
+"par_id881612629836744\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgid "Key pressed"
msgstr ""
-#. AEAHd
+#. gXJGu
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id1001584541257789\n"
+"par_id591612629836830\n"
"help.text"
-msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgid "Yes"
msgstr ""
-#. atHXa
+#. CJwi7
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id32158454125769\n"
+"par_id161612629836775\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Key released"
+msgstr ""
+
+#. wS7GH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. GcDU7
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. eUS49
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QrByH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. CRGTF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 69s4B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. ojLRr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. XaS8A
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. MnMUF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NtqPz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. czknv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. J2uzg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. gTQjc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. DiCyL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 7QdPA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgstr ""
+
+#. eYDfG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id841598179117184\n"
+"help.text"
+msgid "' Dialog stored in current document's standard library"
+msgstr ""
+
+#. 4qLn9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "Return either:"
+msgstr ""
+
+#. isSnB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id421598179770993\n"
+"help.text"
+msgid "the list of the controls contained in the dialog"
+msgstr ""
+
+#. 4EuYK
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81598185229301\n"
+"help.text"
+msgid "a dialog control class instance based on its name"
+msgstr ""
+
+#. AEAHd
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
msgstr ""
#. j8x9C
@@ -4876,22 +5803,13 @@ msgctxt ""
msgid "' Dialog stored in current document's standard library"
msgstr ""
-#. FrCG7
-#: sf_dialog.xhp
-msgctxt ""
-"sf_dialog.xhp\n"
-"bas_id781612273203518\n"
-"help.text"
-msgid "End Select"
-msgstr ""
-
-#. DYy75
+#. ARCGg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id21598187953679\n"
"help.text"
-msgid "Terminate the dialog service for the current instance. Return <literal>True</literal> if the termination was successful."
+msgid "Terminate the <literal>Dialog</literal> service for the current instance. Return <literal>True</literal> if the termination was successful."
msgstr ""
#. BFfGX
@@ -4921,31 +5839,31 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service manages the controls belonging to a dialog defined with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current service represents a single control within a dialog box."
msgstr ""
-#. 3oXnC
+#. 7dDgL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bm_id331612167249331\n"
+"par_id701598191157426\n"
"help.text"
-msgid "<bookmark_value>API;awt.XControl</bookmark_value> <bookmark_value>API;awt.XControlModel</bookmark_value>"
+msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
msgstr ""
-#. 7dDgL
+#. fFfwe
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id701598191157426\n"
+"par_id981598191184526\n"
"help.text"
-msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
+msgid "Note that the unique <literal>DialogControl.Value</literal> property content varies according to the control type."
msgstr ""
-#. GqHgy
+#. MBrzA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id981598191184526\n"
+"par_id991612698027551\n"
"help.text"
-msgid "Note that <literal>DialogControl.Value</literal> property content varies according to UNO control types."
+msgid "A special attention is given to controls of type tree control. It is easy to populate a tree, either branch by branch, or with a set of branches at once. Populating a tree control can be performed statically or dynamically."
msgstr ""
#. 9LpGF
@@ -5029,6 +5947,15 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service is available for these control types:"
msgstr ""
+#. ScLTk
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612698897514\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
#. 7xddb
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5092,6 +6019,15 @@ msgctxt ""
msgid "No"
msgstr ""
+#. jqpFz
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id231598538847029\n"
+"help.text"
+msgid "Button"
+msgstr ""
+
#. aTyMC
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5146,6 +6082,33 @@ msgctxt ""
msgid "One of the types listed above."
msgstr ""
+#. oMipU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id67161270548283\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 59ovD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341612705482566\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. w2ZhT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612705482919\n"
+"help.text"
+msgid "The currently upmost node selected in the tree control. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. veivJ
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5200,13 +6163,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. DrmM6
+#. 6L9ke
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id491598539231618\n"
+"par_id491598529331618\n"
"help.text"
-msgid "DateField, TimeField, FormattedField (read-only)"
+msgid "(read-only)"
msgstr ""
#. QbN5U
@@ -5425,6 +6388,33 @@ msgctxt ""
msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the specified control. The filename must comply with the <literal>FileNaming</literal> attribute of the <literal>ScriptForge.FileSystem</literal> service."
msgstr ""
+#. LZLsc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612700624650\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QxAW9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612700624483\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. m4N4j
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id11612700624514\n"
+"help.text"
+msgid "An object representing the lowest root node (usually there is only one such root node). Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. PqsSY
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5515,13 +6505,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. fk87j
+#. ZHrsm
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id991598517671916\n"
+"par_id1001598540024225\n"
"help.text"
-msgid "Read below."
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\" name=\"Value property\">Value property</link>"
msgstr ""
#. PqKgo
@@ -5623,13 +6613,49 @@ msgctxt ""
msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog.html)\" name=\"awt.UnoControlDialog\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. agJv5
+#. SAkJX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612699446459\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yuAdF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612699446893\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. 3Dmwo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id25161269944611\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
+#. 7XckG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id691612699446892\n"
+"help.text"
+msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\" name=\"awt.tree.XMutableTreeDataModel\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. dfWTW
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"hd_id81598540704978\n"
"help.text"
-msgid "The Value property"
+msgid "The <variable id=\"ValueProperty\">Value property</variable>"
msgstr ""
#. JHK7w
@@ -5659,6 +6685,15 @@ msgctxt ""
msgid "Description"
msgstr ""
+#. kfK2B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id271598543254590\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. jEyx9
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5686,6 +6721,15 @@ msgctxt ""
msgid "0, False: not checked<br/>1, True: checked<br/>2: grayed, don't know"
msgstr ""
+#. EKHtH
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781598543254887\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. nZVA5
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5704,6 +6748,24 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. DoCfT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401598543254743\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. XzBhY
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id731598543254544\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. kgfXR
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5749,6 +6811,15 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. CCkkF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81598543254625\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. YvPAp
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5767,6 +6838,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. veFie
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id561598543254115\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. ZragT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5794,6 +6874,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. 5VuCQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id751598543254299\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. a9AMF
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5803,6 +6892,348 @@ msgctxt ""
msgid "The text appearing in the field"
msgstr ""
+#. wGGjL
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341598543254600\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. CABLr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. c7srp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgstr ""
+
+#. fkFAt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 2sB8F
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 2A2Ex
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Description as labeled in the Basic IDE"
+msgstr ""
+
+#. rSRBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id91612707166532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. aABgD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612707166258\n"
+"help.text"
+msgid "Execute action"
+msgstr ""
+
+#. KnFdW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id79161270716675\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JrRob
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612707166731\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. mpuj3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 7Swj5
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. Mp4i7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ozGia
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. TR5uW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612707354544\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. HREcr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612707354899\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. L6e2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. sVo6A
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. pPBHX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. P6NX8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. XJGHA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. oCDXm
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. nLbMG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9XdcG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. BZ7sC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. mzbBD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. fAD8Y
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FCBxu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. 4DCtC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8B9ct
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. krueU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4c5qE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. FkyLb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id851612707606863\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. VudpK
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id351612707606197\n"
+"help.text"
+msgid "(Not in Basic IDE) when the expansion button is pressed on a node in a tree control"
+msgstr ""
+
+#. TkEgQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id121612707606251\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. quWBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612707606121\n"
+"help.text"
+msgid "(Not in Basic IDE) when a node in a tree control is selected"
+msgstr ""
+
+#. qyb3B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id811612707606330\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. th6Kr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id621612707606219\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
#. YFbGT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5821,33 +7252,222 @@ msgctxt ""
msgid "List of Methods in the DialogControl Service"
msgstr ""
-#. 3oU3L
+#. 5jtfg
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id871583933076448\n"
+"par_id831612711823126\n"
"help.text"
-msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. <variable id=\"XMutableTreeNode\">Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XMutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information.</variable>"
msgstr ""
-#. 6YvuU
+#. MrQnS
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id151598178880227\n"
+"par_id741612711823706\n"
"help.text"
-msgid "This method is often called from a dialog or control event."
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. B7sAb
+#. cK7HA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id841598179117184\n"
+"par_id761612711823834\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. g2Ubo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id791612711823819\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. GV6Gp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id911612711823382\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. qbb2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id401612711823779\n"
"help.text"
msgid "'Dialog stored in current document's standard library"
msgstr ""
+#. 8B3qP
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id221612713087885\n"
+"help.text"
+msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
+msgstr ""
+
+#. UkE9k
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781612713087722\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. 2FTD4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id36161271308759\n"
+"help.text"
+msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgstr ""
+
+#. r5QNj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id61612716027443\n"
+"help.text"
+msgid "Flat tree >>>> Resulting subtree"
+msgstr ""
+
+#. SQH7v
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612713087915\n"
+"help.text"
+msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgstr ""
+
+#. fWnhZ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612780723320\n"
+"help.text"
+msgid "Returns a new root node of the tree control, as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. The new tree root is inserted below pre-existing root nodes. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. YT845
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id821612780723965\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
+msgstr ""
+
+#. QiXVA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id671612780723837\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. Cw3b9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id31612780723267\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. Ynpwt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612781589503\n"
+"help.text"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. 5Jxkj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612782475457\n"
+"help.text"
+msgid "When not found, the method returns <literal>Nothing</literal>, to be tested with the <literal>IsNull()</literal> builtin function."
+msgstr ""
+
+#. n7pE8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612781589363\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
+msgstr ""
+
+#. t5Kcc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id541613670199211\n"
+"help.text"
+msgid "One argument out of <literal>DisplayValue</literal>or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgstr ""
+
+#. KMPVF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612781589560\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"Sting service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgstr ""
+
+#. CF4o6
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id481612781589626\n"
+"help.text"
+msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
+msgstr ""
+
+#. g7uEG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id141582384726168\n"
+"help.text"
+msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgstr ""
+
+#. 3oU3L
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 6YvuU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is often called from a dialog or control event."
+msgstr ""
+
#. HNmmm
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5866,13 +7486,13 @@ msgctxt ""
msgid "An error is raised if the actual control is not of the type <literal>TextField</literal> or is not multiline."
msgstr ""
-#. MwNhE
+#. AKiEA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Line</emph> : The string to insert. Default = an empty line."
+msgid "<emph>Line</emph>: The string to insert. Default is an empty line."
msgstr ""
#. opNus
@@ -8017,15 +9637,6 @@ msgctxt ""
msgid "The following code snippet invokes the <literal>FileSystem</literal> service. The method <literal>BuildPath</literal> was used as an example."
msgstr ""
-#. hUmn8
-#: sf_filesystem.xhp
-msgctxt ""
-"sf_filesystem.xhp\n"
-"bm_id901612991354326\n"
-"help.text"
-msgid "<bookmark_value>FileSystem service;FileNaming property</bookmark_value> <bookmark_value>FileSystem service;ConfigFolder property</bookmark_value> <bookmark_value>FileSystem service;ExtensionsFolder property</bookmark_value> <bookmark_value>FileSystem service;HomeFolder property</bookmark_value> <bookmark_value>FileSystem service;InstallFolder property</bookmark_value> <bookmark_value>FileSystem service;TemplatesFolder property</bookmark_value> <bookmark_value>FileSystem service;TemporaryFolder property</bookmark_value> <bookmark_value>FileSystem service;UserTemplatesFolder property</bookmark_value>"
-msgstr ""
-
#. Gsznv
#: sf_filesystem.xhp
msgctxt ""
@@ -8269,22 +9880,22 @@ msgctxt ""
msgid "Joins a folder path and the name of a file and returns the full file name with a valid path separator. The path separator is added only if necessary."
msgstr ""
-#. dbCP6
+#. EDmLL
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id90158393307695\n"
"help.text"
-msgid "<emph>FolderName</emph> : The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
+msgid "<emph>FolderName</emph>: The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
msgstr ""
-#. LaGBv
+#. TqBVA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id891583933076975\n"
"help.text"
-msgid "<emph>Name</emph> : The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
+msgid "<emph>Name</emph>: The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
msgstr ""
#. DwTpc
@@ -8305,22 +9916,22 @@ msgctxt ""
msgid "Depending on the value of the <literal>CompareContents</literal> argument, the comparison between both files can be either based only on file attributes (such as the last modified date), or based on the file contents."
msgstr ""
-#. dLpG4
+#. kYy2f
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481601118910755\n"
"help.text"
-msgid "<emph>FileName1, FileName2</emph> : The files to compare."
+msgid "<emph>FileName1, FileName2</emph>: The files to compare."
msgstr ""
-#. TAPBR
+#. mXZPN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111601118910848\n"
"help.text"
-msgid "<emph>CompareContents</emph> : When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
+msgid "<emph>CompareContents</emph>: When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
msgstr ""
#. EZNG5
@@ -8350,22 +9961,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ErB6x
+#. cxNda
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
msgstr ""
-#. A3qtd
+#. pwEq9
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111584542310166\n"
"help.text"
-msgid "<emph>Destination</emph> : It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
msgstr ""
#. FCpqn
@@ -8386,13 +9997,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. 53E5r
+#. 48FYf
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431558\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. KerV3
@@ -8440,22 +10051,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ygWn7
+#. isESD
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id851584544734202\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
msgstr ""
-#. EgL3W
+#. 5fFnt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id321584544734273\n"
"help.text"
-msgid "<emph>Destination</emph> : Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
msgstr ""
#. CzQ9A
@@ -8476,13 +10087,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. KCfZf
+#. 2ziFA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431525\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. niaPD
@@ -8512,13 +10123,13 @@ msgctxt ""
msgid "If the specified folder has a parent folder that does not exist, it is created."
msgstr ""
-#. ZFWUY
+#. G2A8N
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id491584540675469\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be created. If the folder already exists, an exception will be raised."
+msgid "<emph>FolderName</emph>: A string representing the folder to be created. If the folder already exists, an exception will be raised."
msgstr ""
#. EYSCS
@@ -8539,31 +10150,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. tykpH
+#. hBQSN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id901585322689715\n"
"help.text"
-msgid "<emph>FileName</emph> : The name of the file to be created."
+msgid "<emph>FileName</emph>: The name of the file to be created."
msgstr ""
-#. ZcmDb
+#. VkGyb
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id501585322689209\n"
"help.text"
-msgid "<emph>Overwrite</emph> : Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
+msgid "<emph>Overwrite</emph>: Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
msgstr ""
-#. X7GW9
+#. Zp6H3
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585322689192\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. eoE92
@@ -8611,13 +10222,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. D8kDv
+#. 2k57M
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id441584882040860\n"
"help.text"
-msgid "<emph>FileName</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
+msgid "<emph>FileName</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
msgstr ""
#. YtAfH
@@ -8665,13 +10276,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. zdaKv
+#. ecg9D
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id451584882542247\n"
"help.text"
-msgid "<emph>FolderName</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
+msgid "<emph>FolderName</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
msgstr ""
#. ECKGi
@@ -8701,13 +10312,13 @@ msgctxt ""
msgid "If the <literal>FileName</literal> parameter is actually an existing folder name, the method returns <literal>False</literal>."
msgstr ""
-#. 5sCo3
+#. 7pDFB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id361583764426547\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file to be tested."
+msgid "<emph>FileName</emph>: A string representing the file to be tested."
msgstr ""
#. ChDCL
@@ -8737,22 +10348,22 @@ msgctxt ""
msgid "The resulting list may be filtered with wildcards."
msgstr ""
-#. QFJEd
+#. YsYdQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id731583944543140\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. 6qDtR
+#. V95Bm
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id591585648450060\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
msgstr ""
#. HJ9vL
@@ -8782,13 +10393,13 @@ msgctxt ""
msgid "If the <literal>FolderName</literal> parameter is actually an existing file name, the method returns <literal>False</literal>."
msgstr ""
-#. SQVF8
+#. Z46FB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001583765642211\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be tested."
+msgid "<emph>FolderName</emph>: A string representing the folder to be tested."
msgstr ""
#. eAFVs
@@ -8809,13 +10420,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. kotiz
+#. B3jVo
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id691584110618308\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. VcGyZ
@@ -8863,13 +10474,13 @@ msgctxt ""
msgid "If this method is applied to a folder name or to a file without an extension, then an empty string is returned."
msgstr ""
-#. tQpBe
+#. GDoGW
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821584032680311\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. Am6Bu
@@ -8890,13 +10501,13 @@ msgctxt ""
msgid "The <literal>GetFileLen</literal> method can handle files with much larger sizes by returning a <literal>Currency</literal> value."
msgstr ""
-#. cC9GE
+#. FvwV6
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id161600685050367\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. o2GGJ
@@ -8908,13 +10519,13 @@ msgctxt ""
msgid "Returns the last modified date of a given file."
msgstr ""
-#. ssSmV
+#. dxpgz
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id25158481147822\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. VEZR6
@@ -8935,13 +10546,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. DHaix
+#. VWPoq
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671584032366193\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. ffxFe
@@ -8962,13 +10573,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. Gqc5k
+#. XDmYQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471584113432231\n"
"help.text"
-msgid "<emph>FileName</emph> : A string with the file or folder name to be analyzed."
+msgid "<emph>FileName</emph>: A string with the file or folder name to be analyzed."
msgstr ""
#. Uc93M
@@ -9025,22 +10636,22 @@ msgctxt ""
msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
msgstr ""
-#. 5FXjQ
+#. jTMPS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id28160104251451\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
-#. 88LmG
+#. F86KG
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id71601042959846\n"
"help.text"
-msgid "<emph>Algorithm</emph> : One of the supported algorithms."
+msgid "<emph>Algorithm</emph>: One of the supported algorithms."
msgstr ""
#. HzFs2
@@ -9070,22 +10681,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. RY5vD
+#. LAeis
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id721584791330406\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
msgstr ""
-#. 5CsKP
+#. rgNqi
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id291584791330181\n"
"help.text"
-msgid "<emph>Destination</emph> : If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
+msgid "<emph>Destination</emph>: If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
msgstr ""
#. E7BHq
@@ -9151,22 +10762,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. wBkni
+#. tLxAt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id541584791330777\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
msgstr ""
-#. By4Cy
+#. bTWWF
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551584791330279\n"
"help.text"
-msgid "<emph>Destination</emph> : If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
+msgid "<emph>Destination</emph>: If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
msgstr ""
#. upwt8
@@ -9214,31 +10825,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. CBiwE
+#. R5a4m
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585320922678\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open."
+msgid "<emph>FileName</emph>: Identifies the file to open."
msgstr ""
-#. wr4wi
+#. FUxVH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671585320922388\n"
"help.text"
-msgid "<emph>IOMode</emph> : Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
+msgid "<emph>IOMode</emph>: Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
msgstr ""
-#. 25nRj
+#. ttSYS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id21585321398586\n"
"help.text"
-msgid "<emph>Create</emph> : Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
+msgid "<emph>Create</emph>: Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
msgstr ""
#. VDFAi
@@ -9259,13 +10870,13 @@ msgctxt ""
msgid "If <literal>False</literal> then new files are not created (default)."
msgstr ""
-#. WzDqZ
+#. BoVQQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id771585321576210\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. FuYwe
@@ -9286,13 +10897,13 @@ msgctxt ""
msgid "If the <literal>SAVE</literal> mode is set and the picked file exists, a warning message will be displayed."
msgstr ""
-#. gi6um
+#. PAaAH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481583670342502\n"
"help.text"
-msgid "<emph>DefaultFile</emph> : This argument is a string composed of a folder and file name:"
+msgid "<emph>DefaultFile</emph>: This argument is a string composed of a folder and file name:"
msgstr ""
#. fyVCs
@@ -9313,22 +10924,22 @@ msgctxt ""
msgid "The file part designates the default file to open or save."
msgstr ""
-#. CyhXn
+#. rcast
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id981583670342502\n"
"help.text"
-msgid "<emph>Mode</emph> : <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
+msgid "<emph>Mode</emph>: <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
msgstr ""
-#. Ym5VM
+#. Dtmio
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id31583670342502\n"
"help.text"
-msgid "<emph>Filter</emph> : The extension of the files displayed when the dialog is opened (default = no filter)."
+msgid "<emph>Filter</emph>: The extension of the files displayed when the dialog is opened (default = no filter)."
msgstr ""
#. 8WirR
@@ -9349,22 +10960,22 @@ msgctxt ""
msgid "Opens a dialog box to select a folder."
msgstr ""
-#. nQtNH
+#. coL3A
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id951583671701872\n"
"help.text"
-msgid "<emph>DefaultFolder</emph> : A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
+msgid "<emph>DefaultFolder</emph>: A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
msgstr ""
-#. hspKF
+#. esSGJ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821583671701764\n"
"help.text"
-msgid "<emph>FreeText</emph> : Text to display in the dialog (default = \"\")."
+msgid "<emph>FreeText</emph>: Text to display in the dialog (default = \"\")."
msgstr ""
#. GMYtx
@@ -9394,22 +11005,22 @@ msgctxt ""
msgid "The list may be filtered with wildcards."
msgstr ""
-#. vXLY5
+#. ApGN7
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id701584016761945\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. XSBWe
+#. zHooS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471585648674921\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
msgstr ""
#. WVhEh
@@ -9430,6 +11041,1005 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
msgstr ""
+#. VCRTD
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.L10N service"
+msgstr ""
+
+#. q7BSh
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id521585843652750\n"
+"help.text"
+msgid "<variable id=\"L10NService\"><link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N service\"><literal>ScriptForge</literal>.<literal>L10N</literal> service</link></variable>"
+msgstr ""
+
+#. FRAiJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652556\n"
+"help.text"
+msgid "This service provides a number of methods related to the translation of strings with minimal impact on the program's source code. The methods provided by the <literal>L10N</literal> service can be used mainly to:"
+msgstr ""
+
+#. gw2rW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id601614351922212\n"
+"help.text"
+msgid "Create POT files that can be used as templates for translation of all strings in the program."
+msgstr ""
+
+#. sbVQL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id131614352196513\n"
+"help.text"
+msgid "Get translated strings at runtime for the language defined in the <literal>Locale</literal> property."
+msgstr ""
+
+#. kCrgU
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id971614966420419\n"
+"help.text"
+msgid "The acronym <literal>L10N</literal> stands for Localization and refers to a set of procedures for translating software to a specific country or region."
+msgstr ""
+
+#. supr5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652438\n"
+"help.text"
+msgid "PO files have long been promoted in the free software community as a means to providing multilingual user interfaces. This is accomplished through the use of human-readable text files with a well defined structure that specifies, for any given language, the source language string and the localized string."
+msgstr ""
+
+#. j6xsd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652814\n"
+"help.text"
+msgid "The main advantage of the PO format is dissociation of the programmer and the translator. PO files are independent text files, so the programmer can send POT template files to translators, who will then translate their contents and return the translated PO files for each supported language."
+msgstr ""
+
+#. iBQxR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id811614352321187\n"
+"help.text"
+msgid "The <literal>L10N</literal> service is based on the GNU implementation of PO (portable object) files. To learn more about this file format, visit <link href=\"https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html\" name=\"GetText\">GNU gettext Utilities: PO Files</link>."
+msgstr ""
+
+#. 4CMir
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id91585843652832\n"
+"help.text"
+msgid "This service implements the three methods listed below:"
+msgstr ""
+
+#. fBXDW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1158584365237\n"
+"help.text"
+msgid "<emph>AddText</emph>: Used by the programmer to build a set of strings that will be translated later."
+msgstr ""
+
+#. cm7fq
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id681585843652331\n"
+"help.text"
+msgid "<emph>ExportToPOTFile</emph>: Exports the strings added by the <literal>AddText</literal> method to a POT file."
+msgstr ""
+
+#. Z7dU5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id531585843652697\n"
+"help.text"
+msgid "<emph>GetText</emph>: Gets the translated strings at runtime."
+msgstr ""
+
+#. D4Fyf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id361614361362393\n"
+"help.text"
+msgid "Note that the first two methods are used to build a set of translatable strings and export them to a POT file. However, it is not mandatory to create POT files using these methods. Since they are text files, the programmer could have created them using any text editor."
+msgstr ""
+
+#. Rn7FL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id351585843652312\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. nkcFt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614353247163\n"
+"help.text"
+msgid "To invoke the <literal>L10N</literal> service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below."
+msgstr ""
+
+#. u3ENa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652877\n"
+"help.text"
+msgid "<emph>FolderName</emph>: The folder containing the PO files. It must be expressed in the <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. 8PpqQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585843652789\n"
+"help.text"
+msgid "<emph>Locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
+msgstr ""
+
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
+#. 3YPqe
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891614358528334\n"
+"help.text"
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods."
+msgstr ""
+
+#. XUTWZ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id611614358672609\n"
+"help.text"
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings."
+msgstr ""
+
+#. RmYkJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id451614358683971\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\")"
+msgstr ""
+
+#. Ab7iH
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id321614358809763\n"
+"help.text"
+msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French."
+msgstr ""
+
+#. zEgWG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id661614358846464\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\", \"fr-BE\")"
+msgstr ""
+
+#. UGFWB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652496\n"
+"help.text"
+msgid "PO files must be named in the form \"la-CO.po\" or \"la.po\", where \"la\" refers to the language and \"CO\" is the country. Some examples are: \"en-US.po\", \"fr-BE.po\" or \"fr.po\"."
+msgstr ""
+
+#. zQhHX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id171585843652545\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. M9GLd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bm_id871614359551930\n"
+"help.text"
+msgid "<bookmark_value>L10N service;Folder</bookmark_value> <bookmark_value>L10N service;Languages</bookmark_value> <bookmark_value>L10N service;Locale</bookmark_value>"
+msgstr ""
+
+#. 6mcLb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id561585843652465\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. mJaFd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652958\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. FFbDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id741585843652162\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. X3tJK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652823\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 8ECBX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id351585843652638\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. j3wEj
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id451585843652928\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. uED9S
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id751585843652642\n"
+"help.text"
+msgid "The folder containing the PO files (see the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#bm_id901612991354326\" name=\"FileNaming property\"><literal>FileSystem.FileNaming</literal></link> property to learn about the notation used)."
+msgstr ""
+
+#. Zsp7p
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id96158584365279\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vdfiw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652912\n"
+"help.text"
+msgid "A zero-based array listing all the base names (without the \".po\" extension) of the PO-files found in the specified <literal>Folder</literal>."
+msgstr ""
+
+#. NWxhu
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961585843652589\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LSNA3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id561585843652947\n"
+"help.text"
+msgid "The currently active language-COUNTRY combination. This property will be initially empty if the service was instantiated without any of the optional arguments."
+msgstr ""
+
+#. 5cs7h
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the L10N Service"
+msgstr ""
+
+#. Q24j9
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1001585843652271\n"
+"help.text"
+msgid "Adds a new entry in the list of localizable strings. It must not exist yet."
+msgstr ""
+
+#. WPVrn
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id391585843652753\n"
+"help.text"
+msgid "<emph>Context</emph>: The key to retrieve the translated string with the <literal>GetText</literal> method. This parameter has a default value of \"\"."
+msgstr ""
+
+#. EC7wb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585844419114\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. The <literal>MsgId</literal> becomes the key to retrieve the translated string via <literal>GetText</literal> method when <literal>Context</literal> is empty."
+msgstr ""
+
+#. X3F7E
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id311614361926844\n"
+"help.text"
+msgid "The <literal>MsgId</literal> string may contain any number of placeholders (%1 %2 %3 ...) for dynamically modifying the string at runtime."
+msgstr ""
+
+#. 9Jgn8
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id541585844475331\n"
+"help.text"
+msgid "<emph>Comment</emph>: Optional comment to be added alongside the string to help translators."
+msgstr ""
+
+#. TAyPG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id461614364298440\n"
+"help.text"
+msgid "The example below creates a set of strings in English:"
+msgstr ""
+
+#. DqFBf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281586102707242\n"
+"help.text"
+msgid "Exports a set of untranslated strings as a POT file."
+msgstr ""
+
+#. zTKQ4
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id711586102939257\n"
+"help.text"
+msgid "To build a set of strings you can use either a succession of <literal>AddText</literal> method calls, or by a successful invocation of the <literal>L10N</literal> service with the <literal>FolderName</literal> argument present. It is also possible to use a combination of both techniques."
+msgstr ""
+
+#. WiqHy
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id31586102707537\n"
+"help.text"
+msgid "<emph>FileName</emph>: The output file in <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. BkEjG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id851586102707579\n"
+"help.text"
+msgid "<emph>Header</emph>: Comments that will be added on top of the generated POT file."
+msgstr ""
+
+#. qfPvB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id111614364686973\n"
+"help.text"
+msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the <literal>Header</literal> argument."
+msgstr ""
+
+#. rUUCt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id5158610270728\n"
+"help.text"
+msgid "<emph>Encoding</emph>: The character set to be used (Default = \"UTF-8\")."
+msgstr ""
+
+#. uDu7z
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581614364494235\n"
+"help.text"
+msgid "The generated file should successfully pass the <literal>msgfmt --check</literal> GNU command."
+msgstr ""
+
+#. wBAjb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891586165768715\n"
+"help.text"
+msgid "Gets the translated string corresponding to the given <literal>MsgId</literal> argument."
+msgstr ""
+
+#. NzGZC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291614365296959\n"
+"help.text"
+msgid "A list of arguments may be specified to replace the placeholders (%1, %2, ...) in the string."
+msgstr ""
+
+#. 9DBFa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231586166181909\n"
+"help.text"
+msgid "If no translated string is found, the method returns the untranslated string after replacing the placeholders with the specified arguments."
+msgstr ""
+
+#. bAcmJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id871586352505927\n"
+"help.text"
+msgid "This method can be called either by the full name <literal>GetText</literal> or by the shortcut <literal>_</literal> (a single underscore):"
+msgstr ""
+
+#. NzdBC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614967136502\n"
+"help.text"
+msgid "In the ScriptForge library, all methods starting with the \"_\" character are reserved for internal use only. However, the shortcut <literal>_</literal> used for <literal>GetText</literal> is the only exception to this rule, hence it can be safely used in Basic scripts."
+msgstr ""
+
+#. rNrAw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id51586165768525\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime."
+msgstr ""
+
+#. Fummg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id11614365537450\n"
+"help.text"
+msgid "Besides using a single <literal>MsgId</literal> string, this method also accepts the following formats:"
+msgstr ""
+
+#. fD2Bg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961614365557277\n"
+"help.text"
+msgid "The <literal>Context</literal> string with which the method will retrieve the <literal>MsgId</literal> in the PO file, or;"
+msgstr ""
+
+#. v6nVR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id981614365589866\n"
+"help.text"
+msgid "A combination <literal>Context|MsgId</literal>, instructing the method to retrieve the <literal>MsgId</literal> using specified <literal>Context</literal> value. The second part of the argument is used to improve code readability."
+msgstr ""
+
+#. 5zB4f
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id571586165768106\n"
+"help.text"
+msgid "<emph>Arg1, ...</emph>: Values to be inserted into the placeholders. Any variable type is allowed, however only strings, numbers and dates will be considered."
+msgstr ""
+
+#. cCZDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id701614365961454\n"
+"help.text"
+msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the <literal>GetText</literal> method:"
+msgstr ""
+
+#. Kz4S7
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id171614366110835\n"
+"help.text"
+msgid "myPO = CreateScriptService(\"L10N\", \"c:\\MyPOFolder\\\")"
+msgstr ""
+
+#. EcBzr
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id1001586166834936\n"
+"help.text"
+msgid "' \"¡Bienvenido John! Espero que disfrutes de este programa\""
+msgstr ""
+
+#. H4aXx
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/guide/translation.xhp\" name=\"Controls Translation\"> Translation of Controls in the Dialog Editor</link>"
+msgstr ""
+
+#. Ah5Gj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Platform service"
+msgstr ""
+
+#. PCkEG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"PlatformService\"><link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"Platform service\"><literal>ScriptForge</literal>.<literal>Platform</literal> service</link></variable>"
+msgstr ""
+
+#. 7D6Dx
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Platform</literal> service provides a collection of properties about the current execution environment and context, such as:"
+msgstr ""
+
+#. FDJFB
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "The hardware platform (architecture, CPU count, machine type, etc)"
+msgstr ""
+
+#. i9FbJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Operating system information (OS type, release, version, etc)"
+msgstr ""
+
+#. uPLtj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "The LibreOffice version"
+msgstr ""
+
+#. BrEr7
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id671600788076855\n"
+"help.text"
+msgid "The current user name"
+msgstr ""
+
+#. ZvBqs
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id951614903258253\n"
+"help.text"
+msgid "All properties of the <literal>Platform</literal> service are read-only."
+msgstr ""
+
+#. iK4Gv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. Emisv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The code snippet below instantiates the <literal>Platform</literal> service and accesses the <literal>Architecture</literal> property."
+msgstr ""
+
+#. KC5eN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VXJ8a
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. JN68D
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. ZndAt
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. dAoKA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. XdLGG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. EEWuL
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "The hardware bit architecture. Example: '<literal>32bit</literal>' or '<literal>64bit</literal>'"
+msgstr ""
+
+#. 8EZ8A
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iG4iH
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "The computer's network name."
+msgstr ""
+
+#. hvAeY
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. g5EUJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "The number of central processor units."
+msgstr ""
+
+#. 89Lo8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rmGRV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "The name of the currently logged user."
+msgstr ""
+
+#. Dt7J5
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id391600788076253\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LA6EN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076541\n"
+"help.text"
+msgid "The machine type. Examples are: '<literal>i386</literal>' or '<literal>x86_64</literal>'."
+msgstr ""
+
+#. tqwyD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id211600788076138\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9uRw8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id521600788076371\n"
+"help.text"
+msgid "The actual LibreOffice version expressed as<br/>'<literal>LibreOffice w.x.y.z (The Document Foundation)</literal>'."
+msgstr ""
+
+#. 4bpcJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id621614902220807\n"
+"help.text"
+msgid "Example: '<literal>LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
+msgstr ""
+
+#. 7WDer
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076758\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NUSby
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id781600788076694\n"
+"help.text"
+msgid "The operating system type. Example: '<literal>Darwin</literal>, <literal>Linux</literal>' or '<literal>Windows</literal>'."
+msgstr ""
+
+#. cLiaw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id261600788076841\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. nepQ6
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id11600788076757\n"
+"help.text"
+msgid "A single string identifying the underlying platform with as much useful and human-readable information as possible."
+msgstr ""
+
+#. EH36m
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id501614902381381\n"
+"help.text"
+msgid "Example: '<literal>Linux-5.8.0-44-generic-x86_64-with-glibc2.32</literal>'"
+msgstr ""
+
+#. hbyth
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id531600789141795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4iEvV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600789141619\n"
+"help.text"
+msgid "The operating system's release. Example: '<literal>5.8.0-44-generic</literal>'"
+msgstr ""
+
+#. 2fBtD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600789286532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iukPq
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id701600789286280\n"
+"help.text"
+msgid "The operating system's build or version."
+msgstr ""
+
+#. DWQNA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id351614902520555\n"
+"help.text"
+msgid "Example: '<literal>#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021</literal>'"
+msgstr ""
+
+#. fCdYi
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id941600789527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wkthE
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id631600789527859\n"
+"help.text"
+msgid "The real processor name. Example: '<literal>amdk6</literal>'."
+msgstr ""
+
+#. MYY9M
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id111614902598396\n"
+"help.text"
+msgid "This property may return the same value as the <literal>Machine</literal> property."
+msgstr ""
+
+#. 4pnPw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/python/python_platform.xhp\" name=\"OS python\">Identifying the operating system</link>"
+msgstr ""
+
+#. UCfLb
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613065794148\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Platform information with Calc INFO formula\">Platform information with INFO(\"system\") Calc formula</link>"
+msgstr ""
+
+#. PqDHG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id103613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType function</link>"
+msgstr ""
+
+#. DAfoV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301316075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools library</link>"
+msgstr ""
+
#. GpvmN
#: sf_services.xhp
msgctxt ""
@@ -11392,13 +14002,13 @@ msgctxt ""
msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
msgstr ""
-#. WSwjJ
+#. TFfR3
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id151611951803163\n"
"help.text"
-msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution."
+msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as <literal>Capitalize</literal>, <literal>Escape</literal>, etc return a new string after their execution."
msgstr ""
#. jaBZR
@@ -12652,13 +15262,13 @@ msgctxt ""
msgid "If <literal>OldStr</literal> and <literal>NewStr</literal> are arrays, replacements occur one by one up to the <literal>UBound(NewStr)</literal>."
msgstr ""
-#. HDGCx
+#. qUhcr
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id241612385058264\n"
"help.text"
-msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, than the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
+msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, then the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
msgstr ""
#. oTqRh
@@ -13129,6 +15739,564 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String function\">String built-in function</link>"
msgstr ""
+#. HjZDB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.TextStream service"
+msgstr ""
+
+#. cEA5U
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id351585330787295\n"
+"help.text"
+msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
+msgstr ""
+
+#. nBJsE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id511585330787205\n"
+"help.text"
+msgid "The <literal>TextStream</literal> service is used to sequentially read from and write to files opened or created using the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. TeRTa
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id41613596903894\n"
+"help.text"
+msgid "The methods <literal>OpenTextFile</literal> and <literal>CreateTextFile</literal> from the <literal>FileSystem</literal> service return an instance of the <literal>TextStream</literal> service."
+msgstr ""
+
+#. MVFWC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id161585330787262\n"
+"help.text"
+msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system."
+msgstr ""
+
+#. GDkir
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id831613598137669\n"
+"help.text"
+msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the <literal>SF_String.sfNEWLINE</literal> property."
+msgstr ""
+
+#. SvXzF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id851613597445432\n"
+"help.text"
+msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run."
+msgstr ""
+
+#. U6RHd
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id83158533078741\n"
+"help.text"
+msgid "Service instantiation"
+msgstr ""
+
+#. c7WYC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id351613598192725\n"
+"help.text"
+msgid "The code snippet below uses the <literal>OpenTextFile</literal> method to create an instance of the <literal>TextStream</literal> Service."
+msgstr ""
+
+#. UUudg
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id371585330787197\n"
+"help.text"
+msgid "The file must be closed with the <literal>CloseFile</literal> method after all read or write operations have been executed:"
+msgstr ""
+
+#. uCC2B
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id91613599192241\n"
+"help.text"
+msgid "myFile.CloseFile()"
+msgstr ""
+
+#. zNveN
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891582733781994\n"
+"help.text"
+msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
+msgstr ""
+
+#. LnYGk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id761613599333614\n"
+"help.text"
+msgid "Set myFile = myFile.Dispose()"
+msgstr ""
+
+#. nsGCZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id121612917368946\n"
+"help.text"
+msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
+msgstr ""
+
+#. JAmgD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id941585330787948\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. aZttT
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id1001613600572485\n"
+"help.text"
+msgid "<bookmark_value>TextStream service;AtEndOfStream</bookmark_value> <bookmark_value>TextStream service;Encoding</bookmark_value> <bookmark_value>TextStream service;FileName</bookmark_value> <bookmark_value>TextStream service;IOMode</bookmark_value> <bookmark_value>TextStream service;Line</bookmark_value> <bookmark_value>TextStream service;NewLine</bookmark_value>"
+msgstr ""
+
+#. aN9zM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id631585330787267\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. vwGC5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id401585330787370\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. GpL38
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id581585330787700\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 6FDuM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id551585330787608\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. ECkTm
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id181585330787752\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. YFkaY
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id901585330787680\n"
+"help.text"
+msgid "Used in read mode. A <literal>True</literal> value indicates that the end of the file has been reached. A test using this property should precede calls to the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. EFEnA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787568\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. cVCoJ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id741585330787777\n"
+"help.text"
+msgid "The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. p5s3X
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id641585330787207\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JjEqX
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id281585330787614\n"
+"help.text"
+msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. goEnw
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id111585330787410\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. MZS6Z
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id861585330787417\n"
+"help.text"
+msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"."
+msgstr ""
+
+#. 7nTb9
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id87158533078795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. j45gC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787741\n"
+"help.text"
+msgid "Returns the number of lines read or written so far."
+msgstr ""
+
+#. CLAvQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id531585330787157\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. rdA5M
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id691585330787279\n"
+"help.text"
+msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
+msgstr ""
+
+#. dCeHZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. hKJkD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the TextStream Service"
+msgstr ""
+
+#. DBBKM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421585330787675\n"
+"help.text"
+msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns <literal>True</literal> if the file was successfully closed."
+msgstr ""
+
+#. MCW3q
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id65158533078799\n"
+"help.text"
+msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed."
+msgstr ""
+
+#. Vr34D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id71613600347125\n"
+"help.text"
+msgid "The resulting string can be split in lines either by using the <literal>Split</literal> built-in Basic function if the line delimiter is known, or with the <literal>SF_String.SplitLines</literal> method."
+msgstr ""
+
+#. VRLGn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id91585330787373\n"
+"help.text"
+msgid "For large files, using the <literal>ReadAll</literal> method wastes memory resources. In such cases it is recommended to read the file line by line using the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. BuBVA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id921613595637851\n"
+"help.text"
+msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):"
+msgstr ""
+
+#. dUSey
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id391613596019750\n"
+"help.text"
+msgid "The example below uses the <literal>ReadAll</literal> and <literal>SplitLines</literal> methods to read the contents of the file into an array of strings:"
+msgstr ""
+
+#. BuRJE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id251613595640550\n"
+"help.text"
+msgid "'Loads the FileSystem service"
+msgstr ""
+
+#. L2a3D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id181613595641087\n"
+"help.text"
+msgid "'Opens the text file with the names to be read"
+msgstr ""
+
+#. fArny
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id651613595641754\n"
+"help.text"
+msgid "Set inputFile = FSO.OpenTextFile(\"~/Documents/Students.txt\")"
+msgstr ""
+
+#. 9sFB5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id81613595642474\n"
+"help.text"
+msgid "Dim allData as String"
+msgstr ""
+
+#. a9b3r
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613595642766\n"
+"help.text"
+msgid "allData = inputFile.ReadAll()"
+msgstr ""
+
+#. 7Fq9E
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id871585330787885\n"
+"help.text"
+msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string."
+msgstr ""
+
+#. 6iDcF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id431613600221626\n"
+"help.text"
+msgid "The <literal>AtEndOfStream</literal> test should precede the <literal>ReadLine</literal> method like in the example below."
+msgstr ""
+
+#. GRRkq
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id171585330787774\n"
+"help.text"
+msgid "An error will be raised if the <literal>AtEndOfStream</literal> was reached during the previous <literal>ReadLine</literal> or <literal>SkipLine</literal> method call."
+msgstr ""
+
+#. mAty4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id11585330787847\n"
+"help.text"
+msgid "Skips the next line in the input stream when reading a <literal>TextStream</literal> file."
+msgstr ""
+
+#. FDMJB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id441613600704766\n"
+"help.text"
+msgid "This method can result in <literal>AtEndOfStream</literal> being set to <literal>True</literal>."
+msgstr ""
+
+#. D4JVb
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141585330787657\n"
+"help.text"
+msgid "Writes a specified number of empty lines to the output stream."
+msgstr ""
+
+#. NqNwE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id291585330787357\n"
+"help.text"
+msgid "<emph>Lines</emph>: The number of empty lines to write."
+msgstr ""
+
+#. GCPCC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id101585330787215\n"
+"help.text"
+msgid "Writes the given string to the output stream as a single line."
+msgstr ""
+
+#. Eska7
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421613601002074\n"
+"help.text"
+msgid "The character defined in the <literal>NewLine</literal> property is used as the line delimiter."
+msgstr ""
+
+#. YRTuQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id491585330787650\n"
+"help.text"
+msgid "<emph>Line</emph>: The line to write, may be empty."
+msgstr ""
+
+#. 39u4o
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id21613321528612\n"
+"help.text"
+msgid "'Instantiates the FileSystem Service"
+msgstr ""
+
+#. FnTiG
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613321529277\n"
+"help.text"
+msgid "'Creates a text file"
+msgstr ""
+
+#. f5RSB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id641613321530181\n"
+"help.text"
+msgid "'Writes the Value and Value squared, separated by \";\""
+msgstr ""
+
+#. FCowk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id141613321530960\n"
+"help.text"
+msgid "myFile.WriteLine(\"Value;Value Squared\")"
+msgstr ""
+
+#. m9Mo4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id881613321532598\n"
+"help.text"
+msgid "'Closes the file and free resources"
+msgstr ""
+
+#. nrDCn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input function\">Input Function</link>"
+msgstr ""
+
+#. FnNRc
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id271612398715438\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
+msgstr ""
+
#. PCSPY
#: sf_timer.xhp
msgctxt ""
@@ -13435,15 +16603,6 @@ msgctxt ""
msgid "Returned value"
msgstr ""
-#. S6Gay
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id31582734180676\n"
-"help.text"
-msgid "Continue"
-msgstr ""
-
#. C2QQ4
#: sf_timer.xhp
msgctxt ""
@@ -13462,15 +16621,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not suspended"
msgstr ""
-#. ASHCm
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id881582734649304\n"
-"help.text"
-msgid "Restart"
-msgstr ""
-
#. nkUs3
#: sf_timer.xhp
msgctxt ""
@@ -13489,15 +16639,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is inactive"
msgstr ""
-#. 7VHEX
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id201582734802443\n"
-"help.text"
-msgid "Start"
-msgstr ""
-
#. AkgAy
#: sf_timer.xhp
msgctxt ""
@@ -13516,15 +16657,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is already started"
msgstr ""
-#. QdjDi
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id781582734905507\n"
-"help.text"
-msgid "Suspend"
-msgstr ""
-
#. D7CoH
#: sf_timer.xhp
msgctxt ""
@@ -13543,15 +16675,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not started or already suspended"
msgstr ""
-#. BUjcE
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id771582734996722\n"
-"help.text"
-msgid "Terminate"
-msgstr ""
-
#. sgXra
#: sf_timer.xhp
msgctxt ""
@@ -13579,6 +16702,33 @@ msgctxt ""
msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
msgstr ""
+#. UgBnC
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id141582735926821\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as suspended time"
+msgstr ""
+
+#. 4jHcj
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id901582735961725\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as running time"
+msgstr ""
+
+#. 7QhZU
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id941610739926687\n"
+"help.text"
+msgid "'Shows the final time measurements"
+msgstr ""
+
#. J6XGB
#: sf_timer.xhp
msgctxt ""
@@ -13615,6 +16765,33 @@ msgctxt ""
msgid "The following example illustrates how to create two <literal>Timer</literal> objects and start them separately."
msgstr ""
+#. PtA4E
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id481610989853679\n"
+"help.text"
+msgid "'Starts myTimerA"
+msgstr ""
+
+#. VUdGW
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id331610989849501\n"
+"help.text"
+msgid "'Starts myTimerB"
+msgstr ""
+
+#. t98Fv
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id931610989837747\n"
+"help.text"
+msgid "'Terminate both timers"
+msgstr ""
+
#. CpzL5
#: sf_timer.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index 784d787aa64..b2c396db0d6 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: 2021-02-05 18:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/am/>\n"
@@ -1177,13 +1177,13 @@ msgctxt ""
msgid "Window Menu"
msgstr "የ መስኮት ዝርዝር"
-#. dH2aq
+#. ry53A
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "<variable id=\"fete\">Choose ><menuitem>View - Split Window</menuitem>.</variable>"
+msgid "<variable id=\"fete\">Choose <menuitem>View - Split Window</menuitem>.</variable>"
msgstr ""
#. dr9Aq
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index abd74762b80..38f8a775bb0 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -1033,14 +1033,14 @@ msgctxt ""
msgid "<emph>Filling cells using context menus:</emph>"
msgstr "<emph>ዝርዝር ይዞታዎችን በመጠቀም ክፍሎችን መሙያ:</emph>"
-#. hRJz3
+#. 2j5RS
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
-msgstr "መጥሪያ የ <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">አገባብ ዝርዝር</link> በ ክፍል ውስጥ አድርገው ይምረጡ<emph>የ ምርጫ ዝርዝር</emph>."
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgstr ""
#. BzAsX
#: 02140000.xhp
@@ -19492,68 +19492,77 @@ msgctxt ""
msgid "The number 0 is returned for empty cells and matrix elements."
msgstr "ቁጥር 0 ይመለሳል ለ ባዶ ክፍሎች እና matrix አካላቶች"
-#. Eg4Cg
+#. frvbX
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11827\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> ጽሁፍ ማሳያ \"http://www.example.org\" በ ክፍል ውስጥ እና መፈጸሚያ የ hyperlink http://www.example.org በሚጫኑ ጊዜ"
+msgid "<input>=HYPERLINK(\"http://www.example.org\")</input> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
-#. GThdD
+#. wHG7A
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182A\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"እዚህ ይጫኑ\")</item> ጽሁፍ ማሳያ \"እዚህ ይጫኑ\" በ ክፍል ውስጥ እና መፈጸሚያ የ hyperlink http://www.example.org በሚጫኑ ጊዜ"
+msgid "<input>=HYPERLINK(\"http://www.example.org\";\"Click here\")</input> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
-#. nBEGH
+#. jamR2
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id0907200912224534\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";12345)</item> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgid "<input>=HYPERLINK(\"http://www.example.org\";12345)</input> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
msgstr ""
-#. GFCwJ
+#. qLdBN
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182D\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
-msgstr "<item type=\"input\">=HYPERLINK($B4)</item> ይህ ክፍል B4 የያዘው <item type=\"input\">http://www.example.org</item> ተግባር ይጨምራል http://www.example.org ለ URL በ hyperlink ክፍል እና ተመሳሳይ ጽሁፍ ይመልሳል ለ መቀመሪያ ውጤት የሚጠቀምበት"
+msgid "<input>=HYPERLINK($B4)</input> where cell B4 contains <literal>http://www.example.org</literal>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr ""
-#. viZae
+#. cWDrv
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11830\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> ጽሁፍ ያሳያል: ይጫኑ example.org በ ክፍል ውስጥ እና ይፈጽሙ hyperlink http://www.example.org በሚጫኑ ጊዜ ይፈጠራል"
+msgid "<input>=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</input> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
-#. bdxGj
+#. DDEtK
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id8859523\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
-msgstr "<item type=\"input\">=HYPERLINK(\"#ወረቀት1.A1\";\"ወደ ላይ መሄጃ\")</item> ያሳያል ጽሁፍ ወደ ላይ መሄጃ እና ይዘላል ወደ ክፍል ወረቀት1.A1 በዚህ ሰነድ ውስጥ"
+msgid "<input>=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</input> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr ""
-#. kFDkB
+#. CoMEq
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id2958769\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>ወደ ጽሁፍ ምልክት ማድረጊያ መሄጃ: የ ተወሰነ የ ጽሁፍ ሰነድ ይጭናል: እና ይዘላል ወደ ምልክት ማድረጊያ \"መወሰኛ\""
+msgid "<input>=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</input> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr ""
+
+#. Ky2xV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id321615667588042\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"file:///C:/Documents/\";\"Open Documents folder\")</input> displays the text \"Open Documents folder\" and shows the folder contents using the standard file manager in your operating system."
+msgstr ""
#. ubKsF
#: 04060109.xhp
@@ -45718,14 +45727,14 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">የ ዘዴዎች ዝርዝር ማሳያ ከ ተመረጠው የ ዘዴ ምድብ ውስጥ </ahelp>"
-#. xvaTV
+#. YBufY
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_idN109D1\n"
"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
-msgstr "በ <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">አገባብ ዝርዝር</link> ውስጥ እርስዎ ይምረጡ ትእዛዝ አዲስ ዘዴ ለመፍጠር: ለማጥፋት: በ ተጠቃሚ-የሚገለጽ ዘዴ ወይንም የ ተመረጠውን ዘዴ ለመቀየር"
+msgid "In the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr ""
#. zdEoY
#: 05100000.xhp
@@ -63259,22 +63268,22 @@ msgctxt ""
msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
msgstr ""
-#. 4Zi8d
+#. QaJCw
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556229012536\n"
"help.text"
-msgid "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
+msgid "<input>=TEXTJOIN(\" \"; 1; \"Here\"; \"comes\"; \"the\"; \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
msgstr ""
-#. SamHC
+#. 39FPP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556239012536\n"
"help.text"
-msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
+msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\";1;A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
msgstr ""
#. AXCJg
diff --git a/source/am/helpcontent2/source/text/sdatabase.po b/source/am/helpcontent2/source/text/sdatabase.po
index abe5ab711cb..57eb10103ab 100644
--- a/source/am/helpcontent2/source/text/sdatabase.po
+++ b/source/am/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-05 18:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/am/>\n"
@@ -3039,13 +3039,13 @@ msgctxt ""
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sort and Filter Data\">Sort and Filter Data</link>"
msgstr ""
-#. ZEwwQ
+#. hNfEL
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3154288\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
msgstr ""
#. fAyEi
@@ -3795,6 +3795,465 @@ msgctxt ""
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/close\">Closes the dialog.</ahelp>"
msgstr ""
+#. n4gFz
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. sQwNc
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153323\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Relations</link>"
+msgstr ""
+
+#. GxBiD
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3146957\n"
+"help.text"
+msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
+msgstr ""
+
+#. YYXkm
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
+msgstr ""
+
+#. vMuED
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3154823\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
+msgstr ""
+
+#. zHWMJ
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3145316\n"
+"help.text"
+msgid "This function is only available if you are working with a relational database."
+msgstr ""
+
+#. 5MXvo
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
+msgstr ""
+
+#. krxTw
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3152812\n"
+"help.text"
+msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
+msgstr ""
+
+#. zZFEP
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
+msgstr ""
+
+#. uJVYH
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3148922\n"
+"help.text"
+msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
+msgstr ""
+
+#. ek2aE
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3148922\n"
+"help.text"
+msgid "Primary key and foreign keys"
+msgstr ""
+
+#. ksuDX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149168\n"
+"help.text"
+msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
+msgstr ""
+
+#. FACvb
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3147085\n"
+"help.text"
+msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
+msgstr ""
+
+#. vro8F
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153193\n"
+"help.text"
+msgid "Define relations"
+msgstr ""
+
+#. wmwWU
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3155430\n"
+"help.text"
+msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
+msgstr ""
+
+#. pGNLA
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155430\n"
+"help.text"
+msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
+msgstr ""
+
+#. EF2rg
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149984\n"
+"help.text"
+msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
+msgstr ""
+
+#. yTadX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3153093\n"
+"help.text"
+msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
+msgstr ""
+
+#. bnCjW
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155856\n"
+"help.text"
+msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
+msgstr ""
+
+#. zaiku
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. BAAZE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
+msgstr ""
+
+#. tDgC3
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. 5fAEp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3150499\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
+msgstr ""
+
+#. yHc9N
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155136\n"
+"help.text"
+msgid "The update and delete options are only available if they are supported by the database used."
+msgstr ""
+
+#. BDC5P
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3155341\n"
+"help.text"
+msgid "Tables"
+msgstr ""
+
+#. BAGsd
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153880\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
+msgstr ""
+
+#. 4UCC7
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154047\n"
+"help.text"
+msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
+msgstr ""
+
+#. VBeNf
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3153822\n"
+"help.text"
+msgid "Key fields"
+msgstr ""
+
+#. CnkB6
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
+msgstr ""
+
+#. tG7Wy
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
+msgstr ""
+
+#. ECqps
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145609\n"
+"help.text"
+msgid "Update options"
+msgstr ""
+
+#. TcZQE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "Here you can select options that take effect when there are changes to a primary key field."
+msgstr ""
+
+#. SNgAC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3149046\n"
+"help.text"
+msgid "No action"
+msgstr ""
+
+#. BQgh9
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3152360\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
+msgstr ""
+
+#. UzK5q
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "Updating cascade"
+msgstr ""
+
+#. GFtru
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154073\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
+msgstr ""
+
+#. xydLE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145171\n"
+"help.text"
+msgid "Set null"
+msgstr ""
+
+#. ksYnw
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
+msgstr ""
+
+#. FGxMC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "Set default"
+msgstr ""
+
+#. T7dEQ
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
+msgstr ""
+
+#. AvWBL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Delete options"
+msgstr ""
+
+#. ayyns
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "Here you can select options that take effect when a primary key field is deleted."
+msgstr ""
+
+#. jTCSL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3159252\n"
+"help.text"
+msgid "No action"
+msgstr ""
+
+#. PgDqt
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
+msgstr ""
+
+#. hFmB4
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3154146\n"
+"help.text"
+msgid "Delete cascade"
+msgstr ""
+
+#. ESpAp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155309\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
+msgstr ""
+
+#. ZaNTh
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153140\n"
+"help.text"
+msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
+msgstr ""
+
+#. mAu9C
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "Set null"
+msgstr ""
+
+#. dAtCx
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
+msgstr ""
+
+#. 474LG
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145272\n"
+"help.text"
+msgid "Set Default"
+msgstr ""
+
+#. ktJ6K
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154320\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
+msgstr ""
+
#. cLmBi
#: main.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 703659d0061..9f696802c34 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:58+0100\n"
"PO-Revision-Date: 2018-11-17 21:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -601,14 +601,14 @@ msgctxt ""
msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value.</variable>"
msgstr "<variable id=\"wahr\">ስህተት ከ ተፈጠረ: ተግባሩ ሎጂካል ወይንም የ ቁጥር ዋጋ ይመልሳል </variable>"
-#. oSC8p
+#. ECspB
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3154145\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>).</variable>"
-msgstr "<variable id=\"kontext\">(እዚህ ትእዛዝ ጋር መድረስ የሚችሉት በ <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">አገባብ ዝርዝር ብቻ ነው</link>).</variable>"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>).</variable>"
+msgstr ""
#. JFGU9
#: 00000001.xhp
@@ -2122,15 +2122,6 @@ msgctxt ""
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 ""
-#. AP8vJ
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_idN108F1\n"
-"help.text"
-msgid "Context Menu"
-msgstr "ዝርዝር አገባብ"
-
#. hfzNy
#: 00000005.xhp
msgctxt ""
@@ -7936,6 +7927,15 @@ msgctxt ""
msgid "Image"
msgstr "ምስል"
+#. 8ceGP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id671614345792991\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Frame - Floating Frame</menuitem>"
+msgstr ""
+
#. yAVgx
#: 00000404.xhp
msgctxt ""
@@ -7954,14 +7954,14 @@ msgctxt ""
msgid "On the <emph>Insert</emph> bar, click"
msgstr ""
-#. 5CBGw
+#. SEYKo
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3168607\n"
"help.text"
-msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147482\">Icon</alt></image>"
+msgstr ""
#. 6RNey
#: 00000404.xhp
@@ -8125,13 +8125,13 @@ msgctxt ""
msgid "Stars"
msgstr "ኮከቦች"
-#. c6VE3
+#. GCpBe
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id81526422144005\n"
"help.text"
-msgid "Choose <emph>Insert - Signature Line...</emph>"
+msgid "Choose <emph>Insert - Signature Line</emph>"
msgstr ""
#. aFWLc
@@ -10654,6 +10654,15 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering</emph>."
msgstr ""
+#. GmdFv
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id761616160771224\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Bullets and Numbering</menuitem>."
+msgstr ""
+
#. N8NwQ
#: 00040500.xhp
msgctxt ""
@@ -10663,23 +10672,23 @@ msgctxt ""
msgid "On <emph>Formatting</emph> bar, click"
msgstr ""
-#. 4QWK9
+#. sQFWD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149445\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Icon bullet list</alt></image>"
+msgid "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Bullets and Numbering dialog Icon</alt></image>"
msgstr ""
-#. yavcV
+#. BPPZD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3157970\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "ነጥቦች ማብሪያ/ማጥፊያ"
+msgid "Bullets and Numbering"
+msgstr ""
#. XAbBj
#: 00040500.xhp
@@ -10735,40 +10744,40 @@ msgctxt ""
msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
msgstr ""
-#. ZD5up
+#. n79tw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
msgstr ""
-#. 3g7gB
+#. tbLJG
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150862\n"
"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering - Numbering</menuitem> tab."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Ordered</menuitem> tab."
msgstr ""
-#. iTevh
+#. Rak4H
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3129011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
msgstr ""
-#. dAnx5
+#. 2XAFx
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146019\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
msgstr ""
#. 4AKhs
@@ -10780,49 +10789,40 @@ msgctxt ""
msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Image</emph> tab.</variable>"
msgstr ""
-#. G4FjC
+#. CwE3e
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155848\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Outline</menuitem> tab."
msgstr ""
-#. ifngA
+#. 8cr6F
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148733\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
-#. BQqBM
+#. gfMdA
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3154931\n"
+"par_id3156658\n"
"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
+msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. TDV7t
+#. DVZRw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
-msgstr ""
-
-#. gfMdA
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3156658\n"
-"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
msgstr ""
#. t8uTF
@@ -12535,13 +12535,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (drawing documents)."
msgstr ""
-#. ABvKj
+#. 3GEwT
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145365\n"
"help.text"
-msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (presentation documents)."
+msgid "Choose <menuitem>Format - Object and Shape - Area - Transparency</menuitem> tab (presentation documents)."
msgstr ""
#. KXq32
@@ -13093,49 +13093,49 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Style - Subscript</menuitem>."
msgstr ""
-#. ATNzQ
+#. GCxvv
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155377\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing</menuitem>."
+msgid "Choose <menuitem>Format - Spacing</menuitem>."
msgstr ""
-#. zWwjF
+#. AJWAM
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154475\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Single</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1</menuitem>."
msgstr ""
-#. GdBSL
+#. TKPgq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150478\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - 1.5 Lines</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1.5</menuitem>."
msgstr ""
-#. pNDFU
+#. nxrCX
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147167\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Double</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 2</menuitem>."
msgstr ""
-#. 4TwEA
+#. eLguF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146978\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Left</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Left</menuitem>."
msgstr ""
#. reirq
@@ -13165,13 +13165,13 @@ msgctxt ""
msgid "Align Left"
msgstr "በ ግራ ማሰለፊያ"
-#. 4wBza
+#. mmjN6
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155823\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Right</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Right</menuitem>."
msgstr ""
#. 2MorN
@@ -13201,13 +13201,13 @@ msgctxt ""
msgid "Align Right"
msgstr "በ ቀኝ ማሰለፊያ"
-#. ZvaaQ
+#. QVuAL
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149189\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Centered</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
msgstr ""
#. YutM3
@@ -13237,13 +13237,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">በ አግድም መሀከል ማሰለፊያ </caseinline><defaultinline>መሀከል</defaultinline></switchinline>"
-#. FiPMC
+#. BAFc3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146151\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Justified</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Justified</menuitem>."
msgstr ""
#. Mj8VD
@@ -13300,31 +13300,31 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Group</menuitem>."
msgstr ""
-#. 3AJkC
+#. 93FXg
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157985\n"
+"par_id3157980\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Group</menuitem>"
msgstr ""
-#. bdCDb
+#. dXNCq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157980\n"
+"par_id3157985\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Group</menuitem>"
msgstr ""
-#. RvPBU
+#. w3EVK
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149508\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Group - Group</menuitem> (form objects)."
+msgid "Open context menu - choose <menuitem>Group</menuitem> (for text box and shapes)."
msgstr ""
#. ibZAV
@@ -13345,22 +13345,22 @@ msgctxt ""
msgid "Group"
msgstr "ቡድን"
-#. GuQA3
+#. fQM7Y
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153023\n"
+"par_id3163378\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Ungroup</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem>."
msgstr ""
-#. WFDj3
+#. K7UZY
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163378\n"
+"par_id3153023\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Ungroup</menuitem>."
msgstr ""
#. 9k3ef
@@ -13390,22 +13390,22 @@ msgctxt ""
msgid "Ungroup"
msgstr "መለያያ"
-#. cdsaS
+#. kPkDt
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153109\n"
+"par_id3145678\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Exit Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem>."
msgstr ""
-#. P2Xae
+#. fZQDA
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145678\n"
+"par_id3153109\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Exit Group</menuitem>."
msgstr ""
#. Bszjv
@@ -13435,22 +13435,22 @@ msgctxt ""
msgid "Exit Group"
msgstr "ከ ቡድን መውጫ"
-#. Cx3Zj
+#. iWdD3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3149129\n"
+"par_id3145354\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Enter Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem>."
msgstr ""
-#. hn7Hv
+#. vuF7P
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145354\n"
+"par_id3149129\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Enter Group</menuitem>."
msgstr ""
#. 4rTmw
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 2073a6f7c1c..20b34b7fd75 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: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+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"
@@ -3067,14 +3067,14 @@ msgctxt ""
msgid "<bookmark_value>Export as; PDF</bookmark_value><bookmark_value>Export as; EPUB</bookmark_value>"
msgstr ""
-#. NDQi2
+#. C5uBC
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"hd_id751513634008094\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
-msgstr "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">መላኪያ እንደ...</link>"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Export As</link>"
+msgstr ""
#. yQFCE
#: 01070002.xhp
@@ -3085,13 +3085,13 @@ msgctxt ""
msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats.</ahelp></variable>"
msgstr ""
-#. 84MXi
+#. MhcED
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"par_id971513634212601\n"
"help.text"
-msgid "Choose <emph>File - Export As...</emph> ."
+msgid "Choose <emph>File - Export As</emph>."
msgstr ""
#. 5EMoa
@@ -5623,14 +5623,14 @@ msgctxt ""
msgid "separated by"
msgstr "የተለየው በ"
-#. qctV8
+#. MVCUS
#: 01160300.xhp
msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
-msgstr "<ahelp hid=\".\">የ አንቀጽ ዘዴ ወይንም የ ረቂቅ ደረጃ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን ለ መለያየት የ ሰነዱን ምንጭ ከ ንዑስ-ሰነዶች </ahelp> በ ነባር አዲስ ሰነድ የሚፈጠረው ለ እያንዳንዱ ረቂቅ ደረጃ 1 ነው"
+msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgstr ""
#. 949cB
#: 01160300.xhp
@@ -14128,6 +14128,24 @@ msgctxt ""
msgid "When you click a character in the <emph>Special Characters</emph> dialog, a preview and the corresponding numerical code for the character is displayed."
msgstr ""
+#. AQsdj
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"hd_id451614794558893\n"
+"help.text"
+msgid "Search"
+msgstr ""
+
+#. JGCeA
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"par_id741614794572948\n"
+"help.text"
+msgid "Enter the UTF-8 name or part of the name of the character to display the UTF-8 character in the top left square of the grid. The name of the character cannot be translated. For example, enter <literal>tilde</literal> to display <literal>~</literal> and enter <literal>latin capital letter O with circumflex</literal> to display <literal>Ô</literal>."
+msgstr ""
+
#. d8FbY
#: 04100000.xhp
msgctxt ""
@@ -15424,33 +15442,6 @@ msgctxt ""
msgid "<emph>Small capitals</emph> - <variable id=\"smallcapitals\">Changes the selected lowercase characters to uppercase characters, and then reduces their size.</variable>"
msgstr ""
-#. kGuxJ
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"bm_id410168\n"
-"help.text"
-msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
-msgstr "<bookmark_value>ብልጭ ድርግም የሚሉ ፊደሎች</bookmark_value> <bookmark_value>የሚያንጸባርቁ ፊደሎች</bookmark_value>"
-
-#. Suvvn
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3152941\n"
-"help.text"
-msgid "Blinking"
-msgstr "ብልጭ ድርግም ባይ"
-
-#. 2FiCB
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"par_id3145662\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">የተመረጡትን ባህሪዎች ብልጭ ድርግም ማድረጊያ: ብልጭ ድርግም ማድረጊያውን ድግግሞሽ መቀየር አይቻልም </ahelp>"
-
#. B3MEb
#: 05020200.xhp
msgctxt ""
@@ -23857,14 +23848,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles deck of the Sidebar</link></caseinline><defaultinline>Styles deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">መክፈቻ የ <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\"> ዘዴዎች ማሳረፊያ በ ጎን መደርደሪያ ላይ </link></caseinline><defaultinline>ዘዴዎች ማሳረፊያ በ ጎን መደርደሪያ ላይ </defaultinline></switchinline> እርስዎ የሚመርጡበት የ ባህሪዎች ዘዴ ለ ruby ጽሁፍ </ahelp>"
-#. aXpX4
+#. MD7GR
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"tit\n"
"help.text"
-msgid "Aligning (Objects)"
-msgstr "ማሰለፊያ (እቃዎችን)"
+msgid "Align Objects"
+msgstr ""
#. kVyf4
#: 05070000.xhp
@@ -23875,14 +23866,14 @@ msgctxt ""
msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
msgstr "<bookmark_value>ማሰለፊያ: እቃዎች</bookmark_value><bookmark_value>ቦታዎች: እቃዎች</bookmark_value><bookmark_value>ማሰናጃ: እቃዎች</bookmark_value>"
-#. a4NeC
+#. xAmKa
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"hd_id3149987\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
-msgstr "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">ማሰለፊያ (እቃዎችን)</link>"
+msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Align Objects</link>"
+msgstr ""
#. dFAkA
#: 05070000.xhp
@@ -28042,14 +28033,14 @@ msgctxt ""
msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
msgstr "<bookmark_value>ጽሁፍ: ጽሁፍ/መሳያ እቃዎች</bookmark_value> <bookmark_value>መሳያ እቃዎች: ጽሁፍ በ</bookmark_value> <bookmark_value>ክፈፎች: ጽሁፍ በ ክፈፎቹ ልክ</bookmark_value>"
-#. awqBc
+#. UEuLi
#: 05220000.xhp
msgctxt ""
"05220000.xhp\n"
"hd_id3146856\n"
"help.text"
-msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text Attributes</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">ጽሁፍ</link>"
#. cBEMC
#: 05220000.xhp
@@ -34603,14 +34594,14 @@ msgctxt ""
msgid "Text Attributes"
msgstr ""
-#. UEXgE
+#. dZtp3
#: 05990000.xhp
msgctxt ""
"05990000.xhp\n"
"hd_id3155757\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">ጽሑፍ</link>"
+msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text Attributes</link>"
+msgstr ""
#. B2wiN
#: 05990000.xhp
@@ -37897,14 +37888,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">ነጥቦች እና ቁጥር መስጫ</link>"
-#. sdTwy
+#. S7psX
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"par_id3150146\n"
"help.text"
-msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
-msgstr "<variable id=\"numauftext\"><ahelp hid=\".\">ወደ አሁኑ ሰነድ ውስጥ ነጥቦች እና ቁጥር መስጫ መጨመሪያ: ይህ እርስዎን የ ነጥቦች እና ቁጥር መስጫ አቀራረብን ማረም ያስችሎታል </ahelp></variable>"
+msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph or to selected paragraphs, and lets you edit format of the numbering or bullets.</ahelp></variable>"
+msgstr ""
#. 7wAZT
#: 06050000.xhp
@@ -37915,15 +37906,6 @@ msgctxt ""
msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
msgstr "የ <emph>ነጥቦች እና ቁጥር መስጫ </emph> ንግግር የሚቀጥለው tabs አላቸው:"
-#. FXvcQ
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id911610939960192\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering\">Numbering</link>"
-msgstr ""
-
#. FUmyk
#: 06050000.xhp
msgctxt ""
@@ -38086,14 +38068,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Customize tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#. mFseS
+#. AQgFB
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"tit\n"
"help.text"
-msgid "Outline"
-msgstr "እቅድ"
+msgid "Outline (Bullets and Numbering)"
+msgstr ""
#. Tuc3B
#: 06050300.xhp
@@ -38104,14 +38086,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
msgstr "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">እቅድ</link>"
-#. faDgM
+#. 2DJLS
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3146936\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ተለያዩ ዘዴዎች ማሳያ እርስዎ መፈጸም የሚችሉት በ ቅደም ተከተል ዝርዝር ውስጥ $[officename] እስከ ዘጠኝ የ ረቂቅ ደረጃዎች ይደግፋል በ ቅደም ተከተል ዝርዝር ውስጥ </ahelp>"
+msgid "<ahelp hid=\".\">Displays the different formats that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
+msgstr ""
#. RDBrG
#: 06050300.xhp
@@ -38122,14 +38104,14 @@ msgctxt ""
msgid "Selection"
msgstr "ምርጫዎች"
-#. tG9L7
+#. PPdZD
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3155934\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline style that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">መጠቀም የሚፈልጉትን የ እቅድ ዘዴ ይጫኑ</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline format that you want to use.</ahelp>"
+msgstr ""
#. WYun7
#: 06050300.xhp
@@ -38167,14 +38149,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Image</link>"
msgstr ""
-#. g8rob
+#. YBPGk
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
"par_id0611200904373226\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ እንደ ነጥብ የ ተለያዩ ንድፎች በ ነጥብ መስጫ ዘዴዎች ዝርዝር ውስጥ ሊፈጽሙ የሚችሉትን ማሳያ</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
+msgstr ""
#. yDHf2
#: 06050400.xhp
@@ -38257,14 +38239,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Customize</link>"
msgstr ""
-#. KTDdy
+#. ptL6S
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147212\n"
"help.text"
-msgid "Sets the formatting options for numbered or bulleted lists. If you want, you can apply formatting to individual levels in the list hierarchy."
-msgstr "የ አቀራረብ ምርጫ ማሰናጃ ለ ቁጥር ለተሰጣቸው ወይንም ነጥብ ለተደረገባቸው ዝርዝሮች: እርስዎ ከ ፈለጉ: አቀራረብ መፈጸም ይችላሉ ለ እያንዳንዱ ደረጃ በ ዝርዝር ቅደም ተከተል መሰረት"
+msgid "Sets the formatting options for ordered or unordered lists. If you want, you can apply formatting to individual levels in the list hierarchy."
+msgstr ""
#. pGwyV
#: 06050500.xhp
@@ -38311,14 +38293,14 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. vcASB
+#. 2JWDd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147261\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering style for the selected levels.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">የ ቁጥር መስጫ ዘዴ ይምረጡ ለ ተመረጡት ደረጃዎች</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering scheme for the selected levels.</ahelp>"
+msgstr ""
#. mmh24
#: 06050500.xhp
@@ -38509,13 +38491,13 @@ msgctxt ""
msgid "Bullet"
msgstr "ነጥብ"
-#. RqUuK
+#. ZiJYu
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145085\n"
"help.text"
-msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet style."
+msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet type."
msgstr ""
#. JBJEa
@@ -38572,22 +38554,22 @@ msgctxt ""
msgid "None"
msgstr "ምንም"
-#. ty7BH
+#. kcSkw
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3149167\n"
"help.text"
-msgid "Does not apply a numbering style."
-msgstr "የ ቁጥር መስጫ ዘዴ አይፈጽምም"
+msgid "Does not apply a numbering scheme."
+msgstr ""
-#. P7jbZ
+#. sANUk
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145746\n"
"help.text"
-msgid "The availability of the following fields depends on the style that you select in the <emph>Number</emph> box."
+msgid "The availability of the following fields depends on the numbering scheme that you select in the <emph>Number</emph> box."
msgstr ""
#. iqVUE
@@ -38617,13 +38599,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Character Style</caseinline></switchinline>"
msgstr ""
-#. zkHUZ
+#. DXsYK
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in an ordered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
msgstr ""
#. AXZAF
@@ -38635,14 +38617,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Show sublevels</caseinline></switchinline>"
msgstr ""
-#. tCS4j
+#. 3zFAs
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3152881\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">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\".</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">ቁጥር ያስገቡ ላለፈው ደረጃዎች ለ ማካተት በ ቁጥር መስጫ ዘዴ ውስጥ: ለምሳሌ: እርስዎ ካስገቡ \"2\" እና ያለፈው ደረጃ የ ተጠቀመው የ \"A, B, C...\" ቁጥር መስጫ ዘዴ ከሆነ: የ ቁጥር መስጫ ዘዴ ገጽታ ለ አሁኑ ደረጃ ይህ ይሆናል: \"A.1\".</ahelp></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Enter the number of previous levels to include in the outline format. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering scheme, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
+msgstr ""
#. 85gXU
#: 06050500.xhp
@@ -38671,14 +38653,14 @@ msgctxt ""
msgid "After"
msgstr "በኋላ"
-#. 9rGAH
+#. UM7wq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150288\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">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.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">ባህሪ ወይንም ጽሁፍ ያስገቡ ለማሳየት ከ ቁጥር በኋላ በ ዝርዝር ውስጥ: እርስዎ ቁጥር የ ተሰጠው ዝርዝር መፍጠር ከፈለጉ የሚጠቀም ዘዴ \"1.)\": ያስገቡ \")\" በዚህ ሳጥን ውስጥ </ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Enter a character or the text to display behind the number in the list. If you want to create a ordered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
+msgstr ""
#. FWEse
#: 06050500.xhp
@@ -38689,14 +38671,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Color</caseinline><caseinline select=\"DRAW\">Color</caseinline></switchinline>"
msgstr ""
-#. cV8eZ
+#. DDWVd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3156060\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">ለ አሁኑ ቁጥር መስጫ ዘዴ ቀለም ይምረጡ </ahelp></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering scheme.</ahelp></defaultinline></switchinline>"
+msgstr ""
#. JQB8P
#: 06050500.xhp
@@ -38851,31 +38833,31 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">ቁጥር መስጫው በ አንድ ይጨምራል እርስዎ በ ዝርዝር ቅደም ተከተል መሰረት ወደ ታች ሲወርዱ </ahelp></caseinline></switchinline>"
-#. CwwFP
+#. e5KXW
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"tit\n"
"help.text"
-msgid "Position (List Styles)"
+msgid "Position (Lists)"
msgstr ""
-#. YCPm7
+#. pbtfH
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"hd_id3150467\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">ቦታ</link>"
+msgid "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link></variable>"
+msgstr ""
-#. 26wKr
+#. ZuAPU
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3158397\n"
"help.text"
-msgid "<variable id=\"positioninfo\">Sets the indent, spacing, and alignment options for the numbered or bulleted list.</variable>"
+msgid "<variable id=\"positioninfo\">Set indent, spacing, and alignment options for numbering symbols, such as numbers or bullets, to ordered and unordered lists.</variable>"
msgstr ""
#. itRYD
@@ -38887,13 +38869,13 @@ msgctxt ""
msgid "Level"
msgstr "ደረጃ"
-#. icEv9
+#. 2gVRo
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3155755\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select \"1-10\". In Chapter Numbering, only one level can be selected, or use \"1-10\" to apply the options, except Paragraph style, to all the levels."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select “1-10”."
msgstr ""
#. qAm3f
@@ -40795,14 +40777,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">አቋራጭ ቁልፎች መመደቢያ ወይንም ማረሚያ ለ $[officename] ትእዛዞች: ወይንም $[officename] Basic ማክሮስ </ahelp>"
-#. 4xgpA
+#. J85qe
#: 06140200.xhp
msgctxt ""
"06140200.xhp\n"
"par_id3154682\n"
"help.text"
-msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
-msgstr "እርስዎ መመደብ ይችላሉ ወይንም ማረም አቋራጭ ቁልፎችን ለ አሁኑ መተግበሪያ ወይንም ለ ሁሉም $[officename] መተግበሪያዎች"
+msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications. To assign a key for all applications, choose the <emph>%PRODUCTNAME</emph> radio button in the top right corner."
+msgstr ""
#. BjkTi
#: 06140200.xhp
@@ -40822,6 +40804,15 @@ msgctxt ""
msgid "If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list. It is possible to assign the same function to more than one key."
msgstr ""
+#. a7WFE
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id341603939923441\n"
+"help.text"
+msgid "A shortcut key assigned to a particular application overrides the shortcut key setting made in %PRODUCTNAME for all applications."
+msgstr ""
+
#. Fi6Jn
#: 06140200.xhp
msgctxt ""
@@ -44629,14 +44620,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr "<ahelp hid=\".\">የማይታይ ክፍተት ማስገቢያ በ ቃል ውስጥ የ መስመር መጨረሻ የሚያስገባ በ መስመር ላይ የ መጨረሻ ባህሪ ሲሆን: ዝግጁ የሚሆነው የ ውስብስብ ጽሁፍ እቅድ (CTL) ሲያስችሉ ነው </ahelp>"
-#. W4vvs
+#. jHLBC
#: formatting_mark.xhp
msgctxt ""
"formatting_mark.xhp\n"
"hd_id3245643\n"
"help.text"
-msgid "No-width no break"
-msgstr "ስፋት-የለም መጨረሻ የለም"
+msgid "Word Joiner"
+msgstr ""
#. 4Ur7Y
#: formatting_mark.xhp
@@ -47707,13 +47698,13 @@ msgctxt ""
msgid "Embedding Fonts"
msgstr "ፊደሎች ማጣበቂያ"
-#. MhNdc
+#. MMKaJ
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"bm_id3149955\n"
"help.text"
-msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
+msgid "<bookmark_value>embedding fonts in document file</bookmark_value><bookmark_value>documents; embedding fonts</bookmark_value><bookmark_value>font embedding; in documents</bookmark_value><bookmark_value>fonts; embedding</bookmark_value><bookmark_value>fonts; licensing for embedding</bookmark_value><bookmark_value>embedding; fonts</bookmark_value><bookmark_value>embedding licensed fonts</bookmark_value>"
msgstr ""
#. VdsXE
@@ -47734,14 +47725,14 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
msgstr ""
-#. JFNLj
+#. UnyFx
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"hd_id3149999\n"
"help.text"
-msgid "Fonts embedding"
-msgstr "ፊደሎች ማጣበቂያ"
+msgid "Font embedding"
+msgstr ""
#. LM4Gn
#: prop_font_embed.xhp
@@ -47761,6 +47752,15 @@ msgctxt ""
msgid "Consider embedding fonts when your document use rare or custom fonts not generally available in other computers."
msgstr "ፊደሎችን ያጣብቁ እርስዎ የ ተለዩ ሰነዶችን ሲጠቀሙ ወይንም ፊደሎች ባጠቃላይ በ ሌሎች ኮምፒዩተር ውስጥ የማይገኙ ሲጠቀሙ"
+#. AcrZ8
+#: prop_font_embed.xhp
+msgctxt ""
+"prop_font_embed.xhp\n"
+"par_id191616163803305\n"
+"help.text"
+msgid "Font licenses may restrict embedding fonts in documents. Font files contain flags that indicate if and how they can be embedded within a document file. %PRODUCTNAME parses these flags and determines if and how it may be embedded in a document file, and when you open a document containing embedded fonts, it will also look at these flags to determine if and how a document can be viewed or edited."
+msgstr ""
+
#. iBvGV
#: ref_epub_export.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index cde42699737..5e66d8144fe 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-30 15:37+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2020-02-05 07:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/am/>\n"
@@ -11266,22 +11266,22 @@ msgctxt ""
msgid "Character Highlighting Color"
msgstr ""
-#. tExR8
+#. 5GRDP
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Character Highlighting Color</link>"
+msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlighting</link>"
msgstr ""
-#. y45WA
+#. 6EDWk
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlight color to the character style or text selection.</ahelp></variable>"
+msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlighting color to the <switchinline select=\"appl\"><caseinline select=\"WRITER\">character style or</caseinline></switchinline> text selection.</ahelp></variable>"
msgstr ""
#. KrAa6
@@ -11302,6 +11302,15 @@ msgctxt ""
msgid "When editing a character style, choose <emph>Highlighting</emph> tab."
msgstr ""
+#. 8NF47
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id481613812856744\n"
+"help.text"
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\">Formatting bar, Text Object bar or Character section of Properties Sidebar.</caseinline><defaultinline><emph>Text Formatting bar.</emph></defaultinline></switchinline>"
+msgstr ""
+
#. YETEY
#: 02160000.xhp
msgctxt ""
@@ -11356,13 +11365,13 @@ msgctxt ""
msgid "Select the text that you want to highlight."
msgstr ""
-#. 94UES
+#. AQAQh
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id851610983100948\n"
"help.text"
-msgid "Click the <emph>Character Highlighting Color</emph> icon on the <emph>Formatting</emph> bar."
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Formatting</emph> or <emph>Text Object</emph></caseinline><defaultinline><emph>Text Formatting</emph></defaultinline></switchinline> bar."
msgstr ""
#. bVPsm
@@ -11473,13 +11482,13 @@ msgctxt ""
msgid "Select the highlighted text."
msgstr "የ ደመቀውን ጽሁፍ ይምረጡ"
-#. BTFWr
+#. yRMNb
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3149784\n"
"help.text"
-msgid "On the <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph>Text</emph></defaultinline></switchinline> <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
msgstr ""
#. yDDr8
@@ -12346,23 +12355,23 @@ msgctxt ""
msgid "Move Down"
msgstr "ወደ ታች ማንቀሳቀሻ"
-#. qjHwq
+#. ZvBbZ
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"tit\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "ነጥቦች ማብሪያ/ማጥፊያ"
+msgid "Toggle Unordered List"
+msgstr ""
-#. 2pB5k
+#. CCrby
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Bullets On/Off</link>"
-msgstr "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">ነጥቦች ማብሪያ/ማጥፊያ</link>"
+msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Toggle Unordered List</link>"
+msgstr ""
#. GQ9yd
#: 06120000.xhp
@@ -12409,23 +12418,23 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text box and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
msgstr ""
-#. QCjAp
+#. X9H2x
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3150355\n"
"help.text"
-msgid "<image id=\"img_id3157909\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon</alt></image>"
+msgstr ""
-#. iHX8u
+#. TEain
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3149233\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "ነጥቦች ማብሪያ/ማጥፊያ"
+msgid "Toggle Unordered List"
+msgstr ""
#. 6UAmF
#: 07010000.xhp
@@ -12823,14 +12832,41 @@ msgctxt ""
msgid "<variable id=\"hyperdiatext\"><ahelp hid=\".\">Opens a dialog that enables you to create and edit hyperlinks.</ahelp></variable>"
msgstr "<variable id=\"hyperdiatext\"><ahelp hid=\".\"> እርስዎን hyperlinks መፍጠር እና ማረም የሚያስችሎት ንግግር መክፈቻ</ahelp></variable>"
-#. thKGB
+#. H5bDr
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id511616406933483\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Hyperlink</menuitem>."
+msgstr ""
+
+#. CFNbD
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id771616410590648\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Hyperlink</menuitem>, when the cursor is placed in a hyperlink."
+msgstr ""
+
+#. E6FB3
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id161616407054506\n"
+"help.text"
+msgid "On <link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\"><emph>Standard</emph></link> bar, click"
+msgstr ""
+
+#. MSjJA
#: 09070000.xhp
msgctxt ""
"09070000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3093440\">Icon</alt></image>"
-msgstr "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3093440\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3093440\">Icon</alt></image>"
+msgstr ""
#. Dty7B
#: 09070000.xhp
@@ -13363,6 +13399,15 @@ msgctxt ""
msgid "Document"
msgstr "ሰነድ"
+#. 8Cn55
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"bm_id551615667308718\n"
+"help.text"
+msgid "<bookmark_value>hyperlinks;to files</bookmark_value> <bookmark_value>hyperlinks;to folders</bookmark_value>"
+msgstr ""
+
#. RCfpV
#: 09070300.xhp
msgctxt ""
@@ -13381,6 +13426,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a <emph>URL</emph> for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
msgstr ""
+#. taJit
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"par_id91615666930995\n"
+"help.text"
+msgid "If the URL refers to a <emph>folder</emph>, the standard file manager in your operating system opens showing the contents of the specified folder."
+msgstr ""
+
#. GQcJJ
#: 09070300.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/04.po b/source/am/helpcontent2/source/text/shared/04.po
index e9536b5ac6a..ba585d0e3e0 100644
--- a/source/am/helpcontent2/source/text/shared/04.po
+++ b/source/am/helpcontent2/source/text/shared/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-05 18:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-12-10 00:53+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -70,13 +70,13 @@ msgctxt ""
msgid "When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available."
msgstr "ስራዎችን በሚፈጽሙ ጊዜ መምረጥ ይችላሉ በ አይጥ ወይንም በ ፊደል ገበታ መካከል ለሁሉም ስራዎች ማለት ይቻላል"
-#. iE2uQ
+#. Q2ALG
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "Calling Menus With Shortcut Keys"
+msgid "Calling Menus with Mnemonics"
msgstr ""
#. Lv2Sv
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index 7cae05a010d..255b2ced955 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-01 17:02+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-12-10 01:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,465 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1544405296.000000\n"
-#. n4gFz
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "ዝምድናው"
-
-#. Mdpfp
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153323\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">Relations</link>"
-msgstr "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">ግንኙነቱ</link>"
-
-#. GxBiD
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3146957\n"
-"help.text"
-msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>የ ዳታቤዝ ግንኙነት (ቤዝ)</bookmark_value>"
-
-#. YYXkm
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3146957\n"
-"help.text"
-msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
-msgstr "ይህ ትእዛዝ የሚከፍተው የ <emph> ዳታቤዝ ግንኙነት </emph> መስኮት ነው: እርስዎን ግንኙነቱን መግለጽ ያስችሎታል በ ተለያዩ የ ዳታቤዝ ሰንጠረዥ መካከል"
-
-#. vMuED
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3154823\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
-msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">እዚህ እርስዎ ማገናኘት ይችላሉ አንድ ላይ ሰንጠረዥ ከ አሁኑ ዳታቤዝ በ መደበኛ የ ዳታ ሜዳዎች </ahelp> ይጫኑ የ <emph> አዲስ ግንኙነት </emph> ምልክት ለ መፍጠር ግንኙነት ወይንም በ ቀላሉ ይጎትቱ-እና-ይጣሉ በ አይጥ መጠቆሚያው"
-
-#. zHWMJ
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3145316\n"
-"help.text"
-msgid "This function is only available if you are working with a relational database."
-msgstr "ይህ ተግባር ዝግጁ የሚሆነው እርስዎ የ ዳታቤዝ ግንኙነት ሲሰሩ ነው"
-
-#. 5MXvo
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
-msgstr ""
-
-#. krxTw
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3152812\n"
-"help.text"
-msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
-msgstr "ይህ የ <emph> ግንኙነት ንድፍ </emph> መስኮት ነው: የ ተመረጠውን ሰንጠረዥ ማሻሻል አይቻልም: በ ሰንጠረዥ ንድፍ ዘዴም ውስጥ እንኳን: ይህ ማረጋገጫ ነው ሰንጠረዦች እንደማይቀየሩ ግንኙነት በሚፈጠር ጊዜ"
-
-#. zZFEP
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3150541\n"
-"help.text"
-msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
-msgstr ""
-
-#. uJVYH
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3148922\n"
-"help.text"
-msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
-msgstr "<bookmark_value>ቀዳሚ ቁልፎች: ማስገቢያ (ቤዝ)</bookmark_value><bookmark_value>ቁልፎች: ቀዳሚ ቁልፎች (ቤዝ)</bookmark_value><bookmark_value>የ ውጪ ቁልፎች (ቤዝ)</bookmark_value>"
-
-#. ek2aE
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3148922\n"
-"help.text"
-msgid "Primary key and foreign keys"
-msgstr "ቀዳሚ ቁልፍ እና ሌላ ቁልፍ"
-
-#. ksuDX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149168\n"
-"help.text"
-msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
-msgstr ""
-
-#. FACvb
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3147085\n"
-"help.text"
-msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
-msgstr "ሁሉንም የ ዳታ ሜዳዎች ቀዳሚ ቁልፍ የሚያመሳክሩ ይለያሉ በ ሰንጠረዥ መስኮት በ ትንሽ ቁልፍ ምልክት"
-
-#. vro8F
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153193\n"
-"help.text"
-msgid "Define relations"
-msgstr "ግንኙነቶች መግለጫ"
-
-#. wmwWU
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3155430\n"
-"help.text"
-msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
-msgstr "<bookmark_value>ግንኙነት: መፍጠሪያ እና ማጥፊያ (ቤዝ)</bookmark_value>"
-
-#. pGNLA
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155430\n"
-"help.text"
-msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
-msgstr ""
-
-#. McRUh
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149984\n"
-"help.text"
-msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr "በ አማራጭ እርስዎ ይጫኑ የ <emph> አዲስ ግንኙነት </emph> ምልክት ከ ግንኙነት ሜዳ በ ላይ በኩል እና ይግለጹ ግንኙነት በ ሁለት ሰንጠረዦች መካከል በ <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph> ግንኙነቶች </emph></link> ንግግር ውስጥ"
-
-#. yTadX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3153093\n"
-"help.text"
-msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
-msgstr ""
-
-#. bnCjW
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155856\n"
-"help.text"
-msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
-msgstr "ሁለት ጊዜ-በ መጫን የ ግንኙነት መስመር ላይ: እርስዎ አንዳንድ ባህሪዎች መመደብ ይችላሉ ወደ ግንኙነት የ <emph>ግንኙነቶች </emph>ንግግር ይከፈታል"
-
-#. zaiku
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "ዝምድናው"
-
-#. BAAZE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
-msgstr "<bookmark_value>ግንኙነቶች: ባህሪዎች (ቤዝ)</bookmark_value><bookmark_value>ቁልፍ ሜዳዎች ለ ግንኙነቶች (ቤዝ)</bookmark_value><bookmark_value>cascading ማሻሻያ (ቤዝ)</bookmark_value>"
-
-#. tDgC3
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "Relations"
-msgstr "ዝምድናው"
-
-#. 5fAEp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3150499\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
-msgstr "<ahelp hid=\".uno:DBAddRelation\">እርስዎን በ ሁለት ሰንጠረዥ መካከል ያለውን ግንኙነት መግለጽ እና ማረም ያስችሎታል </ahelp>"
-
-#. yHc9N
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155136\n"
-"help.text"
-msgid "The update and delete options are only available if they are supported by the database used."
-msgstr "የ ማሻሻያ እና የ ማጥፊያ ምርጫዎች ዝግጁ የሚሆነው የሚጠቀሙት ዳታቤዝ የሚደግፈው ከሆነ ነው"
-
-#. BDC5P
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3155341\n"
-"help.text"
-msgid "Tables"
-msgstr "ሰንጠረዦች"
-
-#. BAGsd
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153880\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">እዚህ ነው የ ተገናኙ ሰንጠረዦች የሚታዩት </ahelp> እርስዎ አዲስ ግንኙነት ከ ፈጠሩ: እርስዎ መምረጥ ይችላሉ አንድ ሰንጠረዥ ከ እያንዳንዱ መቀላቀያ ሳጥኖች ከ ንግግሩ በ ላይ በኩል"
-
-#. 4UCC7
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154047\n"
-"help.text"
-msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
-msgstr "እርስዎ ከ ከፈቱ የ <emph>ግንኙነቶች</emph> ንኅግር ለ ነበረ ግንኙነት ሁለት ጊዜ-በ መጫን የ ግንኙነት መስመር በ ግንኙነት መስኮት ውስጥ: እና ከዛ የ ተገናኙትን ሰንጠረዦቹ ማሻሻል አይችሉም"
-
-#. VBeNf
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3153822\n"
-"help.text"
-msgid "Key fields"
-msgstr "ቁልፍ ሜዳዎች"
-
-#. CnkB6
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3159157\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/joindialog/relations\">ለ ግንኙነት ቁልፍ ሜዳዎች መግለጫ </ahelp>"
-
-#. tG7Wy
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">የ ተመረጠው ሰንጠረዥ ስሞች ለ አገናኝ ይታያል እዚህ እንደ አምድ ስሞች:</ahelp> እርስዎ ሜዳ ላይ ከ ተጫኑ: እርስዎ መጠቀም ይችላሉ የ ቀስት ቁልፎች ሜዳ ለ መምረጥ ከ ሰንጠረዥ ውስጥ: እያንዳንዱ ግንኙነት የሚጻፈው በ ረድፍ ነው"
-
-#. ECqps
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145609\n"
-"help.text"
-msgid "Update options"
-msgstr "የማሻሻያ ምርጫዎች"
-
-#. TcZQE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153061\n"
-"help.text"
-msgid "Here you can select options that take effect when there are changes to a primary key field."
-msgstr "እዚህ መምረጥ ይችላሉ ምርጫዎች ተጽእኖ የሚፈጥሩ ለውጦች በሚኖሩ ጊዜ በ ቀዳሚ ቁልፍ ሜዳ ውስጥ"
-
-#. SNgAC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3149046\n"
-"help.text"
-msgid "No action"
-msgstr "ምንም ተግባር የለም"
-
-#. BQgh9
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3152360\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">በ ቀዳሚ ቁልፍ ላይ የተደረገ ማንኛውም ለውጥ በ ውጪ ቁልፍ ሜዳዎች ላይ ተጽእኖ እንዳይፈጥር መወሰኛ </ahelp>"
-
-#. UzK5q
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3148664\n"
-"help.text"
-msgid "Updating cascade"
-msgstr "cascade ማሻሻያ"
-
-#. GFtru
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154073\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">ማሻሻያ ሁሉም የ ውጪ ቁልፍ ሜዳዎች ዋጋ ተመሳሳይ ቀዳሚ ቁልፍ ከ ተሻሻለ (Cascading Update).</ahelp>"
-
-#. xydLE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145171\n"
-"help.text"
-msgid "Set null"
-msgstr "ባዶ ማሰናጃ"
-
-#. ksYnw
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154123\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> ይህ ተመሳሳይ ቀዳሚ ቁልፍ ከ ተሻሻለ: ይህን ምርጫ ይጠቀሙ ለ ማሰናዳት \"ባዶ ነው\" ዋጋ ለ ሁሉም የ ውጪ ቁልፍ ሜዳዎች: ባዶ ነው ማለት ሜዳው ባዶ ነው ማለት ነው</ahelp>"
-
-#. FGxMC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150448\n"
-"help.text"
-msgid "Set default"
-msgstr "ነባር ማሰናጃ"
-
-#. T7dEQ
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3151041\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> ይህ ተመሳሳይ ቁልፍ ቀዳሚ ቁልፍ ከ ተሻሻለ: ይህን ምርጫ ይጠቀሙ ነባር ዋጋ ለማሰናዳት ለ ሁሉም የ ውጪ ቁልፍ ሜዳዎች </ahelp> ተመሳሳይ ሰንጠረዥ በሚፈጥሩ ጊዜ: የ ውጪ ቁልፍ ሜዳ ነባር ዋጋ ይገለጻል እርስዎ የ ሜዳ ባህሪዎች በሚመድቡ ጊዜ"
-
-#. AvWBL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3125863\n"
-"help.text"
-msgid "Delete options"
-msgstr "ምርጫዎችን ማጥፊያ"
-
-#. ayyns
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153193\n"
-"help.text"
-msgid "Here you can select options that take effect when a primary key field is deleted."
-msgstr "እዚህ መምረጥ ይችላሉ ምርጫዎች ተጽእኖ የሚፈጥሩ የ ቀዳሚ ቁልፍ ሜዳ በሚጠፋ ጊዜ"
-
-#. jTCSL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3159252\n"
-"help.text"
-msgid "No action"
-msgstr "ምንም ተግባር የለም"
-
-#. PgDqt
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3145785\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">የ ቀዳሚ ቁልፍ በሚያጠፉ ጊዜ በ ሌሎች የ ውጪ ቁልፍ ሜዳዎች ላይ ተጽእኖ እንዳይፈጥር መወሰኛ </ahelp>"
-
-#. hFmB4
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3154146\n"
-"help.text"
-msgid "Delete cascade"
-msgstr "cascade ማጥፊያ"
-
-#. ESpAp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155309\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">ሁሉም የ ውጪ ቁልፍ ሜዳዎች ይጠፉ እንደሆን መወሰኛ እርስዎ ቀዳሚ ቁልፍ ሜዳ ሲያጠፉ </ahelp>"
-
-#. ZaNTh
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153140\n"
-"help.text"
-msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
-msgstr "እርስዎ ቀዳሚ ቁልፍ በሚያጠፉ ጊዜ በ <emph> ማጥፊያ cascade </emph>ምርጫ: ሁሉንም መዝገቦች ከ ለሎች ሰንጠረዥ ውስጥ ይህን ቁልፍ እንደ የራሳቸው የ ውጪ ቁልፍ የሚጠቀሙ አብረው ይጠፋሉ: ይህን ምርጫ በ ጥናቃቄ ይጠቀሙ: ጥንቃቄ ካላደረጉ ከፍተኛ አካል የ ዳታቤዝ ሊያጠፉ ይችላሉ"
-
-#. mAu9C
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3152596\n"
-"help.text"
-msgid "Set null"
-msgstr "ባዶ ማሰናጃ"
-
-#. dAtCx
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153363\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">እርስዎ ተመሳሳይ ቀዳሚ ቁልፍ ካጠፉ: የ \"ባዶ ነው\" ዋጋ ለ ሁሉም የ ውጪ ቁልፍ ሜዳዎች ይመደባል</ahelp>"
-
-#. 474LG
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145272\n"
-"help.text"
-msgid "Set Default"
-msgstr "ነባር ማሰናጃ"
-
-#. ktJ6K
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154320\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">እርስዎ ተመሳሳይ ቀዳሚ ቁልፍ ካጠፉ: የ ዋጋ ማሰናጃ ለ ሁሉም የ ውጪ ቁልፍ ሜዳዎች ይሰናዳል </ahelp>"
-
#. x8A6E
#: 05030000.xhp
msgctxt ""
@@ -3769,15 +3310,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
-#. V9baD
-#: dabawiz00.xhp
-msgctxt ""
-"dabawiz00.xhp\n"
-"par_idN10610\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">የ LDAP ግንኙነት ማሰናጃ</link>"
-
#. bbTEe
#: dabawiz00.xhp
msgctxt ""
@@ -4795,132 +4327,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
msgstr "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">የ ዳታቤዝ አዋቂ</link>"
-#. XLfeM
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"tit\n"
-"help.text"
-msgid "LDAP Connection"
-msgstr "የ LDAP ግንኙነት"
-
-#. E4K9F
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"bm_id22583\n"
-"help.text"
-msgid "<bookmark_value>LDAP server; address books (Base)</bookmark_value><bookmark_value>address books; LDAP server (Base)</bookmark_value><bookmark_value>data sources; LDAP server (Base)</bookmark_value>"
-msgstr "<bookmark_value>የ LDAP ሰርቨር: አድራሻ ደብተሮች (ቤዝ)</bookmark_value><bookmark_value>የ አድራሻ ደብተሮች: የ LDAP ሰርቨር (ቤዝ)</bookmark_value><bookmark_value>የ ዳታ ምንጮች: የ LDAP ሰርቨር (ቤዝ)</bookmark_value>"
-
-#. HDgwj
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "<variable id=\"ldap\"><link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">LDAP Connection</link></variable>"
-msgstr "<variable id=\"ldap\"><link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">የ LDAP ግንኙነት</link></variable>"
-
-#. Xdbya
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database using LDAP</ahelp> (<emph>Lightweight Directory Access Protocol)</emph>. This page is only available if you registered an LDAP server as an address database."
-msgstr "<ahelp hid=\".\">ይወስኑ ማሰናጃ ለማምጣት የ ዳታቤዝ በ መጠቀም የ LDAP</ahelp> (<emph>Lightweight Directory Access Protocol)</emph> ይህ ገጽ ዝግጁ የሚሆነው እርስዎ ሲመዘገቡ ነው በ LDAP ሰርቨር እንደ አድራሻ ዳታቤዝ"
-
-#. ZMeDx
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "Server URL"
-msgstr "የ ሰርቨር URL"
-
-#. ScRnC
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_HOSTNAME\">Enter the name of the LDAP server using the format \"ldap.server.com\".</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_HOSTNAME\">የ LDAP ሰርቨር ስም ያስገቡ ይህን አቀራረብ በ መጠቀም \"ldap.server.com\".</ahelp>"
-
-#. WRJRs
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Base DN"
-msgstr "Base DN"
-
-#. kFVmv
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10598\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Enter the starting point to search the LDAP database, for example, \"dc=com\".</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">ለ መፈለጊያ ማስጀመሪያ ነጥብ ያስገቡ ለ LDAP ዳታቤዝ: ለምሳሌ: \"dc=com\".</ahelp>"
-
-#. AKFCR
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Port number"
-msgstr "የ Port ቁጥር"
-
-#. 9Bhwf
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_PORTNUMBER\">Enter the port of the LDAP server, normally 389.</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_PORTNUMBER\">ያስገቡ port ለ LDAP ሰርቨር: መደበኛው 389.</ahelp> ነው"
-
-#. 8FGvh
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CA\n"
-"help.text"
-msgid "Use secure connection (SSL)"
-msgstr "አስተማማኝ ግንኙነት መጠቀሚያ (SSL)"
-
-#. REnMu
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CE\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_USESSL_LDAP\">Creates a secure connection to the LDAP server through the Secure Sockets Layer (SSL).</ahelp> By default, an SSL connection uses port 636. A regular connection uses port 389."
-msgstr "<ahelp hid=\"HID_DSADMIN_USESSL_LDAP\">አስተማማኝ ግንኙነት መፍጠሪያ ለ LDAP ሰርቨር በ Secure Sockets Layer (SSL).</ahelp> በ ነባር የ SSL ግንኙነት የሚጠቀመው port 636. መደበኛ ግንኙነት የሚጠቀመው port 389."
-
-#. PXBAE
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105DE\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz03auth.xhp\">Authentication</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz03auth.xhp\">ማረጋገጫ</link>"
-
-#. EkPas
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105F5\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">የ ዳታቤዝ አዋቂ</link>"
-
#. Y4EFA
#: dabawiz02mysql.xhp
msgctxt ""
@@ -6640,14 +6046,14 @@ msgctxt ""
msgid "Relationships"
msgstr "ግንኙነቶች"
-#. agJkV
+#. DKgXb
#: menutools.xhp
msgctxt ""
"menutools.xhp\n"
"par_idN10576\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/explorer/database/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/explorer/database/05020000.xhp\"> ግንኙነት ንድፍ </link> መመልከቻ እና መመርመሪያ የ ዳታ ግንኙነት ግንኙነቶች ይደግፍ አንደሆን </ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/sdatabase/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
+msgstr ""
#. B2YV6
#: menutools.xhp
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index a1385773069..51665a134a1 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-12-09 17:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8161,13 +8161,13 @@ msgctxt ""
msgid "Tables"
msgstr "ሰንጠረዦች"
-#. k3n7x
+#. Gcdea
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3163713\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/shared/explorer/database/05020000.xhp\" name=\"relations\">relations</link>"
+msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/sdatabase/05020000.xhp\" name=\"relations\">relations</link>"
msgstr ""
#. AENyR
@@ -18619,68 +18619,77 @@ msgctxt ""
msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
msgstr "ነጥቦች እና ቁጥር መስጫዎች ለ አንቀጾች የሚደገፉት በ መጻፊያ: ማስደነቂያ እና መሳያ ነው"
-#. 4DAtN
+#. LnEF2
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id3147618\n"
+"help.text"
+msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>No List</emph> icon in the <emph>Formatting</emph> bar. The list indenting is also removed."
+msgstr ""
+
+#. R49Gn
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3154288\n"
"help.text"
-msgid "<image id=\"img_id3153527\" src=\"cmd/sc_removebullets.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153527\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153527\" src=\"cmd/sc_removebullets.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153527\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3153527\" src=\"cmd/lc_removebullets.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153527\">No List icon</alt></image>"
+msgstr ""
-#. zSuGJ
+#. nFCu3
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3150443\n"
+"par_id151614326512513\n"
"help.text"
-msgid "<image id=\"img_id3163802\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3163802\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3163802\">ምልክት</alt></image>"
+msgid "No List icon"
+msgstr ""
-#. it4t7
+#. Uzqm6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3147618\n"
+"par_id3144511\n"
"help.text"
-msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>Numbering Off</emph> icon in the <emph>Bullets and Numbering</emph> bar."
-msgstr "ለ አሁኑ አንቀጽ ወይንም ለ ተመረጡት አንቀጾች እርስዎ ማጥፋት ይችላሉ ራሱ በራሱ ቁጥር መስጫ ወይንም ዝርዝር: ይጫኑ በ <emph> ቁጥር መስጫ ማጥፊያ </emph> ምልክት ውስጥ: በ <emph> ነጥቦች እና ቁጥር መስጫ </emph> መደደሪያ ላይ"
+msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Toggle Unordered List</emph> icon on the <emph>Text Formatting</emph> bar."
+msgstr ""
-#. CcCTx
+#. XLYd6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3155449\n"
"help.text"
-msgid "<image id=\"img_id3158432\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3158432\">Icon</alt></image>"
-msgstr "<image id=\"img_id3158432\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3158432\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3158432\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3158432\">Icon</alt></image>"
+msgstr ""
-#. biscq
+#. ikjGP
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3144511\n"
+"par_id781614327726646\n"
"help.text"
-msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Bullets On/Off </emph>icon on the <emph>Text Formatting</emph> bar."
-msgstr "መጠቆሚያው ቁጥር በ ተሰጣቸው ወይንም ነጥብ በ ተሰጣቸው ዝርዝር ውስጥ ከሆነ: እርስዎ ማጥፋት ይችላሉ ራሱ በራሱ ቁጥር ወይንም ነጥብ መስጫ ከ አሁኑ አንቀጽ ወይንም ከ ተመረጡት አንቀጾች ውስጥ በ መጫን የ <emph> ነጥቦች ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> ጽሁፍ አቀራረብ </emph> መደርደሪያ ላይ"
+msgid "Toggle Unordered List icon"
+msgstr ""
-#. CfCjc
+#. RE37f
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148946\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To remove numbering from a paragraph using the keyboard: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">የ ፊደል ገበታ በ መጠቀም ቁጥር መስጫ ከ አንቀጽ ውስጥ ማስወገጃ: </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> To remove a number or bullet from a paragraph while preserving the list indenting: </caseinline></switchinline>"
+msgstr ""
-#. qETFj
+#. EsxZF
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148663\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a numbered paragraph and press the Backspace key. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">መጠቆሚያውን ቁጥር ከ ተሰጠው አንቀጽ በፊት ያድርጉ እና ይጫኑ የ ኋሊት ደምሳሽ ቁልፍ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a paragraph in a list and press the <keycode>Backspace</keycode> key. </caseinline></switchinline>"
+msgstr ""
#. TY7jM
#: numbering_stop.xhp
@@ -18691,6 +18700,15 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The numbering of the paragraph disappears and is removed from the numbering sequence. Numbering resumes in the following paragraph. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">የ አንቀጽ ቁጥር መስጫ ይጠፋል እና ይወገዳል ከ ቁጥር መስጫ ቅደም ተከተል ውስጥ: ቁጥር መስጫ ከ ሚቀጥለው አንቀጽ ጀምሮ ይቀጥላል </caseinline></switchinline>"
+#. B8akd
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id911614326873271\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> at the beginning of a list paragraph to return the number or bullet."
+msgstr ""
+
#. FrmUz
#: numbering_stop.xhp
msgctxt ""
@@ -23326,13 +23344,13 @@ msgctxt ""
msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr "ከሆነ --መቀየሪያ-ወደ ከ አንድ ጊዜ በላይ ተጠቅመውበታል: የ መጨረሻው ዋጋ የ ውጤት ፋይል ተጨማሪ[:የ ውጤት ፋይል ስም] ውጤታማ ይሆናል: ከሆነ --የ ውጤት ዳይሬክቶሪ ከ ተጠቀሙ ከ አንድ ጊዜ በክላይ: የ መጨረሻው ዋጋ ብቻ ነው ውጤታማ የሚሆነው: ለምሳሌ:"
-#. ir37U
+#. RYx7a
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id781554408625219\n"
"help.text"
-msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion."
+msgid "<variable id=\"seefilters\">See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion.</variable>"
msgstr ""
#. EiUnD
@@ -23929,13 +23947,13 @@ msgctxt ""
msgid "If you want to change the settings of your default tab stops, you will find further information under <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Text Document - General\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - General\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Drawing - General\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(module name) - General</defaultinline></switchinline> in the Options dialog box."
msgstr "እርስዎ ነባር የ ማስረጊያ ማስቆሚያ ማሰናጃ መቀየር ከ ፈለጉ: እርስዎ የ በለጠ መረጃ ማግኘት ይችላሉ በ <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Text Document - General\">%PRODUCTNAME መጻፊያ - ባጠቃላይ</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - General\">%PRODUCTNAME ሰንጠረዥ - ባጠቃላይ </link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Drawing - General\">%PRODUCTNAME መሳያ - ባጠቃላይ </link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\">%PRODUCTNAME ማስደነቂያ - ባጠቃላይ </link></caseinline><defaultinline> (የ ክፍል ስም) - ባጠቃላይ </defaultinline></switchinline> በ ምርጫ ንግግር ሳጥን ውስጥ"
-#. hqPQR
+#. hA4kf
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3146972\n"
"help.text"
-msgid "The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
+msgid "The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
msgstr ""
#. ojDwN
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index a22eb82cd77..83e88d8ae64 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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-12-10 01:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6145,23 +6145,23 @@ msgctxt ""
msgid "List"
msgstr "ዝርዝር"
-#. AcAJa
+#. sEbwG
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3144433\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the fonts for lists and numbering and all derived styles.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">ፊደል ለ ዝርዝር እና ለ ቁጥር መስጫ እና ለሁሉም ዘዴዎች መወሰኛ</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the font and font size for the <emph>List</emph> paragraph style, which is inherited by all derived paragraph styles.</ahelp>"
+msgstr ""
-#. KnLN9
+#. aQFY4
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><emph>Format - Numbering/Bullets</emph></link></caseinline><defaultinline><emph>Format - Numbering/Bullets</emph></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
-msgstr "በሚመርጡ ጊዜ <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><emph>አቀራረብ - ቁጥር/ነጥቦች</emph></link></caseinline><defaultinline><emph>አቀራረብ - ቁጥር/ነጥቦች</emph></defaultinline></switchinline> ለ አንቀጽ አቀራረብ ቁጥሮች ወይንም ነጥቦች በጽሁፍ ሰነድ ውስጥ ፕሮግራሙ የ አንቀጽ ዘዴዎችን ራሱ በራሱ ይመድባል"
+msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><menuitem>Format - Bullets and Numbering</menuitem></link></caseinline><defaultinline><menuitem>Format - Bullets and Numbering</menuitem></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
+msgstr ""
#. 3nSZ5
#: 01040300.xhp
@@ -6235,13 +6235,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Specifies print settings within a text or HTML document.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">ለ ማተሚያ ማሰናጃ በ ጽሁፍ ወይንም በ HTML ሰነድ ውስጥ ማስናጃ</ahelp>"
-#. m2BYE
+#. rwhVS
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"par_id3153542\n"
"help.text"
-msgid "The print settings defined on this tab page apply to all subsequent print jobs, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
+msgid "The print settings defined on this tab page apply to subsequent new documents, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
msgstr ""
#. kHkS3
@@ -15919,6 +15919,15 @@ msgctxt ""
msgid "Java options"
msgstr "የ Java ምርጫ"
+#. BYguG
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id181614855578590\n"
+"help.text"
+msgid "The current list of %PRODUCTNAME modules and resources that depends on Java is available <link href=\"https://wiki.documentfoundation.org/Faq/General/015\" name=\"Java wiki\">in the wiki</link>."
+msgstr ""
+
#. J8Yfv
#: java.xhp
msgctxt ""
@@ -15937,6 +15946,15 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optadvancedpage/javaenabled\">Allows you to run Java applications in %PRODUCTNAME.</ahelp> When a Java application attempts to access your hard drive, a prompt opens."
msgstr "<ahelp hid=\"cui/ui/optadvancedpage/javaenabled\">እርስዎን ማስኬድ ያስችሎታል የ Java መተግበሪያዎች በ %PRODUCTNAME.</ahelp> የ Java መተግበሪያዎች የ እርስዎን ሀርድ ድራይቭ ለ መድረስ ሲሞክር: መሞከሪያ ይከፈታል"
+#. JLKwC
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id881614855922649\n"
+"help.text"
+msgid "Make sure to install a JRE compatible with the %PRODUCTNAME architecture: 64-bit JRE for 64-bit %PRODUCTNAME and 32-bit JRE for 32-bit %PRODUCTNAME."
+msgstr ""
+
#. BBqDy
#: java.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress.po b/source/am/helpcontent2/source/text/simpress.po
index b29adf0edb3..88172a1df47 100644
--- a/source/am/helpcontent2/source/text/simpress.po
+++ b/source/am/helpcontent2/source/text/simpress.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2019-01-13 02:16+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1555,85 +1555,85 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr ""
-#. CJJ22
+#. vmbqC
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3147401\n"
+"hd_id451615217475502\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgid "Styles"
msgstr ""
-#. AW2xS
+#. bpU6u
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149941\n"
+"par_id41615217505414\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgid "Shows commands to edit, update, create, and manage styles."
msgstr ""
-#. eZDbp
+#. CJJ22
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3147299\n"
+"hd_id3147401\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr ""
-#. TVJ8F
+#. AW2xS
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149499\n"
+"hd_id3149941\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Object and Shape</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
-#. XrW2e
+#. eZDbp
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3154510\n"
+"hd_id3147299\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr ""
-#. wt8hF
+#. LnFgm
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149021\n"
+"hd_id801615217485302\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
+msgid "Table"
msgstr ""
-#. VkWBC
+#. ZH8Cz
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3155961\n"
+"par_id61615217563797\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
+msgid "Shows commands to format, edit, and delete a table and its elements."
msgstr ""
-#. nGRHD
+#. iZgpC
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3156286\n"
+"hd_id401615217493429\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
+msgid "Image"
msgstr ""
-#. MwAqP
+#. RNZjn
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3163827\n"
+"par_id901615217674598\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
+msgid "Shows commands to crop, edit, and manage images."
msgstr ""
#. F98f9
@@ -1663,22 +1663,391 @@ msgctxt ""
msgid "This menu provides slide management and navigation commands."
msgstr ""
-#. qN8UF
+#. XaqGZ
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id611615489755701\n"
+"help.text"
+msgid "Duplicate Slide"
+msgstr ""
+
+#. uJcAM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id71615490370664\n"
+"help.text"
+msgid "Creates a copy of the currently selected slide."
+msgstr ""
+
+#. Jtf2o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id631615489785082\n"
+"help.text"
+msgid "Delete Slide"
+msgstr ""
+
+#. FAJJ6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491193340\n"
+"help.text"
+msgid "Deletes the selected slide(s)."
+msgstr ""
+
+#. iZWVK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id721615489786162\n"
+"help.text"
+msgid "Save Background Image"
+msgstr ""
+
+#. 8ydAh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491449943\n"
+"help.text"
+msgid "If the slide has a background image, this option allows the user to save the corresponding background image file."
+msgstr ""
+
+#. Bhh37
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id161615489786339\n"
+"help.text"
+msgid "Set Background Image"
+msgstr ""
+
+#. ekbFN
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id781615491497404\n"
+"help.text"
+msgid "Opens a File Picker to choose an image file to be set as the background of the current slide."
+msgstr ""
+
+#. 92Pku
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id921615489787123\n"
+"help.text"
+msgid "New Master"
+msgstr ""
+
+#. kPJER
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id131615493790751\n"
+"help.text"
+msgid "Creates a new Master Slide. This function is only available in <emph>Master View</emph>."
+msgstr ""
+
+#. Vwom7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id491615494190854\n"
+"help.text"
+msgid "To enter the Master View, go to <emph>View - Master Slide</emph>. To exit the Master View, go to <emph>View - Normal</emph>."
+msgstr ""
+
+#. HQQHh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id421615489787299\n"
+"help.text"
+msgid "Delete Master"
+msgstr ""
+
+#. EBxxM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id661615494028415\n"
+"help.text"
+msgid "Deletes the currently selected Master Slide. This function is only available in <emph>Master View</emph>"
+msgstr ""
+
+#. hXNB7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id841615489787538\n"
+"help.text"
+msgid "Master Background"
+msgstr ""
+
+#. Kf3CF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id921615494351365\n"
+"help.text"
+msgid "This option allows to show or hide the background image defined in the master slide."
+msgstr ""
+
+#. 9GSWp
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id621615489788132\n"
+"help.text"
+msgid "Master Objects"
+msgstr ""
+
+#. wjDcS
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id541615494644223\n"
+"help.text"
+msgid "This option allows to show or hide objects defined in the master slide."
+msgstr ""
+
+#. BVTEY
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id51615489788356\n"
+"help.text"
+msgid "Master Elements"
+msgstr ""
+
+#. GaTGo
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id111615494747246\n"
+"help.text"
+msgid "Displays a dialog box where the following elements from the master slide can be enabled or disabled:"
+msgstr ""
+
+#. fvE2V
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id41615494861841\n"
+"help.text"
+msgid "Header"
+msgstr ""
+
+#. xcmiq
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id3145801\n"
+"par_id321615494881187\n"
"help.text"
-msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
+msgid "Date/Time"
msgstr ""
-#. BkUdP
+#. kfNdX
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id551556824896520\n"
+"par_id721615494891164\n"
"help.text"
-msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
+msgid "Footer"
+msgstr ""
+
+#. LLGmD
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id401615494904662\n"
+"help.text"
+msgid "Slide Number"
+msgstr ""
+
+#. sYXNP
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id851615489788586\n"
+"help.text"
+msgid "Show Slide"
+msgstr ""
+
+#. 6hQEB
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495037553\n"
+"help.text"
+msgid "If a slide is hidden, this function makes it visible again."
+msgstr ""
+
+#. FFLV4
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id201615489788874\n"
+"help.text"
+msgid "Hide Slide"
+msgstr ""
+
+#. jdiSK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id961615495104794\n"
+"help.text"
+msgid "If a slide is visible, this function hides it."
+msgstr ""
+
+#. nV23n
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id121615489789140\n"
+"help.text"
+msgid "Rename Slide"
+msgstr ""
+
+#. GpHBE
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id901615495187958\n"
+"help.text"
+msgid "Opens a dialog box where a name can be set for the current slide."
+msgstr ""
+
+#. D6GtH
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id551615489789347\n"
+"help.text"
+msgid "Jump to Last Edited Slide"
+msgstr ""
+
+#. Snoa6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id741615495336473\n"
+"help.text"
+msgid "Navigates to the last edited slide in the document."
+msgstr ""
+
+#. FA3Ra
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id641615489789548\n"
+"help.text"
+msgid "Move"
+msgstr ""
+
+#. GBPvF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id371615495363225\n"
+"help.text"
+msgid "Shows a list of move operations that can be applied to the current slide:"
+msgstr ""
+
+#. TF4iz
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id711615495448201\n"
+"help.text"
+msgid "<emph>Slide to Start:</emph> Moves the current slide to the first position."
+msgstr ""
+
+#. uAt25
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id101615495452464\n"
+"help.text"
+msgid "<emph>Slide Up:</emph> Moves the current slide one position up in the presentation."
+msgstr ""
+
+#. PdEMy
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id761615495456499\n"
+"help.text"
+msgid "<emph>Slide Down:</emph> Moves the current slide one position down in the presentation."
+msgstr ""
+
+#. ESDFM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495459372\n"
+"help.text"
+msgid "<emph>Slide to End:</emph> Moves the current slide to the last position."
+msgstr ""
+
+#. AsscG
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id301615489789755\n"
+"help.text"
+msgid "Navigate"
+msgstr ""
+
+#. 62VZA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558050553\n"
+"help.text"
+msgid "Shows a list of functions that can be used to navigate through the slides:"
+msgstr ""
+
+#. Mdi6Y
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id381615558169403\n"
+"help.text"
+msgid "<emph>To First Slide:</emph> Selects the first slide in the presentation."
+msgstr ""
+
+#. bYEak
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id131615558173437\n"
+"help.text"
+msgid "<emph>To Previous Slide:</emph> Navigates to the previous slide with respect to the currently selected slide."
+msgstr ""
+
+#. YXD3o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558176178\n"
+"help.text"
+msgid "<emph>To Next Slide:</emph> Navigates to the next slide with respect to the currently selected slide."
+msgstr ""
+
+#. dspAA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id91615558179041\n"
+"help.text"
+msgid "<emph>To Last Slide:</emph> Selects the last slide in the presentation."
msgstr ""
#. rCA2e
@@ -1734,3 +2103,30 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
+
+#. oAFfK
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object and Shape (Impress)"
+msgstr ""
+
+#. RHunz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"hd_id231615117568430\n"
+"help.text"
+msgid "<link href=\"text/simpress/submenu_object_shape.xhp\" name=\"Object and Shape\">Object and Shape</link>"
+msgstr ""
+
+#. HZBpz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"par_id111615131426235\n"
+"help.text"
+msgid "Opens a submenu to edit the properties of the selected object or shape."
+msgstr ""
diff --git a/source/am/helpcontent2/source/text/simpress/00.po b/source/am/helpcontent2/source/text/simpress/00.po
index bd71fd6c23c..733940d9aca 100644
--- a/source/am/helpcontent2/source/text/simpress/00.po
+++ b/source/am/helpcontent2/source/text/simpress/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-03 12:43+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-04-30 14:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1420,13 +1420,13 @@ msgctxt ""
msgid "<variable id=\"frtiteh\">Choose <menuitem>Slide - Slide Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
msgstr ""
-#. y5oEX
+#. fuqnR
#: slide_menu.xhp
msgctxt ""
"slide_menu.xhp\n"
"par_id3155266\n"
"help.text"
-msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Slide Layout</menuitem> </variable>"
+msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Layout</menuitem> </variable>"
msgstr ""
#. j5KeJ
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index cb1654cb6b3..2ce9f50cc59 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/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: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -3220,14 +3220,14 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Summary Slide</link>"
msgstr "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">ተንሸራታች ማጠቃለያ</link>"
-#. zGg5h
+#. sYR47
#: 04140000.xhp
msgctxt ""
"04140000.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains a bulleted list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
-msgstr "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">አዲስ ተንሸራታች መፍጠሪያ የ ነጥብ ዝርዝር የያዘ በ ተንሸራታች አርእስቶች ውስጥ የ ተመረጠውን ተንሸራታች የሚከተል: የ ማጠቃለያ ተንሸራታች የሚገባው ከ መጨረሻው ተንሸራታች በኋላ ነው </ahelp>"
+msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains an unordered list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
+msgstr ""
#. jvuJN
#: 04990000.xhp
@@ -4147,14 +4147,14 @@ msgctxt ""
msgid "Delete Column"
msgstr "አምድ ማጥፊያ"
-#. qrDGC
+#. Luyeg
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"tit\n"
"help.text"
-msgid "Slide Layout"
-msgstr "የ ተንሸራታች እቅድ"
+msgid "Layout"
+msgstr ""
#. HJ8Jm
#: 05130000.xhp
@@ -4165,22 +4165,22 @@ msgctxt ""
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
msgstr ""
-#. REe2P
+#. 4dvDP
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "Slide Layout"
-msgstr "የ ተንሸራታች እቅድ"
+msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Layout\">Layout</link>"
+msgstr ""
-#. dmgco
+#. dZ3GJ
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"par_id3149126\n"
"help.text"
-msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp> </variable>"
+msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp></variable>"
msgstr ""
#. CFkTY
@@ -9007,22 +9007,22 @@ msgctxt ""
msgid "Click <emph>Remove Client Authorization</emph>."
msgstr ""
-#. 7oZpm
+#. hTau2
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"tit\n"
"help.text"
-msgid "Slide"
+msgid "Slide Properties"
msgstr ""
-#. baLrD
+#. PGY7f
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"hd_id3149379\n"
"help.text"
-msgid "Slide"
+msgid "Slide Properties"
msgstr ""
#. YMWN6
diff --git a/source/am/helpcontent2/source/text/simpress/guide.po b/source/am/helpcontent2/source/text/simpress/guide.po
index 5e3a41464c9..536edab5acd 100644
--- a/source/am/helpcontent2/source/text/simpress/guide.po
+++ b/source/am/helpcontent2/source/text/simpress/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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2018-09-03 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2761,13 +2761,31 @@ msgctxt ""
msgid "During a Slide Show"
msgstr "ተንሸራታች በሚታይበት ጊዜ"
-#. DaXcL
+#. aonrJ
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id941616435513490\n"
+"help.text"
+msgid "To start a Slide Show"
+msgstr ""
+
+#. 3vhZG
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150650\n"
"help.text"
-msgid "To start a slide show, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F2</keycode> or <keycode>F5</keycode>."
+msgid "To start a slide show from the begining, press <keycode>F5</keycode>."
+msgstr ""
+
+#. WaqYV
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id911616435506012\n"
+"help.text"
+msgid "To start a slide show from the current slide, press <keycode>Shift+F5</keycode>."
msgstr ""
#. K3r3c
@@ -4165,32 +4183,32 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">መጋጠሚያ ነጥቦች</link>"
-#. GhgSf
+#. 3LhEr
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"tit\n"
"help.text"
-msgid "Copying Slides From Other Presentations"
-msgstr "ከ ሌሎች ማቅረቢያዎች ተንሸራታቾች ኮፒ ማድረጊያ"
+msgid "Insert Slide from File"
+msgstr ""
-#. BEQux
+#. 34kPB
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"bm_id3146971\n"
"help.text"
-msgid "<bookmark_value>copying; slides</bookmark_value><bookmark_value>slides; copying between documents</bookmark_value><bookmark_value>pages; copying</bookmark_value><bookmark_value>inserting; slides from files</bookmark_value><bookmark_value>pasting;slides from other presentations</bookmark_value>"
-msgstr "<bookmark_value>ኮፒ ማድረጊያ; ተንሸራታች</bookmark_value><bookmark_value>ተንሸራታች; ኮፒ ማድረጊያ በ ሰነድ መካከል</bookmark_value><bookmark_value>ገጾች; ኮፒ ማድረጊያ</bookmark_value><bookmark_value>ማስገቢያ; ተንሸራታች ከ ፋይሎች</bookmark_value><bookmark_value>መለጠፊያ;ተንሸራታች ከ ሌሎች ማቅረቢያዎች</bookmark_value>"
+msgid "<bookmark_value>copying; slides</bookmark_value> <bookmark_value>slides; copying between documents</bookmark_value> <bookmark_value>pages; copying</bookmark_value> <bookmark_value>inserting; slides from files</bookmark_value> <bookmark_value>pasting;slides from other presentations</bookmark_value>"
+msgstr ""
-#. paiDj
+#. BCJDc
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"hd_id3146971\n"
"help.text"
-msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Copying Slides From Other Presentations</link></variable>"
-msgstr "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">ተንሸራታች ኮፒ ማድረጊያ ከ ሌሎች ተንሸራታቾች</link></variable>"
+msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Insert Slide from File</link></variable>"
+msgstr ""
#. BNyAE
#: page_copy.xhp
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index aa5045a3a3e..fc7c2022135 100644
--- a/source/am/helpcontent2/source/text/smath/01.po
+++ b/source/am/helpcontent2/source/text/smath/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: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2020-03-18 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/am/>\n"
@@ -205,14 +205,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03040000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr "<link href=\"text/smath/01/03040000.xhp\" name=\"Zoom In\">በቅርብ ማሳያ</link>"
-#. oeXhg
+#. 4GCbo
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
"par_id3154490\n"
"help.text"
-msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">የ መቀመሪያ ማሳያ መጠን መጨመሪያ በ 25%.</ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታዎች መደርደሪያ ላይ ይታያል: ሊደርስባቸው የሚችሉ ዝግጁ የሆኑ ማስያዎች ምርጫ ይታያሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> ውስጥ: የ አገባብ ዝርዝር በ ስራ ቦታ ውስጥ የማሳያ መጠን ይዟል"
+msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgstr ""
#. EyasV
#: 03050000.xhp
@@ -241,14 +241,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03050000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr "<link href=\"text/smath/01/03050000.xhp\" name=\"Zoom Out\">በርቀት ማሳያ</link>"
-#. Q2ZAD
+#. yxSWi
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">የ መቀመሪያ ማሳያ መጠን መጨመሪያ በ 25%.</ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታዎች መደርደሪያ ላይ ይታያል: ሊደርስባቸው የሚችሉ ዝግጁ የሆኑ ማስያዎች ምርጫ ይታያሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> ውስጥ: የ አገባብ ዝርዝር በ ስራ ቦታ ውስጥ የማሳያ መጠን ይዟል"
+msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgstr ""
#. xSbDA
#: 03060000.xhp
@@ -277,14 +277,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03060000.xhp\" name=\"Show All\">Show All</link>"
msgstr "<link href=\"text/smath/01/03060000.xhp\" name=\"Show All\">ሁሉንም ማሳያ</link>"
-#. cMH92
+#. HGtyh
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id3148571\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
-msgstr "<ahelp hid=\".\">ጠቅላላ መቀመሪያውን ማሳያ በ ተቻለው ከፍተኛ መጠን አካላቶቹ በሙሉ እንዲካተቱ: መቀመሪያው ያንሳል ወይንም ይጨምራል ስለዚህ የ መቀመሪያ አካላቶች በ ስራ ቦታ ላይ ይታያሉ: </ahelp> የ አሁኑ ማሳያ መጠን በ ሁኔታ መደርደሪያ ላይ ይታያል: ዝግጁ የማሳያ ምርጫ ጋር መድረስ ይችላሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> የ አገባብ ዝርዝር በ ስራ ቦታ እንዲሁም የ ማሳያ ትእዛዞች ይዟል: የ አገባብ ዝርዝር በ ስራ ቦታ እንዲሁም የ ማሳያ ትእዛዞች ይዟል: የ ማሳያ ትእዛዞች እና ምልክቶች ዝግጁ የሚሆነው ለ ሂሳብ ሰነድ ነው: ለ ተጣበቁ የ ሂሳብ እቃዎች አይደለም"
+msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
+msgstr ""
#. WGriM
#: 03070000.xhp
@@ -457,14 +457,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090100.xhp\" name=\"Unary/Binary Operators\">Unary/Binary Operators</link>"
msgstr "<link href=\"text/smath/01/03090100.xhp\" name=\"Unary/Binary Operators\">Unary/Binary አንቀሳቃሾች</link>"
-#. JBpRR
+#. T3SNE
#: 03090100.xhp
msgctxt ""
"03090100.xhp\n"
"par_id3151241\n"
"help.text"
-msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
-msgstr "እርስዎ መምረጥ ይችላሉ የ ተለያዩ unary እና binary አንቀሳቃሾች ለ መገንባት የ እርስዎን $[officename] ሂሳብ መቀመሪያ: Unary የሚያመሳክረው ወደ አንቀሳቃሽ ነው ተጽእኖ የሚያደርግ ወደ አንድ ቦታ ያዢ ውስጥ: Binary የሚያመሳክረው ወደ አንቀሳቃሽ ነው የሚያገናኝ ሁለት ቦታ ያዢዎች ውስጥ: የ ታችኛው ክፍል ቦታ የ አካላቶች ክፍል የሚያሳየው የ እያንዳንዱን አንቀሳቃሽ ነው: በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> ዝርዝር አገባብ </link> ውስጥ በ <emph> ትእዛዞች </emph> መስኮት እንዲሁም ይይዛል የ እነዚህን አንቀሳቃሾች ዝርዝር: እንዲሁም ተጨማሪ አንቀሳቃሾች: እርስዎ አንቀሳቃሽ ከ ፈለጉ በ አካላቶች ክፍል ውስጥ የሌሉ ይጠቀሙ የ አገባብ ዝርዝር ወይንም በ እጅ መጻፍ ይቻላል በ ቀጥታ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ:"
+msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
+msgstr ""
#. 86s5i
#: 03090100.xhp
@@ -1933,14 +1933,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">Operators</link>"
msgstr "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">አንቀሳቃሾች</link>"
-#. 9GqEF
+#. fJzeE
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"par_id3149755\n"
"help.text"
-msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr "እርስዎ መምረጥ ይችላሉ ከ ተለያዩ አንቀሳቃሾች ውስጥ ለ መገንባት የ እርስዎን <emph>$[officename] ሂሳብ </emph> መቀመሪያ: ሁሉም ዝግጁ አንቀሳቃሾች ይታያሉ በ ታችኛው ክፍል የ አካላቶች ክፍል ውስጥ: ዝርዝሩ ይታያል በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> ውስጥ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ: ሁሉም አንቀሳቃሾች በ አካላቶች ክፍል ውስጥ የሌሉ ወይንም በ አገባብ ዝርዝር ውስጥ በ እጅ መጻፍ ይቻላል በ <emph> ትእዛዞች </emph> መስኮት ውስጥ:"
+msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgstr ""
#. hDyQo
#: 03090300.xhp
@@ -2392,14 +2392,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090400.xhp\" name=\"Functions\">Functions</link>"
msgstr "<link href=\"text/smath/01/03090400.xhp\" name=\"Functions\">ተግባሮች</link>"
-#. ELsLc
+#. Q9Kv7
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
"par_id3155374\n"
"help.text"
-msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr "ይምረጡ ተግባር ከ ታችኛው መስኮት ክፍል ውስጥ: እነዚህ ተግባሮች ይታያሉ በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> ውስጥ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ: ማንኛውም ሌሎች በ አካላቶች ክፍል ውስጥ የሌሉ ወይንም በ አገባብ ዝርዝር ውስጥ በ እጅ መጻፍ ይቻላል በ ትእዛዞች መስኮት ውስጥ:"
+msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
+msgstr ""
#. 35FEB
#: 03090400.xhp
@@ -3139,14 +3139,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090500.xhp\" name=\"Brackets\">Brackets</link>"
msgstr "<link href=\"text/smath/01/03090500.xhp\" name=\"Brackets\">ቅንፎች</link>"
-#. uHWGz
+#. EhUo8
#: 03090500.xhp
msgctxt ""
"03090500.xhp\n"
"par_id3147258\n"
"help.text"
-msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
-msgstr "እርስዎ መምረጥ ይችላሉ ከ ተለያዩ የ ቅንፍ አይነቶች ለ መገንባት የ <emph>$[officename] ሂሳብ </emph> መቀመሪያ: የ ቅንፍ አይነቶች ይታያሉ በ ታችኛው የ አካላቶች ክፍል ውስጥ: እነዚህ ቅንፎች ተዘርዘረዋል በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> ውስጥ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ: ሁሉም ቅንፎች በ አካላቶች ክፍል ውስጥ የሌሉ ወይንም በ አገባብ ዝርዝር ውስጥ በ እጅ መጻፍ ይቻላል በ <emph> ትእዛዞች </emph> መስኮት ውስጥ:"
+msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
+msgstr ""
#. zusZw
#: 03090500.xhp
@@ -3850,13 +3850,13 @@ msgctxt ""
msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">Attributes</link> </variable>"
msgstr ""
-#. Q2dMs
+#. mFqph
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145802\n"
"help.text"
-msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. LGFaf
@@ -4651,14 +4651,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090700.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/smath/01/03090700.xhp\" name=\"Format\">አቀራረብ</link>"
-#. dcihp
+#. ZG9A4
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"par_id3147262\n"
"help.text"
-msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr "እርስዎ መምረጥ ይችላሉ የ ተለያዩ አቀራረቦች በ $[officename] ሂሳብ መቀመሪያ ውስጥ: አንዳንድ መለያዎች ይታያሉ ከ ታችኛው ግማሽ የ መቀመሪያ አካላቶች ክፍል ውስጥ: የ እነዚህ ምርጫዎች ዝርዝር ይታያል በ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር</link> ውስጥ በ <emph> ትእዛዞች </emph> መስኮት ውስጥ:"
+msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
+msgstr ""
#. oGTCQ
#: 03090700.xhp
@@ -5254,14 +5254,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090800.xhp\" name=\"Set Operations\">Set Operations</link>"
msgstr "<link href=\"text/smath/01/03090800.xhp\" name=\"Set Operations\"> አንቀሳቃሾች ማሰናጃ</link>"
-#. QzFc8
+#. X4op9
#: 03090800.xhp
msgctxt ""
"03090800.xhp\n"
"par_id3154641\n"
"help.text"
-msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
-msgstr "የ ተለየ የ ስብስብ አንቀሳቃሽ ለ ባህሪዎች ማሰናጃ በ እርስዎ <emph>$[officename] ሂሳብ </emph> መቀመሪያ ውስጥ: እያንዳንዱ አንቀሳቃሽ የሚታየው በ ታችኛው ክፍል ነው በ አካላቶች ክፍል ውስጥ: ይጥሩ የ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\"> አገባብ ዝርዝር </link> በ <emph> ትእዛዞች </emph> መስኮት ውስጥ: ለ መመልከት ተመሳሳይ ዝርዝር ለ እያንዳንዱ ተግባር: ማንኛውም አንቀሳቃሾች ያልተገኙ በ አካላቶች ክፍል ውስጥ በ ቀጥታ መግባት አለባቸው በ ትእዛዞች መስኮት ውስጥ: እርስዎ እንዲሁም ማስገባት ይችላሉ የ መቀመሪያ ሌላ አካል ምልክቶች ቀደም ብሎ የ ተዘጋጀላቸው ካሉ"
+msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
+msgstr ""
#. CJVPF
#: 03090800.xhp
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index 7136e2b3059..beb1e4307f8 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2019-07-07 17:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1060,13 +1060,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr "<ahelp hid=\".uno:FormatMenu\">የ ያዛቸው ትእዛዞች በ እርስዎ ሰነድ ውስጥ የ እቅድ እና የ ይዞታዎችን አቀራረብ ነው</ahelp>"
-#. dWAnk
+#. zjGX9
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id551602974854459\n"
"help.text"
-msgid "Align"
+msgid "Align Text"
msgstr ""
#. 7FD3V
@@ -1078,41 +1078,41 @@ msgctxt ""
msgid "Opens a submenu where you can align text and objects."
msgstr ""
-#. 7iyia
+#. 5EJHh
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id951602975070826\n"
+"hd_id3147261\n"
"help.text"
-msgid "Lists"
-msgstr ""
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ባህሪ</link>"
-#. SkZuS
+#. y8Ux2
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"par_id461602975083850\n"
+"hd_id3147286\n"
"help.text"
-msgid "Opens a submenu where you can modify the structure of numbered and bulleted paragraphs."
-msgstr ""
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">አንቀጽ</link>"
-#. 5EJHh
+#. 7iyia
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147261\n"
+"hd_id951602975070826\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ባህሪ</link>"
+msgid "Lists"
+msgstr ""
-#. y8Ux2
+#. MKjWR
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147286\n"
+"par_id461602975083850\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">አንቀጽ</link>"
+msgid "Opens a submenu where you can modify the formatting of list paragraphs."
+msgstr ""
#. gYqLC
#: main0105.xhp
@@ -1132,13 +1132,13 @@ msgctxt ""
msgid "Title Page"
msgstr ""
-#. DyKLQ
+#. crAFH
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"par_id471602976213270\n"
"help.text"
-msgid "Opens submenu where you can design a title page."
+msgid "Opens a dialog where you can design a title page."
msgstr ""
#. QKypm
@@ -1168,13 +1168,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">አምዶች</link>"
-#. JThwL
+#. HtHdy
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id11602979335965\n"
"help.text"
-msgid "Watermark"
+msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Watermark</link>"
msgstr ""
#. QSMBC
@@ -1195,24 +1195,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Image</link>"
msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">ምስል</link>"
-#. fqUFz
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id881602977324204\n"
-"help.text"
-msgid "Text Box and Shape"
-msgstr ""
-
-#. 5XtDF
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"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 ""
-
#. FUiBn
#: main0105.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/00.po b/source/am/helpcontent2/source/text/swriter/00.po
index 3e778c3b33c..e82e7446538 100644
--- a/source/am/helpcontent2/source/text/swriter/00.po
+++ b/source/am/helpcontent2/source/text/swriter/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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2019-07-07 16:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1564,31 +1564,49 @@ msgctxt ""
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 ""
-#. JW9yE
+#. 4fpCB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "Choose <menuitem>Format - Paragraph - Outline & Numbering</menuitem> tab."
+msgid "Choose <menuitem>Format - Paragraph - Outline & List</menuitem> tab."
msgstr ""
-#. qWCzG
+#. q583F
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id231616224233651\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Paragraph - Outline & List</menuitem> tab."
+msgstr ""
+
+#. ExS89
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id41616224423602\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Edit Style - Outline & List</menuitem> tab."
+msgstr ""
+
+#. n5kFM
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154413\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Outline & Numbering</menuitem> tab (Paragraph Styles)."
+msgid "Choose <menuitem>Styles - Edit Style - Outline & List</menuitem> tab (Paragraph Styles)."
msgstr ""
-#. 7GJUj
+#. oVPyS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - Outline & Numbering</menuitem> tab (Paragraph Styles)."
+msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - List & Numbering</menuitem> tab (Paragraph Styles)."
msgstr ""
#. Rp3Q3
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index cc3479af697..648ffb99f27 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2018-12-09 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5380,13 +5380,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. 3FwA8
+#. wsww3
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then press <emph>Insert</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then, click <emph>Insert</emph>.</ahelp>"
msgstr ""
#. s7rfA
@@ -12058,14 +12058,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromheadings\">Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index.</ahelp>"
msgstr ""
-#. XavFH
+#. RfKn4
#: 04120211.xhp
msgctxt ""
"04120211.xhp\n"
"par_id1209200804373840\n"
"help.text"
-msgid "You can also assign the outline levels in the <link href=\"text/swriter/01/05030800.xhp\">Outline & Numbering</link> tab page of the Format - Paragraph dialog."
-msgstr "እርስዎ እንዲሁም መመደብ ይችላሉ በ <link href=\"text/swriter/01/05030800.xhp\"> ረቂቅ & ቁጥር መስጫ</link> tab ገጽ አቀራረብ - የ አንቀጽ ንግግር ውስጥ"
+msgid "You can also assign outline levels to paragraphs in the <link href=\"text/swriter/01/05030800.xhp\">Outline & List</link> tab page of the Format - Paragraph dialog."
+msgstr ""
#. y5UNJ
#: 04120211.xhp
@@ -16081,32 +16081,32 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">Select the formatting style that you want to apply to the drop caps.</ahelp> To use the formatting style of the current paragraph, select [None]."
msgstr "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">እርስዎ መጠቀም የሚፈልጉትን አቀራረብ አይነት ይምረጡ ለ መፈጸም ፊደል በትልቁ መጻፊያ </ahelp> የ አሁኑን የ አንቀጽ ዘዴ ለመጠቀም: ይምረጡ [ምንም]"
-#. 24MpG
+#. nWCDv
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"tit\n"
"help.text"
-msgid "Outline & Numbering"
-msgstr "እቅድ & ቁጥር መስጫ"
+msgid "Outline & List"
+msgstr ""
-#. muqGR
+#. Nprja
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3151173\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & Numbering</link>"
-msgstr "<link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">እቅድ & ቁጥር መስጫ</link>"
+msgid "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & List</link></variable>"
+msgstr ""
-#. Zue75
+#. x3BNB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, numbering, or bullets from the paragraph. You can also select the style of numbering to use, and reset the numbering in a numbered list.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">መጨመሪያ ወይንም ማስወገጃ የ እቅድ ደረጃ: ቁጥር መስጫ ወይንም ነጥቦች ከ አንቀጽ ውስጥ: እርስዎ እንዲሁም መምረጥ ይቻላሉ የ ቁጥር መስጫ ዘዴ የሚጠቀሙበትን: ቁጥር መስጫ እና እንደ ነበር ይመልሳል ቁጥር የ ተሰጣቸውን ዝርዝሮች </ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, list style, and line numbering from the paragraph or paragraph style. You can also restart or modify the start number for numbered lists and line numbering.</ahelp>"
+msgstr ""
#. qNyVD
#: 05030800.xhp
@@ -16162,22 +16162,22 @@ msgctxt ""
msgid "Numbering"
msgstr "ቁጥር መስጫ"
-#. UmpGx
+#. fFAFo
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3154188\n"
"help.text"
-msgid "Numbering Style"
-msgstr "የ ቁጥር መስጫ ዘዴ"
+msgid "List Style"
+msgstr ""
-#. WGB2B
+#. T2yMF
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> if you click the <emph>List Styles</emph> icon."
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">List Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) if you click the <emph>List Styles</emph> icon."
msgstr ""
#. MycJD
@@ -16198,22 +16198,22 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected numbering style.</ahelp> These properties will apply to all paragraphs formatted with the given numbering style."
msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">የ ተመረጠውን የ ቁጥር መስጫ ዘዴ ባህሪዎች ማረሚያ </ahelp> እነዚህ ባህሪዎች ይፈጸማሉ ለ ሁሉም አንቀጾች አቀራረብ የ ቁጥር መስጫ ዘዴ ለ ተሰጣቸው"
-#. dXFVa
+#. dxBEA
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3149195\n"
"help.text"
-msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering...</emph> to edit the outline level and numbering style."
+msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering</emph> to edit the outline level and numbering format."
msgstr ""
-#. GR3YW
+#. zBagB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3151117\n"
"help.text"
-msgid "Outline level and Numbering Style are independent of each other. Use <emph>Tools - Chapter Numbering...</emph> to assign numbering styles to paragraph styles."
+msgid "Outline level and List style are independent of each other. Use <emph>Tools - Chapter Numbering</emph> to assign a numbering format to paragraph styles used as headings in a document outline structure."
msgstr ""
#. 3KS2Y
@@ -22561,13 +22561,22 @@ msgctxt ""
msgid "Here you can create a List Style. The List Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window."
msgstr ""
-#. FZ2HA
+#. hVmyj
+#: 05130004.xhp
+msgctxt ""
+"05130004.xhp\n"
+"par_id317365356036\n"
+"help.text"
+msgid "When a List Style is created, a name is assigned to the style. The list style can be applied to paragraphs or assigned to a paragraph style in the Apply List Style section of the <link href=\"text/swriter/01/05030800.xhp\" name=\"ApplyListStyle\">Outline & List</link> tab."
+msgstr ""
+
+#. MU724
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"par_id3151390\n"
"help.text"
-msgid "When a List Style is created, a name is assigned to the style. Ordered lists use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>, and can be created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the icons of the <link href=\"text/swriter/main0206.xhp\" name=\"object bar\">object bar</link>."
+msgid "Ordered lists and unordered lists created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> and <link href=\"text/shared/02/06120000.xhp\" name=\"Toggle Unordered List\">Toggle Unordered List</link> icons of the <link href=\"text/swriter/main0202.xhp\" name=\"object bar\">Formatting</link> bar use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>. They are not list styles."
msgstr ""
#. UgisA
@@ -24604,49 +24613,40 @@ msgctxt ""
msgid "Chapter Numbering"
msgstr "ምእራፍ ቁጥር መስጫ"
-#. 483kg
+#. EWVsz
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Chapter Numbering"
-msgstr "ምእራፍ ቁጥር መስጫ"
+msgid "<variable id=\"ChapNumh1\"><link href=\"text/swriter/01/06060000.xhp\">Chapter Numbering</link></variable>"
+msgstr ""
-#. XxAe3
+#. bAdVd
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3145246\n"
"help.text"
-msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the number format and the hierarchy for chapter numbering in the current document.</ahelp></variable>"
-msgstr "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">የ ቁጥር አቀራረብ እና ቅደም ተከተል ለ ምእራፍ ቁጥር መስጫ በ አሁኑ ሰነድ ውስጥ </ahelp></variable>"
+msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the numbering scheme and outline format for chapter numbering in the current document.</ahelp></variable>"
+msgstr ""
-#. FqzZs
+#. PKJax
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "የ ምእራፍ መስጫ ረቂቅ የ ተገናኘ ነው ከ አንቀጽ ዘዴዎች ጋር: በ ነባር: የ \"ራስጌ\" አንቀጽ ዘዴዎች (1-10) የ ተመደቡት ከ ተመሳሳይ የ ረቂቅ ቁጥር ደረጃዎች ጋር ነው ከ (1-10): እርስዎ ከ ፈለጉ መመደብ ይችላሉ የ ተለየ የ አንቀጽ ዘዴዎች ለ ረቂቅ ቁጥር ደረጃ"
+msgid "Chapter numbering is achieved by assigning paragraph styles to outline levels, and a numbering scheme for each outline level. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline levels (1-10). You can use the dialog to assign a different paragraph style to an outline level."
+msgstr ""
-#. uuEEQ
+#. DpAKZ
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "እርስዎ ቁጥር የ ተሰጣቸው ራስጌዎች ከ ፈለጉ የ <emph> መሳሪያዎች - ምእራፍ ቁጥር መስጫ </emph> ዝርዝር ትእዛዝ የ ቁጥር መስጫ ለ መመደብ ወደ አንቀጽ ዘዴ ውስጥ: የ ቁጥር መስጫ ምልክት አይጠቀሙ: ከ እቃ መደርደሪያ አቀራረብ ውስጥ"
-
-#. GBEmb
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3147567\n"
-"help.text"
-msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View - Field Shadings</emph>."
+msgid "<variable id=\"chapter_numbering_tip\">If you want numbered headings, choose <menuitem>Tools - </menuitem><link name=\"chapternumbering\" href=\"text/swriter/01/06060000.xhp#ChapNumh1\"><menuitem>Chapter Numbering</menuitem></link>. This command opens a dialog where numbering schemes can be assigned to paragraph styles used for headings. Do not use the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> icon on the <link href=\"text/swriter/main0202.xhp\" name=\"FormattingBar\">Formatting Bar</link> or the <menuitem>Format - </menuitem><link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><menuitem>Bullets and Numbering</menuitem></link> dialog.</variable>"
msgstr ""
#. DFbiG
@@ -24658,22 +24658,22 @@ msgctxt ""
msgid "Load/Save"
msgstr "መጫኛ/ማስቀመጫ"
-#. YUER3
+#. 4jFGn
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to load into other text documents.</ahelp>"
msgstr ""
-#. Eoxwy
+#. DkYUj
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Load/Save</emph> button is only available for chapter numbering. For numbered or bulleted list styles, modify the numbering styles of the paragraphs."
+msgid "The <widget>Load/Save</widget> button is only available for chapter numbering. Use List styles to save formatting for ordered or unordered lists."
msgstr ""
#. EV2DT
@@ -24685,14 +24685,14 @@ msgctxt ""
msgid "Untitled 1 - 9"
msgstr "ያልተሰየመ 1 - 9"
-#. tbyhC
+#. GEBee
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150350\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select the predefined numbering style that you want to assign to the selected outline level.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">በ ቅድሚያ የ ተገለጸ ቁጥር መስጫ ዘዴ ይምረጡ: እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው የ ረቂቅ ደረጃ </ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select a predefined numbering format.</ahelp> Save your own predefined numbering formats using <emph>Save As</emph>."
+msgstr ""
#. NoHGV
#: 06060000.xhp
@@ -24703,32 +24703,14 @@ msgctxt ""
msgid "Save As"
msgstr "ማስቀመጫ እንደ"
-#. LsqXh
+#. bwJgP
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">ንግግር መክፈቻ እርስዎ የሚያስቀምጡበት: የ አሁኑን ማሰናጃ ለ ተመረጠው የ ረቂቅ ደረጃ: ስለዚህ እርስዎ ይህን ማሰናጃ መጫን ይችላሉ ከ ሌላ ሰነድ ውስጥ </ahelp>"
-
-#. G6SB9
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"hd_id3149689\n"
-"help.text"
-msgid "Save As"
-msgstr "ማስቀመጫ እንደ"
-
-#. Uq3CL
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3154200\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numberingnamedialog/form\">Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/numberingnamedialog/form\">ይጫኑ የ ቁጥር መስጫ ዘዴ ከ ዝርዝር ውስጥ: እና ከዛ ያስገቡ የ ዘዴውን ስም: የ ቁጥር ደረጃ ረቂቅ ተስማሚ ይፈጸማል ለ </ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current numbering and position settings for all levels. Saved settings are available to load into other documents.</ahelp>"
+msgstr ""
#. G9Fz2
#: 06060100.xhp
@@ -24766,13 +24748,13 @@ msgctxt ""
msgid "Level"
msgstr "ደረጃ"
-#. EBZSv
+#. kFsmA
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
msgstr ""
#. s4LDs
@@ -24802,14 +24784,14 @@ msgctxt ""
msgid "Paragraph Style"
msgstr "የ አንቀጽ ዘዴ"
-#. EXNSB
+#. KQMUB
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">ይምረጡ የ አንቀጽ ዘዴ እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው የ ምእራፍ እና ረቂቅ ደረጃ </ahelp> እርስዎ ከ ተጫኑ \"ምንም\": የ ተመረጠው ረቂቅ ደረጃ አይገለጽም"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#. 2Ko3X
#: 06060100.xhp
@@ -24820,14 +24802,14 @@ msgctxt ""
msgid "Number"
msgstr "ቁጥር"
-#. sayxC
+#. Ve6Gs
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3156319\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering style that you want to apply to the selected outline level.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">እርስዎ መጠቀም የሚፈልጉትን የ ቁጥር መስጫ ዘዴ ይምረጡ ለ ተመረጠው የ ረቂቅ ደረጃ </ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering scheme that you want to apply to the selected outline level.</ahelp>"
+msgstr ""
#. uCj2F
#: 06060100.xhp
@@ -24847,6 +24829,24 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>መግለጫ</emph>"
+#. AoxBN
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3155899\n"
+"help.text"
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
+
+#. rDEQw
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154191\n"
+"help.text"
+msgid "Arabic numerals"
+msgstr "የ አረብኛ ቁጥሮች"
+
#. aMCaW
#: 06060100.xhp
msgctxt ""
@@ -24919,24 +24919,6 @@ msgctxt ""
msgid "Roman numerals (lower)"
msgstr "የ ሮማውያን ቁጥር (በ ታችኛው ጉዳይ)"
-#. AoxBN
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3155899\n"
-"help.text"
-msgid "1, 2, 3, ..."
-msgstr "1, 2, 3, ..."
-
-#. rDEQw
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154191\n"
-"help.text"
-msgid "Arabic numerals"
-msgstr "የ አረብኛ ቁጥሮች"
-
#. cihkt
#: 06060100.xhp
msgctxt ""
@@ -25000,14 +24982,14 @@ msgctxt ""
msgid "Character Style"
msgstr "የ ባህሪ ዘዴ"
-#. xjBZC
+#. h5uaa
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3147224\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the format of the numbering character.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">የ ቁጥር መስጫ ባህሪውን አቀራረብ ይምረጡ</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the character style of the numbering character.</ahelp>"
+msgstr ""
#. bkGnf
#: 06060100.xhp
@@ -26611,14 +26593,14 @@ msgctxt ""
msgid "Line Numbering"
msgstr "መስመር ቁጥር መስጫ"
-#. ca98d
+#. ZDVZ9
#: 06180000.xhp
msgctxt ""
"06180000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <emph>Format - Paragraph</emph>, click the <emph>Numbering </emph>tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
-msgstr "<variable id=\"zeinum\">የ መስመር ቁጥር አቀራረብ መጨመሪያ ወይንም ማስወገጃ በ አሁኑ ሰነድ ውስጥ: የ አንቀጽ ቁጥር መስጫ ላለማካተት: ይጫኑ በ አንቀጽ ውስጥ: እና ይምረጡ <emph> አቀራረብ – አንቀጽ </emph> ይጫኑ የ <emph> ቁጥር መስጫ </emph> tab እና ከዛ ያጽዱ <emph> ይህን አንቀጽ በ ቁጥር መስጫ ውስጥ ማካተቻ </emph> ምልክት ማድረጊያ ሳጥን </variable> እርስዎ እንዲሁም አለማካተት ይችላሉ የ አንቀጽ ዘዴ ከ ቁጥር መስጫ ጋር"
+msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <menuitem>Format - Paragraph</menuitem>, click the <emph>Outline & List</emph> tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
+msgstr ""
#. GcdFF
#: 06180000.xhp
@@ -27088,50 +27070,32 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
msgstr ""
-#. 4qVPZ
+#. YwkE4
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"tit\n"
"help.text"
-msgid "Object"
-msgstr "እቃ"
+msgid "Text Box and Shape"
+msgstr ""
-#. 2vkco
+#. 5XTkz
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/swriter/01/format_object.xhp\">Object</link>"
-msgstr "<link href=\"text/swriter/01/format_object.xhp\">እቃ</link>"
+msgid "<link href=\"text/swriter/01/format_object.xhp\">Text Box and Shape</link>"
+msgstr ""
-#. ev5DK
+#. RfLw2
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">ለ ተመረጠው እቃ ባህሪዎች ለማረም ንዑስ ዝርዝር መክፈቻ </ahelp>"
-
-#. QNeGm
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"hd_id1863460\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Text Attributes</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\">የ ጽሁፍ ባህሪዎች</link>"
-
-#. vqJQ9
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"par_id3542588\n"
-"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "ረቂቅ ማሰናጃ እና ባህሪዎች ማስቆሚያ ለ ጽሁፍ በ ተመረጠው መሳያ ወይንም የ ጽሁፍ እቃ ውስጥ"
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected textbox or shape.</ahelp>"
+msgstr ""
#. UWnvc
#: format_object.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/02.po b/source/am/helpcontent2/source/text/swriter/02.po
index a897dd11278..ec9c0aa5f24 100644
--- a/source/am/helpcontent2/source/text/swriter/02.po
+++ b/source/am/helpcontent2/source/text/swriter/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2017-11-23 23:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,23 +16,23 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511479189.000000\n"
-#. SGjBV
+#. sqxGb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering on/off"
-msgstr "ቁጥር መስጫ ማብሪያ/ማጥፊያ"
+msgid "Toggle Ordered List"
+msgstr ""
-#. ACieD
+#. z8hCm
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150220\n"
"help.text"
-msgid "<link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Numbering On/Off</link>"
-msgstr "<link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">ቁጥር መስጫ ማብሪያ/ማጥፊያ</link>"
+msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Toggle Ordered List</link></variable>"
+msgstr ""
#. 7QYre
#: 02110000.xhp
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">Web Layout</link>."
msgstr "አንዳንድ የ ነጥቦች እና ቁጥር መስጫ ምርጫዎች ዝግጁ አይደሉም በሚሰሩ ጊዜ በ <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">ዌብ እቅድ ውስጥ</link>."
-#. dARXh
+#. dwn77
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150502\n"
"help.text"
-msgid "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150508\" src=\"cmd/lc_defaultnumbering.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150508\">Toggle Ordered List Icon</alt></image>"
+msgstr ""
-#. Xfqcn
+#. yYfzC
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Numbering On/Off"
-msgstr "ቁጥር መስጫ ማብሪያ/ማጥፊያ"
+msgid "Toggle Ordered List"
+msgstr ""
#. fVWig
#: 02110000.xhp
@@ -502,50 +502,59 @@ msgctxt ""
msgid "Sum"
msgstr "ድምር"
-#. 4a76q
+#. GqFYN
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering Off"
-msgstr "ቁጥር መስጫው ጠፍቷል"
+msgid "No List"
+msgstr ""
-#. hAqDK
+#. wCBAJ
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"hd_id3145822\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">Numbering Off</link>"
-msgstr "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">ቁጥር መስጫው ጠፍቷል</link>"
+msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">No List</link>"
+msgstr ""
-#. i8F2B
+#. MPBzT
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3154505\n"
"help.text"
-msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Turns off numbering or bullets in the current paragraph or selected paragraphs.</ahelp>"
-msgstr "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">በአሁኑ አንቀጽ ወይንም በተመረጡት አንቀጾች ውስጥ የቁጥር መስጫ ወይንም ነጥቦችን ማጥፊያ</ahelp>"
+msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Removes numbering or bullets and list indenting for the current paragraph or selected paragraphs.</ahelp>"
+msgstr ""
-#. p6pTC
+#. LDHCy
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3151177\n"
"help.text"
-msgid "<image src=\"cmd/sc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon Numbering Off</alt></image>"
+msgid "<image src=\"cmd/lc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon No List</alt></image>"
msgstr ""
-#. tfm6a
+#. iNFhx
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "Numbering Off"
-msgstr "ቁጥር መስጫው ጠፍቷል"
+msgid "No List"
+msgstr ""
+
+#. 5FX23
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id811614270889392\n"
+"help.text"
+msgid "To preserve indenting, but remove bullet or number, place cursor at the beginning of the paragraph and press <keycode>Backspace</keycode>."
+msgstr ""
#. MZn4T
#: 06070000.xhp
@@ -790,14 +799,41 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06140000.xhp\" name=\"Restart Numbering\">Restart Numbering</link>"
msgstr "<link href=\"text/swriter/02/06140000.xhp\" name=\"Restart Numbering\">ቁጥር መስጫውን እንደገና ማስጀመሪያ</link>"
-#. tRqAn
+#. iwJHH
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id3145249\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts the text numbering.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">የ ጽሁፍ ቁጥር መስጫ እንደገና ማስጀመሪያ</ahelp> ይህ የሚታየው መጠቆሚያውን በ ቁጥር መስጫው ወይንም ነጥብ የተደረገባቸው ጽሁፍ ላይ ሲያደርጉ ብቻ ነው"
+msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts list numbering from 1.</ahelp> This command is only active when the cursor is positioned within a list."
+msgstr ""
+
+#. 89Xm9
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id631616370838434\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Restart Numbering</menuitem>."
+msgstr ""
+
+#. fh5aw
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id31616370717930\n"
+"help.text"
+msgid "Place cursor in a list paragraph, right-click and choose <menuitem>List - Restart Numbering</menuitem>."
+msgstr ""
+
+#. RgibL
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id351616370727010\n"
+"help.text"
+msgid "On <link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><emph>Bullets and Numbering</emph></link> bar, click"
+msgstr ""
#. SLjuC
#: 06140000.xhp
@@ -817,6 +853,24 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "ቁጥር መስጫውን እንደገና ማስጀመሪያ"
+#. DmEY6
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id761616370463787\n"
+"help.text"
+msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
+msgstr ""
+
+#. bEE4F
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id261616371203225\n"
+"help.text"
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - </menuitem><embedvar href=\"textswriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgstr ""
+
#. qCdhk
#: 08010000.xhp
msgctxt ""
@@ -3814,6 +3868,213 @@ msgctxt ""
msgid "Text Animation"
msgstr "ተንቀሳቃሽ ጽሁፍ"
+#. RajEo
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. mjGvU
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"bm_id1001616018043189\n"
+"help.text"
+msgid "<bookmark_value>Add to List</bookmark_value><bookmark_value>Lists;merging</bookmark_value>"
+msgstr ""
+
+#. X8yaz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id711614068729277\n"
+"help.text"
+msgid "<variable id=\"addtolisth1\"><link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\">Add to List</link></variable>"
+msgstr ""
+
+#. kM6AJ
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id231614069215429\n"
+"help.text"
+msgid "Include selected paragraphs, whether a list item or not, as part of a list."
+msgstr ""
+
+#. pxcFF
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151614079148636\n"
+"help.text"
+msgid "<variable id=\"howtogetaddtolist\">Choose <menuitem>Format - Lists - Add to List</menuitem></variable>."
+msgstr ""
+
+#. PUsxs
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631614079159620\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Add to List</menuitem>."
+msgstr ""
+
+#. Zb43J
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151615752168785\n"
+"help.text"
+msgid "<variable id=\"toolbar\">On <menuitem>Bullets and Numbering</menuitem> bar, click <emph>Add to List</emph> icon.</variable>"
+msgstr ""
+
+#. ViA36
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id651615752040364\n"
+"help.text"
+msgid "<image src=\"cmd/lc_continuenumbering.png\" id=\"img_id981615752040364\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761615752040364\">Add to List Icon</alt></image>"
+msgstr ""
+
+#. hxMDa
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id51615752040365\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. 6kruw
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id711616001147778\n"
+"help.text"
+msgid "The list labeling and indent formatting are applied to the selected paragraphs. The position of the paragraphs in the document does not change."
+msgstr ""
+
+#. pADj5
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id851614072896370\n"
+"help.text"
+msgid "Add Selected Paragraphs to a List"
+msgstr ""
+
+#. FGi4A
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id491615988072533\n"
+"help.text"
+msgid "Select paragraphs, whether in a list or not, to be added to a list."
+msgstr ""
+
+#. smjtz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id271615998908234\n"
+"help.text"
+msgid "For multiple selections, press and hold the <keycode> Ctrl</keycode> key after the first selection. The <keycode>Ctrl</keycode> key can be released without losing the selections, but must be pressed when clicking in the document."
+msgstr ""
+
+#. gwgyD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id551615985719902\n"
+"help.text"
+msgid "Press and hold the <keycode>Ctrl</keycode> key, then place cursor in the list."
+msgstr ""
+
+#. 3VT7j
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id901615999151001\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. qPKKN
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id141615979735757\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#howtogetaddtolist\"/>"
+msgstr ""
+
+#. FADNr
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id961614073544958\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#toolbar\"/>"
+msgstr ""
+
+#. D98D9
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id161615999749854\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click, choose <menuitem>List - Add to List</menuitem>.</variable> To preserve the selection, at least one character must be selected in the list."
+msgstr ""
+
+#. qFmgS
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id861614074931979\n"
+"help.text"
+msgid "This procedure works for ordered and unordered lists."
+msgstr ""
+
+#. L9RdM
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id441616017998739\n"
+"help.text"
+msgid "Add Consecutive List Entries to an Immediately Prior List"
+msgstr ""
+
+#. GJuBD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631616018294373\n"
+"help.text"
+msgid "Select one or more consecutive list entries, starting from the first entry, that you want to add to the immediately prior list."
+msgstr ""
+
+#. g9LRR
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id621616018340980\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#rightclick\"/>"
+msgstr ""
+
+#. p9hUv
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id811616018796902\n"
+"help.text"
+msgid "Use this procedure to combine two lists."
+msgstr ""
+
#. JsrhA
#: word_count_stb.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/04.po b/source/am/helpcontent2/source/text/swriter/04.po
index 5f95f4a2eb0..0fdae66463f 100644
--- a/source/am/helpcontent2/source/text/swriter/04.po
+++ b/source/am/helpcontent2/source/text/swriter/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-03-13 12:06+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2017-11-05 18:10+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -529,14 +529,14 @@ msgctxt ""
msgid "F12"
msgstr "F12"
-#. S2S9J
+#. jiXFc
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3148959\n"
"help.text"
-msgid "Numbering on"
-msgstr "ቁጥር መስጫ በርቷል"
+msgid "Toggle Ordered List"
+msgstr ""
#. wAUBd
#: 01020000.xhp
@@ -565,14 +565,14 @@ msgctxt ""
msgid "Shift+F12"
msgstr "Shift+F12"
-#. iuAiR
+#. fkbSD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3152763\n"
"help.text"
-msgid "Bullets on"
-msgstr "ነጥቦች በርተዋል"
+msgid "Toggle Unordered List"
+msgstr ""
#. pneN5
#: 01020000.xhp
@@ -583,14 +583,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F12"
-#. dGgoN
+#. E9pG5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153901\n"
"help.text"
-msgid "Numbering / Bullets off"
-msgstr "ቁጥር መስጫ / ነጥቦች ማጥፊያ"
+msgid "Ordered / Unordered List off"
+msgstr ""
#. HyF9c
#: 01020000.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index e397727e570..d6f15c471b1 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+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"
@@ -3031,14 +3031,14 @@ msgctxt ""
msgid "<bookmark_value>captions; adding chapter numbers</bookmark_value> <bookmark_value>objects; captioning automatically</bookmark_value> <bookmark_value>numbering; captions</bookmark_value> <bookmark_value>automatic numbering;of objects</bookmark_value> <bookmark_value>chapter numbers in captions</bookmark_value> <bookmark_value>inserting;chapter numbers in captions</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>"
-#. GfPV7
+#. xAnbA
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"hd_id3147684\n"
"help.text"
-msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link> </variable>"
-msgstr "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">የ ምእራፍ ቁጥር መጨመሪያ ለ መግለጫው</link> </variable>"
+msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link></variable>"
+msgstr ""
#. 5efvj
#: captions_numbers.xhp
@@ -3076,14 +3076,14 @@ msgctxt ""
msgid "Choose <emph>Insert - Caption</emph>."
msgstr "ይምረጡ <emph> ማስገቢያ - መግለጫ </emph>"
-#. UpjLH
+#. 4Js6V
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "Select a caption title from the <item type=\"menuitem\">Category</item> box, and select a numbering style in the <item type=\"menuitem\">Numbering</item> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <item type=\"menuitem\">Caption</item> box."
-msgstr "ይምረጡ የ መግለጫ አርእስት ከ <item type=\"menuitem\"> ምድብ </item> ሳጥን ውስጥ እና ይምረጡ የ ቁጥር መስጫ ዘዴ በ <item type=\"menuitem\"> ቁጥር መስጫ </item> ሳጥን ውስጥ <br/>እንዲሁም የ ጽሁፍ መግለጫ በዚህ ንግግር ሳጥን ውስጥ: ማስገባት ከፈለጉ ጽሁፍ በ <item type=\"menuitem\"> መግለጫ </item> ሳጥን ውስጥ"
+msgid "Select a caption title from the <menuitem>Category</menuitem> box, and select a numbering scheme in the <menuitem>Numbering</menuitem> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <menuitem>Caption</menuitem> box."
+msgstr ""
#. H329F
#: captions_numbers.xhp
@@ -3319,32 +3319,32 @@ msgctxt ""
msgid "To Add Automatic Numbering to a Heading Style"
msgstr "ለ ራስጌ ዘዴ ራሱ በራሱ ቁጥር መስጫ መጨመሪያ"
-#. Dxqw8
+#. Q2Dq4
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - የ ምእራፍ መስጫ </item> እና ከዛ ይጫኑ <item type=\"menuitem\"> የ ቁጥር መስጫ </item> tab."
+msgid "Choose <menuitem>Tools - Chapter Numbering</menuitem>, and then click the <menuitem>Numbering</menuitem> tab."
+msgstr ""
-#. 8RDya
+#. UuWGT
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155891\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Paragraph Style</item> box, select the heading style that you want to add chapter numbers to."
-msgstr "ከ <item type=\"menuitem\"> አንቀጽ ዘዴ </item> ሳጥን ውስጥ: ይምረጡ የ ራስጌ ዘዴዎች ቁጥር መጨመር ለሚፈልጉት ምእራፍ"
+msgid "In the <menuitem>Paragraph style</menuitem> box, select the heading style that you want to add chapter numbers to."
+msgstr ""
-#. dGoy7
+#. EZW6q
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3150513\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Numbers</item> box, select the numbering style that you want to use, and then click <item type=\"menuitem\">OK</item>."
-msgstr "ከ <item type=\"menuitem\"> ቁጥሮች </item> ሳጥን ውስጥ ይምረጡ መጠቀም የሚፈልጉትን የ ቁጥር መስጫ ዘዴ እና ከዛ ይጫኑ <item type=\"menuitem\"> እሺ </item>"
+msgid "In the <menuitem>Number</menuitem> box, select the numbering scheme that you want to use, and then click <menuitem>OK</menuitem>."
+msgstr ""
#. EChDL
#: chapter_numbering.xhp
@@ -3364,14 +3364,23 @@ msgctxt ""
msgid "Click at the beginning of the text in the heading paragraph, after the number."
msgstr "ይጫኑ ከ ጽሁፉ መጀመሪያው ፊት ለፊት በ አንቀጽ ራስጌ ውስጥ ከ ቁጥሩ በኋላ"
-#. ZbJV9
+#. ABejd
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107D9\n"
"help.text"
-msgid "Press the Backspace key to delete the number."
-msgstr "የ ኋሊት ደምሳሽ ቁልፍን ይጫኑ ቁጥሩን ለማጥፋት"
+msgid "Press the <keycode>Backspace</keycode> key to delete the number."
+msgstr ""
+
+#. ycK3V
+#: chapter_numbering.xhp
+msgctxt ""
+"chapter_numbering.xhp\n"
+"par_id441614161571912\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> with the cursor at the beginning of the heading to return the number."
+msgstr ""
#. itdUu
#: chapter_numbering.xhp
@@ -5470,14 +5479,14 @@ msgctxt ""
msgid "Click 'Page' in the <emph>Type</emph> list and 'Next page' in the <emph>Select</emph> list."
msgstr "ይጫኑ 'ገጽ' በ <emph>አይነት</emph> ውስጥ እና 'የሚቀጥለው ገጽ' በ <emph>መምረጫው</emph> ዝርዝር ውስጥ"
-#. 4Y7oL
+#. gWQDr
#: footer_nextpage.xhp
msgctxt ""
"footer_nextpage.xhp\n"
"par_id3150517\n"
"help.text"
-msgid "Click a numbering style in the <item type=\"menuitem\">Format</item> list."
-msgstr "ይጫኑ ቁጥር መስጫ በ <item type=\"menuitem\">አቀራረብ</item> ዝርዝር ውስጥ"
+msgid "Click a numbering scheme in the <menuitem>Format</menuitem> list."
+msgstr ""
#. 9YJwh
#: footer_nextpage.xhp
@@ -6937,14 +6946,14 @@ msgctxt ""
msgid "To Create a Paragraph Style for Chapter Titles"
msgstr "የ አንቀጽ ዘዴ ለመፍጠር ለ ምእራፍ አርእስቶች"
-#. 8ScLd
+#. caxXE
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - የ ምእራፍ ቁጥር </item>"
+msgid "Choose <menuitem>Tools - Chapter Numbering.</menuitem>"
+msgstr ""
#. B8P3C
#: header_with_chapter.xhp
@@ -6955,14 +6964,14 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">Style</item> box, select the paragraph style that you want to use for chapter titles, for example, \"Heading 1\"."
msgstr "በ <item type=\"menuitem\">ዘዴ</item> ሳጥን ውስጥ ይምረጡ የ አንቀጽ ዘዴ መጠቀም የሚፈልጉትን ለ ምእራፍ አርእስት ለ ምሳሌ \"ራስጌ 1\":"
-#. u3oNh
+#. LoZJ2
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3147124\n"
"help.text"
-msgid "Select the numbering style for the chapter titles in the <item type=\"menuitem\">Number</item> box, for example, \"1,2,3...\"."
-msgstr "የ ቁጥር መስጫ ዘዴ ይምረጡ ለ ምእራፍ አርእስቶች በ <item type=\"menuitem\">ቁጥር</item> ሳጥን ውስጥ ለ ምሳሌ \"1,2,3...\":"
+msgid "Select the numbering scheme for the chapter titles in the <menuitem>Number</menuitem> box, for example, \"1,2,3...\"."
+msgstr ""
#. AHCua
#: header_with_chapter.xhp
@@ -7774,14 +7783,14 @@ msgctxt ""
msgid "Position the cursor at the place where no hyphenation should occur."
msgstr "መጠቆሚያውን ጭረት በማይገባበት ቦታ ያድርጉ"
-#. pciJs
+#. eFYEG
#: hyphen_prevent.xhp
msgctxt ""
"hyphen_prevent.xhp\n"
"par_id0302200910262867\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Formatting Mark - No-width no break</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - የ ምልክት አቀራረብ - ስፋት-የለም መጨረሻ የለም </item>"
+msgid "Choose <menuitem>Insert - Formatting Mark - Word Joiner</menuitem>."
+msgstr ""
#. 6u4r9
#: hyphen_prevent.xhp
@@ -8926,22 +8935,22 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "ይጫኑ <emph> እሺ </emph>"
-#. A74Fc
+#. FiGft
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
-msgstr "እርስዎ መጠቀም ከ ፈለጉ የ ተለየ የ አንቀጽ ዘዴ እንደ ሰንጠረዥ ማውጫ ማስገቢያ: ይምረጡ የ <item type=\"menuitem\"> ተጨማሪ ዘዴዎች </item> ምልክት ማድረጊያ ሳጥን ውስጥ የ <item type=\"menuitem\"> መፍጠሪያ ከ </item> ቦታ ውስጥ: እና ከዛ ይጫኑ ከ <item type=\"menuitem\"></item> ምልክት ማድረጊያው ሳጥን አጠገብ ያለውን ቁልፍ ከ <item type=\"menuitem\"> መመደቢያ ዘዴዎች </item> ንግግር ውስጥ: ይጫኑ ከ ዘዴ ዝርዝር ውስጥ እና ከዛ ይጫኑ የ <item type=\"menuitem\">>></item> ወይንም የ <item type=\"menuitem\"><<</item> ቁልፍ የ ምእራፍ ደረጃ ለ አንቀጽ ዘዴ ለ መግለጽ"
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <menuitem>Additional Styles</menuitem> check box in the <menuitem>Create from</menuitem> area, and then click the <menuitem>Assign styles</menuitem> button next to the check box. In the <menuitem>Assign Styles</menuitem> dialog, click the style in the list, and then click the <menuitem>>></menuitem> or the <menuitem><<</menuitem> button to define the outline level for the paragraph style."
+msgstr ""
-#. a7Nyb
+#. mXE4E
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id1001574720273772\n"
"help.text"
-msgid "%PRODUCTNAME creates the table of contents entries based on the chapter level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
+msgid "%PRODUCTNAME creates the table of contents entries based on the outline level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
msgstr ""
#. Fdoe5
@@ -9619,32 +9628,32 @@ msgctxt ""
msgid "<bookmark_value>numbering; combining</bookmark_value> <bookmark_value>merging;numbered lists</bookmark_value> <bookmark_value>joining;numbered lists</bookmark_value> <bookmark_value>lists;combining numbered lists</bookmark_value> <bookmark_value>paragraphs;numbering non-consecutive</bookmark_value>"
msgstr "<bookmark_value>ቁጥር መስጫ: መቀላቀያ</bookmark_value> <bookmark_value>ማዋሀጃ: ቁጥር የተሰጣቸውን ዝርዝሮች</bookmark_value> <bookmark_value>ማጋጠሚያ: ቁጥር የተሰጣቸውን ዝርዝሮች</bookmark_value> <bookmark_value>ዝርዝሮች: መቀላቀያ ቁጥር የተሰጣቸውን ዝርዝሮች</bookmark_value> <bookmark_value>አንቀጾች: ቁጥር መስጫ ምንም-የማይከታተል</bookmark_value>"
-#. aUM78
+#. uwK2S
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3150495\n"
"help.text"
-msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Numbered Lists</link></variable>"
-msgstr "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">ቁጥር የተሰጣቸውን ዝርዝሮች መቀላቀያ</link></variable>"
+msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Ordered Lists</link></variable>"
+msgstr ""
-#. ygDg8
+#. kFGF5
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3149692\n"
"help.text"
-msgid "You can combine numbered lists into a single consecutively numbered list."
-msgstr "ቁጥር የተሰጣቸውን ዝርዝሮች መቀላቀል ይችላሉ ወደ ተከታታይ ቁጥር የተሰጣቸው ዝርዝር"
+msgid "You can combine two ordered lists into a single list."
+msgstr ""
-#. G4bPG
+#. 2mCAG
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3149452\n"
"help.text"
-msgid "To Combine Consecutive Numbered Lists"
-msgstr "ተከታታይ ቁጥር የተሰጣቸውን ዝርዝሮች ለ መቀላቀል"
+msgid "To Combine Two Ordered Lists"
+msgstr ""
#. e25XR
#: join_numbered_lists.xhp
@@ -9655,23 +9664,23 @@ msgctxt ""
msgid "Select all of the paragraphs in the lists."
msgstr "ከ ዝርዝሮች ውስጥ አንቀጾችን ይምረጡ"
-#. FnnAw
+#. wTYyb
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3155911\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\"> ቁጥር መስጫ ማብሪያ/ማጥፊያ </item> ምልክት ሁለት ጊዜ ይጫኑ"
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
+msgstr ""
-#. huoiN
+#. yCERR
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3155870\n"
"help.text"
-msgid "To Create a Numbered List From Non-consecutive Paragraphs:"
-msgstr "ቁጥር የተሰጣቸው ዝርዝር ለ መፍጠር ከ ምንም-ተከታታይ ላልሆኑ አንቀጾች:"
+msgid "To Create a Ordered List From Non-consecutive Paragraphs"
+msgstr ""
#. 3fmSg
#: join_numbered_lists.xhp
@@ -9691,14 +9700,23 @@ msgctxt ""
msgid "Continue to hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and drag a selection in each numbered paragraph of the lists you want to combine."
msgstr ""
-#. mLFjo
+#. RaZCA
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3145102\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ይጫኑ የ <item type=\"menuitem\"> ቁጥር መስጫ ማብሪያ/ማጥፊያ </item> ምልክት ሁለት ጊዜ ይጫኑ"
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
+msgstr ""
+
+#. RNYoM
+#: join_numbered_lists.xhp
+msgctxt ""
+"join_numbered_lists.xhp\n"
+"par_id751615828987862\n"
+"help.text"
+msgid "To add selected paragraphs to an existing list, use <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
+msgstr ""
#. rDMRb
#: jump2statusbar.xhp
@@ -10654,14 +10672,14 @@ msgctxt ""
msgid "All paragraph styles are based on the \"Default\" style."
msgstr "ሁሉንም የ አንቀጽ ዘዴዎች መሰረት ያደረጉት የ \"ነባር\" ዘዴ ነው"
-#. zxroA
+#. 6Bnc6
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150931\n"
"help.text"
-msgid "Click the <emph>Outline & Numbering</emph> tab."
-msgstr "ይጫኑ የ <emph> እቅድ & ቁጥር መስጫ </emph> tab."
+msgid "Click the <emph>Outline & List</emph> tab."
+msgstr ""
#. kfFgy
#: numbering_lines.xhp
@@ -10744,14 +10762,14 @@ msgctxt ""
msgid "Click in a paragraph."
msgstr "አንቀጹ ላይ ይጫኑ"
-#. En2MK
+#. pvF59
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150721\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Outline & Numbering</item> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - አንቀጽ </item> እና ከዛ ይጫኑ የ <item type=\"menuitem\"> እቅድ & ቁጥር መስጫ </item> tab."
+msgid "Choose <menuitem>Format - Paragraph</menuitem>, and then click the <menuitem>Outline & List</menuitem> tab."
+msgstr ""
#. DB5Bp
#: numbering_lines.xhp
@@ -10798,14 +10816,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">Tools - Line Numbering</link>"
msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">መሳሪያዎች - መስመር ቁጥር መስጫ</link>"
-#. y2EtS
+#. PG4ys
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Format - Paragraph - Numbering\">Format - Paragraph - Numbering</link>"
-msgstr "<link href=\"text/swriter/01/05030800.xhp\" name=\"Format - Paragraph - Numbering\">አቀራረብ - አንቀጽ - ቁጥር መስጫ</link>"
+msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
+msgstr ""
#. foq8S
#: numbering_lines.xhp
@@ -10816,14 +10834,14 @@ msgctxt ""
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">የ ዊኪ ገጽ ስለ አንቀጾች ቁጥር መስጫ ዘዴ </link>"
-#. PngCd
+#. EQANu
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"tit\n"
"help.text"
-msgid "Modifying Numbering in a Numbered List"
-msgstr "ቁጥር የተሰጣቸውን ዝርዝር ቁጥር መስጫ ማሻሻያ"
+msgid "Modifying Numbering in an Ordered List"
+msgstr ""
#. CZCFE
#: numbering_paras.xhp
@@ -10834,41 +10852,32 @@ msgctxt ""
msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</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>"
-#. vsLZ8
+#. wER6G
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3149637\n"
"help.text"
-msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in a Numbered List</link></variable>"
-msgstr "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">ቁጥር የተሰጣቸውን ዝርዝር ቁጥር መስጫ ማሻሻያ</link></variable>"
+msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in an Ordered List</link></variable>"
+msgstr ""
-#. UkDzC
+#. eP9Ei
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3145092\n"
"help.text"
-msgid "You can remove the numbering from a paragraph in a numbered list or change the number that a numbered list starts with."
-msgstr "እርስዎ ከ አንቀጽ ውስጥ የ ቁጥር መስጫ ማስወገድ ይችላሉ ከ ቁጥር መስጫ ዝርዝር ውስጥ: ወይንም መቀየር ቁጥር የ ቁጥር አሰጣጥ የሚጀምርበትን"
-
-#. 4arAA
-#: numbering_paras.xhp
-msgctxt ""
-"numbering_paras.xhp\n"
-"par_id2172612\n"
-"help.text"
-msgid "If you want numbered headings, use the <menuitem>Tools - Chapter Numbering</menuitem> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "You can remove the numbering from a paragraph in an ordered list or change the number that an ordered list starts with."
msgstr ""
-#. XdFDM
+#. o2d3C
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3145107\n"
"help.text"
-msgid "To Remove the Number From a Paragraph in a Numbered List"
-msgstr "ቁጥር የተሰጣቸውን ዝርዝር ከ አንቀጽ ውስጥ ቁጥር መስጫ ለማስወገድ"
+msgid "To Remove the Number From a Paragraph in an Ordered List"
+msgstr ""
#. Bdddz
#: numbering_paras.xhp
@@ -10897,32 +10906,32 @@ msgctxt ""
msgid "To remove the number while preserving the indent of the paragraph, press the Backspace key."
msgstr "ቁጥሩን ለ ማጥፋት ማስረጊያውን ግን ለ መጠበቅ በ አንቀጽ ውስጥ የ ኋሊት ደምሳሽ ቁልፍን ይጠቀሙ"
-#. vpCsg
+#. cszDd
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "To remove the number and the indent of the paragraph, click the <emph>Numbering on/off</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
-msgstr "ቁጥር እና የ አንቀጽ ማስረጊያ ለማጥፋት: ይጫኑ የ <emph> ቁጥር መስጫ ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> አቀራረብ </emph> መደርደሪያ ላይ: እርስዎ ሰነድ ካስቀመጡ በ HTML አቀራረብ: የ ተለየ የ ቁጥር መስጫ ዝርዝር ይፈጠራል: ለ ቁጥር ለ ተሰጣቸው አንቀጾች የ አሁኑን አንቀጽ ለሚከተሉ"
+msgid "To remove the number and the indent of the paragraph, click the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
+msgstr ""
-#. dHiFt
+#. 4sN9H
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3154856\n"
"help.text"
-msgid "To Change the Number That a Numbered List Starts With"
-msgstr "ቁጥር ለ መቀየር ቁጥር ከ ተሰጣቸው ዝርዝር ውስጥ የሚጀምረውን በ"
+msgid "To Change the Number That an Ordered List Starts With"
+msgstr ""
-#. s3SHA
+#. rgBxU
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3155877\n"
"help.text"
-msgid "Click anywhere in the numbered list."
-msgstr "ይጫኑ ቁጥር ከ ተሰጣቸው ዝርዝር ውስጥ ማንኛውም ቦታ"
+msgid "Click anywhere in the ordered list."
+msgstr ""
#. Nkqj8
#: numbering_paras.xhp
@@ -12085,14 +12094,14 @@ msgctxt ""
msgid "Creating and Applying Page Styles"
msgstr "የ ገጽ ዘዴዎች መፍጠሪያ እና መፈጸሚያ"
-#. BFGvL
+#. fPbBS
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"bm_id7071138\n"
"help.text"
-msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value>"
-msgstr "<bookmark_value>የ ገጽ ዘዴዎች: መፍጠሪያ እና መፈጸሚያ</bookmark_value> <bookmark_value>መግለጫ: የ ገጽ ዘዴዎች</bookmark_value> <bookmark_value>ዘዴዎች: ለ ገጾች</bookmark_value>"
+msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value> <bookmark_value>overriding next style;for pages</bookmark_value>"
+msgstr ""
#. MM4EQ
#: pagestyles.xhp
@@ -12211,6 +12220,15 @@ msgctxt ""
msgid "Click in the page that you want to apply the page style to."
msgstr "መፈጸም በሚፈልጉት የ ገጽ ዘዴ ላይ ገጹን ይጫኑ"
+#. vF8n9
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id471615462517274\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
#. GC7eD
#: pagestyles.xhp
msgctxt ""
@@ -12229,6 +12247,78 @@ msgctxt ""
msgid "Double-click a name in the list."
msgstr "ከ ዝርዝሩ ውስጥ ስሙን ሁለት ጊዜ-ይጫኑ"
+#. wAew8
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615460923756\n"
+"help.text"
+msgid "Right-click the page style displayed in the <link href=\"text/shared/01/03060000\" name=\"Status Bar\">Status Bar</link>. Select another page style."
+msgstr ""
+
+#. ombta
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"hd_id181615419889677\n"
+"help.text"
+msgid "To Manually Override the “Next style” of a Page Style"
+msgstr ""
+
+#. mX6AF
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615419994433\n"
+"help.text"
+msgid "Place cursor between the page with the page style and the page with the style specified in <emph>Next style</emph>."
+msgstr ""
+
+#. V4dVd
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id301615420000676\n"
+"help.text"
+msgid "Right-click and choose <menuitem>Edit Page Break</menuitem>."
+msgstr ""
+
+#. rsZHm
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id271615420006519\n"
+"help.text"
+msgid "Select the <emph>With page style</emph> checkbox."
+msgstr ""
+
+#. wdCZW
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615420013170\n"
+"help.text"
+msgid "Enter the page style to be applied."
+msgstr ""
+
+#. Fcn83
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id231615420303511\n"
+"help.text"
+msgid "See <link href=\"text/swriter/guide/pageorientation.xhp#scope\" name=\"Next Style\">Manually Defined Range of a Page style</link>."
+msgstr ""
+
+#. 2BGUb
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615463137607\n"
+"help.text"
+msgid "A special situation arises when a <emph>Next style</emph> is different than the page style itself, and you want to apply that page style to two consecutive pages. For example, if you have applied <emph>First Page</emph> style to a page, and want to apply First Page style again to the immediately following page, then you must manually override First Page style, because it is configured to be followed by <emph>Default Page Style</emph>."
+msgstr ""
+
#. enqf2
#: pagestyles.xhp
msgctxt ""
@@ -18322,14 +18412,14 @@ msgctxt ""
msgid "Adding Bullets"
msgstr "ነጥቦች መጨመሪያ"
-#. npXYA
+#. 6sLBy
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"bm_id3155186\n"
"help.text"
-msgid "<bookmark_value>bullet lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</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>"
+msgid "<bookmark_value>unordered lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</bookmark_value>"
+msgstr ""
#. fHxYh
#: using_numbered_lists.xhp
@@ -18358,23 +18448,23 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add bullets to."
msgstr "ይምረጡ አንቀጽ(ጾች) ነጥቦች ማስገባት ለሚፈልጉት"
-#. SjDdr
+#. qaN2Z
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3149635\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Bullets On/Off</item> icon <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">Icon</alt></image> (Shift-F12)."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Unordered List</menuitem> icon (<keycode>Shift+F12</keycode>)."
msgstr ""
-#. fd4ap
+#. nQCke
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3145403\n"
"help.text"
-msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Bullets On/Off</emph> icon on the <emph>Formatting</emph> Bar."
-msgstr "ነጥቦችን ለማስወገድ ይምረጡ ነጥብ የተደረገባቸው አንቀጾች እና ከዛ ይምረጡ የ <emph> ነጥቦች ማብሪያ/ማጥፊያ </emph> ምልክት በ <emph> አቀራረብ </emph> መደርደሪያ ላይ"
+msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Toggle Unordered List</emph> icon on the <emph>Formatting</emph> Bar."
+msgstr ""
#. HpLDk
#: using_numbered_lists.xhp
@@ -18385,22 +18475,22 @@ msgctxt ""
msgid "To Format Bullets"
msgstr "የ ነጥቦች አቀራረብ"
-#. eLxDt
+#. gUFZk
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3154416\n"
"help.text"
-msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>."
-msgstr "የ ነጥቦችን ዝርዝር አቀራረብ ለ መቀየር: ይምረጡ <item type=\"menuitem\"> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </item>"
+msgid "To change the formatting of an unordered list, choose <menuitem>Format - Bullets and Numbering</menuitem>."
+msgstr ""
-#. wyMSC
+#. qZ6Zu
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3153390\n"
"help.text"
-msgid "Click on the <item type=\"menuitem\">Bullet</item> tab or the <item type=\"menuitem\">Image</item> tab, and then select a symbol style in the <item type=\"menuitem\">Selection</item> area."
+msgid "Click on the <menuitem>Unordered</menuitem> tab or the <menuitem>Image</menuitem> tab, and then select a symbol style in the <menuitem>Selection</menuitem> area."
msgstr ""
#. XtKb5
@@ -18421,14 +18511,14 @@ msgctxt ""
msgid "Adding Numbering"
msgstr "ቁጥር መስጫ መጨመሪያ"
-#. UTBpr
+#. pGetS
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"bm_id3147418\n"
"help.text"
-msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs; numbering on/off</bookmark_value> <bookmark_value>formatting;numbered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
-msgstr "<bookmark_value>ቁጥር መስጫ;አንቀጾች ማብሪያ እና ማጥፊያ</bookmark_value> <bookmark_value>አንቀጾች; ቁጥር መስጫ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>አቀራረብ;የ ቁጥር መስጫ ዝርዝሮች</bookmark_value> <bookmark_value>ማስገቢያ;ቁጥር መስጫ</bookmark_value>"
+msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs;toggle ordered list</bookmark_value> <bookmark_value>formatting;ordered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
+msgstr ""
#. ZPrUH
#: using_numbered_lists2.xhp
@@ -18457,76 +18547,112 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add numbering to."
msgstr "ይምረጡ አንቀጽ(ጾች) ቁጥር መስጠት ለሚፈልጉት"
-#. TZrEV
+#. PAGDn
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id181615764064889\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. B2NZk
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3149968\n"
"help.text"
-msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Numbered List</emph> icon (<keycode>F12</keycode>)."
+msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Ordered List</emph> icon (<keycode>F12</keycode>)"
msgstr ""
-#. seYCG
+#. dpmx5
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id3149573\n"
+"par_id211615764184529\n"
"help.text"
-msgid "To change the formatting and the hierarchy of a numbered list, click in the list, and then open the <emph>Bullets and Numbering</emph> toolbar."
-msgstr "አቀራረብ እና ቁጥር የተሰጣቸውን ዝርዝር ደረጃ ለ መቀየር: ይጫኑ በ ዝርዝር ላይ እና ከዛ ይክፈቱ የ <emph> ነጥቦች እና ቁጥር መስጫ </emph> እቃ መደርደሪያ"
+msgid "Right-click, choose <menuitem>Lists</menuitem>, then select a list style."
+msgstr ""
-#. cBsKj
+#. dQ6VP
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id91611756820703\n"
+"par_id941615766439690\n"
"help.text"
-msgid "<image src=\"cmd/lc_defaultnumbering.png\" id=\"img_id531611756820703\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id961611756820703\">Toggle Numbered List Icon</alt></image>"
+msgid "A <link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Paragraph Style\">paragraph style</link> can be configured to add numbering."
msgstr ""
-#. 8rCsx
+#. 96JB9
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id141611756820703\n"
+"hd_id861615765870820\n"
"help.text"
-msgid "Toggle Numbered List"
+msgid "To Remove Paragraphs from an Ordered List"
msgstr ""
-#. 4KDug
+#. PwFjK
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3153365\n"
"help.text"
-msgid "To remove numbering, select the numbered paragraphs, and then click the <emph>Toggle Numbered List</emph> icon on the <emph>Formatting</emph> Bar."
+msgid "To remove numbering, select the numbered paragraphs, then click the <emph>Toggle Ordered List</emph> icon or the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar."
msgstr ""
-#. SWoqA
+#. iFCsz
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"hd_id3154233\n"
"help.text"
-msgid "To Format a Numbered List"
-msgstr "ቁጥር የተሰጣቸው ዝርዝር አቀራረብ"
+msgid "To Format an Ordered List"
+msgstr ""
-#. AXMM3
+#. XpCAC
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3154246\n"
"help.text"
-msgid "To change the formatting of a numbered list, click in the list, then choose <emph>Format - Bullets and Numbering</emph>."
-msgstr "ቁጥር የተሰጣቸው ዝርዝር አቀራረብ ለ መቀየር: ይጫኑ በ ዝርዝር ውስጥ: እና ከዛ ይምረጡ <emph> አቀራረብ - ነጥቦች እና ቁጥር መስጫ </emph>"
+msgid "To change the formatting of a numbered list, do one of the following:"
+msgstr ""
+
+#. ctBEK
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id801615765243022\n"
+"help.text"
+msgid "Click in the list, then choose <menuitem>Format - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. ThdUE
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id161615765280165\n"
+"help.text"
+msgid "Right-click in the list, then choose <menuitem>Lists - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. xgmVR
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id3149573\n"
+"help.text"
+msgid "To change the hierarchy of an ordered list, click in the list, then use the icons in the <emph>Bullets and Numbering</emph> toolbar."
+msgstr ""
-#. 9MZVK
+#. y2KEo
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id21611757614734\n"
"help.text"
-msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Numbered List</emph> twice."
+msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Ordered List</emph> twice. Any formatting on the pasted item is reset to default."
msgstr ""
#. MAprK
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 874c1c56e03..99717dcf1e0 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-04 19:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/am/>\n"
"Language: am\n"
@@ -1296,15 +1296,25 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "የማይጠበቁ ክፍሎችን መምረጫ"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
-msgstr ""
+msgid "Select Visible Rows Only"
+msgstr "የሚታይ ረድፍ ብቻ ይምረጡ"
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
+msgstr "የሚታይ አምድ ብቻ ይምረጡ"
#. LEvrC
#: CalcCommands.xcu
@@ -3176,15 +3186,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "የ ~ገጽ አቀራረብ..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "~ገጽ..."
+msgid "~Page Style..."
+msgstr ""
#. C83UC
#: CalcCommands.xcu
@@ -8054,7 +8064,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt Attributes..."
-msgstr ""
+msgstr "የ ጽሁ~ፍ ባሪዎች..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -8824,7 +8834,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page Properties..."
-msgstr ""
+msgstr "የ ገጽ ባህሪዎች..."
#. W6trc
#: DrawImpressCommands.xcu
@@ -8844,7 +8854,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Slide Properties..."
-msgstr ""
+msgstr "የ ተንሸራታች ባህሪዎች..."
#. bhvTx
#: DrawImpressCommands.xcu
@@ -9024,7 +9034,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Merges text fragments from selected objects into one new textbox"
-msgstr ""
+msgstr "ከ ተመረጠው እቃ ውስጥ የ ጽሁፍ አካሎችን ማዋሀጃ ወደ አዲሱ የ ጽሁፍ ሳጥን ውስጥ:"
#. 9ofqz
#: DrawImpressCommands.xcu
@@ -9314,7 +9324,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xecute Interaction..."
-msgstr ""
+msgstr "ግንኙነት መ~ፈጸሚያ..."
#. TNj5u
#: DrawImpressCommands.xcu
@@ -9456,6 +9466,26 @@ msgctxt ""
msgid "Layout"
msgstr "ረቂቅ"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -20638,34 +20668,24 @@ msgctxt ""
msgid "Background Color"
msgstr "የ መደብ ቀለም"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -23388,15 +23408,15 @@ msgctxt ""
msgid "~Export As"
msgstr "~መላኪያ እንደ"
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export as PDF"
+msgstr ""
#. YsFV2
#: GenericCommands.xcu
@@ -23418,15 +23438,15 @@ msgctxt ""
msgid "Export as PDF"
msgstr "እንደ PDF መላኪያ"
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export Directly as PDF"
+msgstr ""
#. 8eSWp
#: GenericCommands.xcu
@@ -25508,14 +25528,14 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
+msgid "Development Tools"
msgstr ""
#. jLF5j
@@ -26086,7 +26106,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert N~arrow No-break Space"
-msgstr ""
+msgstr "ቀ~ጭን ምንም-ያልተሰበረ ክፍተት ማስገቢያ"
#. txaEk
#: GenericCommands.xcu
@@ -26098,15 +26118,15 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr "ስፋት-~የለም መጨረሻ በምርጫ"
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
-msgstr "ስፋት-የለም ~መጨረሻ የለም"
+msgid "Word ~Joiner"
+msgstr ""
#. UvwGS
#: GenericCommands.xcu
@@ -33378,6 +33398,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "እንደገና ማስጀመሪያ ቁጥር መስጫ"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33608,6 +33638,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "አንቀጽ ይምረጡ"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -33816,7 +33856,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Resolved Comments"
-msgstr ""
+msgstr "የ ተወሰነ አስተያየት"
#. vAGUB
#: WriterCommands.xcu
@@ -33888,16 +33928,6 @@ msgctxt ""
msgid "Fields"
msgstr "ሜዳዎች"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "ማድመቂያ መሙያ"
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34016,7 +34046,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Whitespac~e"
-msgstr ""
+msgstr "ነጭ ክፍተ~ት ማሳያ"
#. RHnwE
#: WriterCommands.xcu
@@ -34348,15 +34378,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "መምረጫ ዘዴ"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "ያለፈውን ቁጥር መስጫ መቀጠያ"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr ""
#. oCEjg
#: WriterCommands.xcu
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 2e1f11077c2..e9d7064ba39 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -20705,10 +20705,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "መቀመሪያ"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -24728,231 +24728,231 @@ msgid "No solution was found."
msgstr "ምንም መፍትሄ አልተገኘም"
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_ፋይል"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_እርዳታ"
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~ፋይል"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "ለ ተመረጡት ክፍሎች ድንበር ይወስኑ"
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "ማስረጊያ መጨመሪያ"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "ማስረጊያ መቀነሻ"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "እቃ ማሰለፊያ"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_እቅድ"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_ስታትስቲክስ"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_ዳታ"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~ዳታ"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "መቀየሪያ"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~ብዙሀን መገናኛ"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~ማተሚያ"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ተ_ቀጥያዎች"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "ተ~ቀጥያዎች"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 7f27ad15a79..1947dc49310 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-01-25 14:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -899,158 +899,164 @@ msgstr ""
"\n"
"ኮፒ የተደረገውን እቃ በ አዲሱ ገጽ መጠን መመጠን ይፈልጋሉ??"
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "ተንሸራታቾች መፍጠሪያ"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "የ ገጽ አቀራረብ ማሻሻያ"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "የ ገጽ መስመሮች ማሻሻያ"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "~ማረሚያ"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "ተንሸራታቾች ማጥፊያ"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "ለ ተወሰነው ማተሚያ የ ሰነዱን አቀራረብ ማሰናዳት አልተቻለም"
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "የ ምስል ፋይል መክፈት አልተቻለም"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "የምስል ፋይል ማንበብ አልተቻለም"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "ያልታወቀ የ ምስል አቀራረብ"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "ይህ የንድፍ ፋይል እትም የተደገፈ አይደለም"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "የምስል ማጣሪያ አልተገኘም"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "ምስሎቹን ለማምጣት በቂ memory አልተገኘም"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "አቃዎች"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "ጠቅላላ ሰነዱን የፊደል ግድፈት መርምሮ ጨርሷል"
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "ለተመረጠው እቃ የፊደል ግድፈት መርምሮ ጨርሷል"
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "የተመረጠውን እቃ ወደ ክብ ልቀይረው?"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "የማቅረቢያውን እቃ ማሻሻያ '$'"
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "የ ተንሸራታች ረቂቅ"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr "የ ገጽ እቅድ"
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "ፋይል ማስገቢያ"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "የተለየ ባህሪ ማስገቢያ"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "የ ማቅረቢያ እቅድ መፈጸሚያ"
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "~ማጫወቻ"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "ማቆሚ~ያ"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "ዋነኛው መጠን"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1060,128 +1066,128 @@ msgstr ""
"አዲስ መጠን ማስገባት ይፈልጋሉ?"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "ምንም ተግባር የለም"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "ቀደም ወዳለው ተንሸራታች መሄጃ"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "ወደሚቀጥለው ተንሸራታች መሄጃ"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "ወደ መጀመሪያው ተንሸራታች መሄጃ"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "ወደ መጨረሻው ተንሸራታች መሄጃ"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "ወደ ገጽ ወይም እቃው ጋ መሄጃ"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "ወደ ሰነዱ ጋ መሄጃ"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr "ድምፅ ማጫወቻ"
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr "የእቃ ተግባር ማስጀመሪያ"
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "ፕሮግራም ማስኬጃ"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "macro ማስኬጃ"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "ከ ማቅረቢያው መውጫ"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "ኢላማው"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "ተግ~ባር"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr "ድምፅ"
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "ተንሸራታች / እቃ"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "ሰነድ"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "ፕሮግራም"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "Macro"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr "በ ማቅረብ ላይ: %s"
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1190,254 +1196,254 @@ msgstr[1] "%1 ተንሸራታቾች"
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "ጽሁፍ ማስገቢያ"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr "ዋናውን ተንሸራታች መጫኛ"
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "ብልጥ"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "በ ግራ"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "ከ ላይ"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "ከ ታች"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "ከ ላይ በ ግራ በኩል?"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "ከ ታች በ ግራ በኩል?"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "ከ ላይ በ ቀኝ በኩል?"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "ከ ታች በ ቀኝ በኩል?"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "በ አግድም"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "በ ቁመት"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "ሁሉንም?"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr "ይህን ተግባር በ live ዘዴ ማስኬድ አይቻልም"
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "ወደ ኋላ"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "ይቀጥሉ"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "ባጠቃላይ"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "ቀለም መቀየሪያ"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr "መስቀልኛ-ማፍዘዣ"
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "ተንሸራታች ማስፊያ"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "የ ተንሸራታች የ ሰንጠረዥ ይዞታዎች"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr "ምንም የ SANE ምንጭ ዝግጁ የሆነ አልተገኘም"
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr "ለጊዜው ምንም የ TWAIN ምንጭ ዝግጁ የሆነ አልተገኘም"
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "የተወሰነ"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "ተለዋዋጭ"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "መደበኛ"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "መደበኛ (አጭር)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "መደበኛ (ረጅም)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "የ ፋይል ስም"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "መንገድ/የ ፋይል ስም"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "መንገድ"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "የ ፋይሉ ስም ያለ ተጨማሪ"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr "አዲስ ተንሸራታች ማሳያ ማስተካከያ"
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "ኮፒ "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr "%PRODUCTNAME Presentation format (Impress 6)"
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr "%PRODUCTNAME Drawing format (Draw 6)"
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr "መለያያ Metafile(s)..."
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr "ሁሉንም የ መሳያ እቃዎች መለያየት አልተቻለም"
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr "%PRODUCTNAME %PRODUCTVERSION Presentation"
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr "%PRODUCTNAME %PRODUCTVERSION Drawing"
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1447,157 +1453,157 @@ msgstr ""
"መቀየር ይፈልጋሉ?"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "Hyperlink"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "የተጎበኙ አገናኞች"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "ንቁ አገናኞች"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "ማስታወሻዎች"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "የ ሰንጠረዥ ማውጫዎች"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr "ለማስጀመር እዚህ ይጫኑ"
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "ደራሲው"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr "ኢሜይል"
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "የ ገጽ ቤት"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr "በ በለጠ ለመረዳት"
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "ማቅረቢያውን ማውረጃ"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr "የእርስዎ መቃኛ ተንሳፋፊ ክፈፎችን አይደግፍም"
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "መጀመሪያ ገጽ"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "የ መጨረሻው ገጽ"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "ምስል"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "ከይዞታዎች ጋር"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "ያለ ይዞታዎች"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "ለተሰጠው ገጽ"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "bitmap ወደ ፖሊጎን መቀየሪያ"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr "ይጫኑ ከ ማቅረቢያው ለመውጣት..."
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "ማቆሚያ..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr "3ዲ የምወዳቸው መፈጸሚያ"
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "የ ምስል ማጣሪያ"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1607,829 +1613,829 @@ msgstr ""
"ዋጋ ያለው የድምፅ ፋይል አይደለም!"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "ወደ metafile መቀየሪያ"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "ወደ bitmap መቀየሪያ"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "ፋይሉን መፍጠር አልተቻለም $(URL1)."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "ፋይሉን መክፈት አልተቻለም $(URL1)."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr "ይህን ፋይል $(URL1) ኮፒ ማድረግ አልተቻለም ወደ $(URL2)"
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr "ዋናው የ ተንሸራታች ስም: በ ቀኝ-ይጫኑ ለ ዝርዝር እና ሁለት ጊዜ-ይጫኑ ለ ንግግር"
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "ተንሸራታቹን እንደገና መሰየሚያ"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr "ገጽ እንደገና መሰየሚያ"
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr "የ ተባዛ ወይንም ቦዶ ስም አይፈቀድም"
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "ስም"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr "ዋናውን ተንሸራታች እንደገና መሰየሚያ"
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr "የ አርእስት ቦታ ራሱ በራሱ ማርቀቂያ"
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr "የ እቃ ቦታ ራሱ በራሱ ማርቀቂያ"
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "የ ግርጌ ቦታ"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "የ ራስጌ ቦታ"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "የቀን ቦታ"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "የ ተንሸራታች ቁጥር ቦታ"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "የ ገጽ ቁጥር ቦታ"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<ራስጌ>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<ግርጌ>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<ቀን / ሰአት>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<ቁጥር>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<መቁጠሪያ>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr "<የ ተንሸራታች-ስም>"
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr "<የ ገጽ-ስም>"
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "የማስታወሻዎች ቦታ"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "ሀንጉል/ሀንጃ መቀየሪያ"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "ተንሸራታቾች"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "ገጾች"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "ቅድመ እይታ የለም"
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "ቅድመ እይታ በማዘጋጀት ላይ"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "እቅዶች"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr "የ መሳያ ዘዴዎች"
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "የ ማቅረቢያ ዘዴዎች"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "የ ክፍል ዘዴዎች"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr "ቅርጽ %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr "የ መደብ ምስል ማሰናጃ"
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "አስተያየቶች"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "የ ተንሸራታች ረቂቅ እንደነበረ መመለሻ"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "ሰንጠረዥ ማስገቢያ"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "ቻርት ማስገቢያ"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "ምስል ማስገቢያ"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "ድምፅ ወይንም ቪዲዮ ማስገቢያ"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "ገጾች መጎተቻ እና መጣያ"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "መጎተቻ እና መጣያ ተንሸራታቾች"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "እባክዎን ምስሎች ወደ አልበሙ ውስጥ ይጨምሩ"
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "የ ጽሁፍ ተንሸራታች"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr "የ አካባቢ ኢላማ ዳይሬክቶሪ '%FILENAME' ባዶ አይደለም: አንዳንድ ፋይሎች ላይ ተደርቦ ተጽፏል: መቀጠል ይፈልጋሉ?"
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "መደብ"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "የ መደቡ እቃዎች"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "ረቂቅ"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr "መቆጣጠሪያዎች"
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr "የ ወርድ ፡ ስፋት ፡ ቁመት መስመሮች"
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "ተንሸራታች"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "ገጽ"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "ተንሸራታች"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr "ዋናው ተንሸራታች"
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr "ዋናው ተንሸራታች:"
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "ዋናው ገጽ"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr "ዋናው ገጽ:"
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(ማስታወሻዎች)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "ምፅዋት"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "የ አርእስት ጽሁፍ አቀራረብ ለ ማረም ይጫኑ"
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "የ አርእስት ጽሁፍ ረቂቅ አቀራረብ ለ ማረም ይጫኑ"
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr "ሁለት ጊዜ-መታ ያድርጉ አርእስት በ ጽሁፍ አቀራረብ ውስጥ ለ ማረም:"
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr "ሁለት ጊዜ-መታ ያድርጉ ረቂቅ በ ጽሁፍ አቀራረብ ውስጥ ለ ማረም:"
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "ሁለተኛ የ ረቂቅ ደረጃ"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "ሶስተኛ የ ረቂቅ ደረጃ"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "አራተኛ የ ረቂቅ ደረጃ"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "አምስተኛ የ ረቂቅ ደረጃ"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "ስድስተኛ የ ረቂቅ ደረጃ"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "ሰባተኛ የ ረቂቅ ደረጃ"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "ተንሸራቱቹን ለማንቀሳቀስ ይጫኑ"
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "የ ማስታወሻ አቀራረብ ለ ማረም ይጫኑ"
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr "ሁለት ጊዜ-መታ ያድርጉ ተንሸራታች ለ ማንቀሳቀስ:"
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr "ሁለት ጊዜ-መታ ያድርጉ የ ማስታወሻ አቀራረብ ለ ማረም:"
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "አርእስት ለ መጨመር ይጫኑ"
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "ጽሁፍ ለ መጨመር ይጫኑ"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "ጽሁፍ ለ መጨመር ይጫኑ"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "ማስታወሻዎች ለመጨመር ይጫኑ"
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr "ሁለት ጊዜ-መታ ያድርጉ አርእስት ለ መጨመር:"
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr "ሁለት ጊዜ-መታ ያድርጉ ጽሁፍ ለ መጨመር:"
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr "ሁለት ጊዜ-መታ ያድርጉ ጽሁፍ ለ መጨመር:"
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr "መታ ያድርጉ ጽሁፍ ለ ማረም:"
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr "ሁለት ጊዜ-መታ ያድርጉ ማስታወሻ ለ መጨመር:"
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "ሁለት-ጊዜ ይጫኑ ምስል ለመጨመር"
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "ሁለት-ጊዜ ይጫኑ እቃ ለመጨመር"
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "ሁለት-ጊዜ ይጫኑ ቻርት ለ መጨመር"
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "ሁለት-ጊዜ ይጫኑ የ ድርጅት ቻርት ለ መጨመር"
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "ሁለት-ጊዜ ይጫኑ ሰንጠረዥ ለመጨመር"
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "ነባር"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "አርእስት"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr "ነባር የ መሳያ ዘዴ"
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "ተንሸራታቾችን ማንቀሳቀሻ"
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr "ገጾች ማስገቢያ"
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr "ገጽ ማስገቢያ"
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr "የ ተንሸራታች ባህሪዎች"
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "መሙያ የሌላቸው እቃዎች"
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "መሙያ እና መስመር የሌለው እቃ"
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr "A4"
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr "አርእስት A4"
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr "ራስጌ A4"
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr "ጽሁፍ A4"
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr "A0"
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr "አርእስት A0"
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr "ራስጌ A0"
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr "ጽሁፍ A0"
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr "ንድፍ"
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr "ቅርጾች"
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr "መስመሮች"
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr "የ ቀስት መስመር"
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr "የ ዳሽ መስመር"
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr "የተሞላ"
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr "ሰማያዊ የተሞላ"
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr "አረንጓዴ የተሞላ"
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr "ቢጫ የተሞላ"
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr "ቀይ የተሞላ"
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr "እቅድ"
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr "እቅድ በ ሰማያዊ"
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr "እቅድ በ አረንጓዴ"
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr "እቅድ በ ቢጫ"
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr "እቅድ በ ቀይ"
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "አርእስት"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "ንዑስ አርእስት"
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "ረቂቅ"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "የ መደቡ እቃዎች"
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "መደብ"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "ማስታወሻዎች"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint ማምጫ"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "ሰነድ ማስቀመጫ"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "ክፍል ማጣመሪያ"
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "ራስጌ"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "ጠቅላላ መስመር"
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "የመጀመሪያው አምድ"
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "የ መጨረሻው አምድ"
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "የ ፊደል መጠን ማሳነሻ"
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "የ ፊደል መጠን ማሳደጊያ"
@@ -2437,625 +2443,625 @@ msgstr "የ ፊደል መጠን ማሳደጊያ"
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "መሳያ መመልከቻ"
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "መሳያ መመልከቻ"
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "ረቂቅ መመልከቻ"
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "ተንሸራታች መመልከቻ"
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "ተንሸራታቾችን የሚለዩት እዚህ ነው"
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "ማስታወሻ መመልከቻ"
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "ምፅዋት መመልከቻ"
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "የ ማቅረቢያ አርእስት"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "የ ማቅረቢያ ንድፍ"
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "የ ማቅረቢያ ንዑስ አርእስት"
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "የ ማቅረቢያ ገጽ"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "የ ማቅረቢያ ማስታወሻዎች"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "በ እጅ የሚሰጥ"
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "ያልታወቀ ሊደረስበት የሚችል የማቅረቢያ ቅርጽ"
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "የ ማቅረቢያ ግርጌ"
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "የ ማቅረቢያ ግርጌ ቅርጽ"
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "የ ማቅረቢያ ራስጌ"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "የ ማቅረቢያ ቀን እና ሰአት"
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "የ ማቅረቢያ ገጽ ቁጥር"
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME ማቅረቢያ"
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "አርእስት"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "ንድፍ"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "ንዑስ አርእስት"
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "ገጽ"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "ማስታወሻዎች"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "በ እጅ የሚሰጥ"
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "ያልታወቀ ሊደረስበት የሚችል የማቅረቢያ ቅርጽ"
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "ግርጌ"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "ራስጌ"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "ቀን"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "ቁጥር"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(ለንባብ-ብቻ)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "ምንም"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "የሚቀጥለውን እስክጫን"
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "ተንሸራታቹ እስከሚያልቅ"
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "አቅጣጫ:"
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "ማሳያ:"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "ሽቦዎች:"
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "የ መጀመሪያ ቀለም:"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "ሁለተኛ ቀለም:"
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "ቀለም መሙያ"
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "ዘዴ:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "ፊደል:"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "የ ፈደል ቀለም:"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "ዘዴ:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Typeface:"
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "የ መስመር ቀለም:"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "የ ፊደል መጠን:"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "መጠን:"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "ብዛት:"
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "ቀለም:"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(ድምጽ የለም)"
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(ቀደም ያለውን ድምጽ ማቆሚያ)"
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "ሌላ ድምጽ..."
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "ናሙና"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "ማስነሻ"
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "የተጠቃሚ መንገዶች"
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr "መግቢያ: %1"
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "ማጋነኛ: %1"
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "መውጫ: %1"
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "የ እንቅስቃሴ መንገድ: %1"
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr "የተለያዩ: %1"
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "ምንም"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "ዛሬ"
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "ትናንትና"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(ደራሲው የለም)"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME ማስደነቂያ ከ ማቅረቢያው መጨረሻ ደርሷል: ከ መጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME ማስደነቂያ ከ መጀመሪያው ማቅረቢያው ጋር ደርሷል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME መሳያ ከ ሰነዱ መጨረሻ ደርሷል: ከ መጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME መሳያ ከሰነዱ መጀመሪያ ጋር ደርሷል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "አስተያየት ማስገቢያ"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "አስተያየት(ቶች) ማጥፊያ"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "አስተያየት ማንቀሳቀሻ"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "አስተያየት ማረሚያ"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "መልስ ለ %1"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "መገናኛ በ ድጋሚ ማጫወቻ"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "ሰንጠረዥ"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "ሰነድ"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr "ተንሸራታች በ ገጽ ውስጥ:"
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr "ትእዛዝ:"
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "~ይዞታዎች"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "የ ~ተንሸራታች ስም"
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "የ ~ገጽ ስም"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "~ቀን እና ሰአት"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "የተደበቁ ገጾች"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "ቀለም"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "~መጠን"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "መግለጫ ጽሁፍ"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "የ ገጽ ጎኖች"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "ማካተቻ"
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "የ ወረቀት ትሪ ከ ማተሚያ ምርጫዎች ውስጥ ብቻ ~መጠቀሚያ"
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr "ገጾች:"
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr "ተንሸራታች:"
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME ማስደነቂያ እስከ መጨረሻው ማስደነቂያ ድረስ ፈልጓል: ከ መጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME ማስደነቂያ እስከ መጀመሪያው ማስደነቂያ ድረስ ፈልጓል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME መሳያ እስከ መጨረሻው ሰነድ ድረስ ፈልጓል: ከመጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME መሳያ እስከ መጀመሪያው ሰነድ ድረስ ፈልጓል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr "እንቅስቃሴ"
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "አገናኝ"
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -9503,139 +9509,139 @@ msgid "Sound:"
msgstr "ድምጽ:"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "ድምጽ የለም"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "ቀደም ያለውን ድምፅ ማስቆሚያ"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "ሌላ ድምጽ..."
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr "በ ተንሸራታች መሸጋገሪያ ጊዜ ሊያጫውቱ የሚችሉት የ ድምፅ ዝርዝር "
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "እስከሚቀጥለው ድምጽ አታቋርጥ"
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr "ይምረጡ ድምፅ ለማጫወት ሌላ ድምፅ እስከሚጀምር ድረስ"
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "የተለያየ:"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr "Sየ ተለያየ መሸጋገሪያ ይምረጡ "
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "መሸጋገሪያ ማሻሻያ"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "አይጡን በምጫን ጊዜ"
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr "ይምረጡ ለ መቀጠል ወደሚቀጥለው ተንሸራታች አይጥ ሲጫኑ "
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
-msgstr "ራሱ በራሱ በኋላ:"
+msgid "After:"
+msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "ይምረጡ ለ መቀጠል ወደሚቀጥለው ተንሸራታች ከ ተወሰነ ሰከንድ በኋላ: ሰከንዶቹን ያስገቡ በ ቁጥር ሜዳ ውስጥ ከ ማዞሪያው ቁልፍ አጠገብ "
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "ይምረጡ ለ መቀጠል ወደሚቀጥለው ተንሸራታች ከ ተወሰነ ሰከንድ በኋላ: ሰከንዶቹን ያስገቡ በ ቁጥር ሜዳ ውስጥ ከ ማዞሪያው ቁልፍ አጠገብ "
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "የ ረቀቀ ተንሸራታች"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr "መሸጋገሪያ ለሁሉም ተንሸራታቾች መፈጸሚያ"
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr "በ እርስዎ በ አሁኑ ማቅረቢያ ሰነድ ውስጥ የ ተመረጠውን የ ተንሸራታች መሸጋገሪያ ለሁሉም ተንሸራታቾች መፈጸሚያ"
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "ራሱ በራሱ ቅድመ እይታ"
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr "ይምረጡ ለማየት የ ተንሸራታች መሸጋገሪያ ራሱ በራሱ በ ሰነድ ውስጥ"
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "ማጫወቻ"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr "የ አሁኑን የ ተንሸራታች መሸጋገሪያ እንደ ቅድመ እይታ ማሳያ"
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr "የ ተለየ ውጤት ማጫወቻ መግለጫ እርስዎ ተንዝሸራታች በሚያሳዩ ጊዜ በ ተንዝሸራታች ማሳያ ውስጥ "
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 82851dbed5e..a4cdf90ca8b 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -855,11 +855,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "ምንም"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "ምስል"
+msgstr ""
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1641,11 +1641,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "ክፍል መዝጊያ"
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1666,16 +1666,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "የ ንድፍ እቅድ"
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1696,10 +1696,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "የ ጫካ ወፍ"
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1714,10 +1714,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "ብርሃን"
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1762,11 +1762,11 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "ሂደት"
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
-msgstr ""
+msgid "Sunset"
+msgstr "ፀሐይ መጥለቂያ"
#. 73Y2e
#: include/sfx2/strings.hrc:320
@@ -2266,6 +2266,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "ምልክቶች"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr ""
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr ""
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr ""
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr ""
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr ""
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr ""
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr ""
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr ""
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr ""
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr ""
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr ""
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr ""
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr ""
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2614,9 +2914,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr "በ እርስዎ ሰነድ ውስጥ የ መረጃ ሜዳዎች ማስተካከያ መመደብ ያስችሎታል"
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2675,91 +2975,157 @@ msgid "Contains descriptive information about the document."
msgstr "ስለ ሰነዱ መግለጫ መረጃ ይዟል"
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr ""
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr ""
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr ""
+
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr ""
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
msgctxt "documentfontspage|embedFonts"
@@ -3909,9 +4275,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr "የ ማተሚያ ማሰናጃ ምርጫዎች መወሰኛ"
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index 9259d662d10..cf3acd5cfb2 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-01-25 14:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/am/>\n"
@@ -491,2209 +491,2209 @@ msgstr "_አዎ"
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ ምልክት"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- ምልክት"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- ምልክት"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ ምልክት"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "ቡሊያን አይደለም"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "መደመሪያ +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "መቀነሻ -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "ማባዣ (ነጥብ)"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "ማባዣ (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "ማባዣ (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "ማካፈያ (ስላሽ)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "ማካፈያ (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "ማካፈያ (ክፍልፋይ)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr "ክፍልፋይ"
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "ክብ ውስጡ ስላሽ"
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "ክብ ውስጡ ነጥብ"
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "ክብ ውስጡ መቀነስ"
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "ክብ ውስጡ መደመር"
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "የ ቴንሰር እቃ"
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "ቡሊያን እና"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "ቡሊያን ወይንም"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "እኩል ነው"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "እኩል አይደለም"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "ያንሳል"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "ይበልጣል"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ያንሳል ወይንም እኩል ነው ከ"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ይበልጣል ወይንም እኩል ነው ከ"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "ያንሳል ወይንም እኩል ነው ከ"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ይበልጣል ወይንም እኩል ነው ከ"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "በጣም ያንሳል"
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "በጣም ይበልጣል"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "የ ተገለጸው እንደ"
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "ኮንግረንት ነው ከ"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "በግምት እኩል ነው"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "ተመሳሳይ ነው"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "ተመሳሳይ ወይም እኩል ነው"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "ተመጣጣኝ ነው ከ"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "ኦርቶጎናል ነው ለ"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "አጓዳኝ ነው ለ"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "ወደ"
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "ተመሳሳይ ወደ (ግራ)"
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "ተመሳሳይ ወደ (ቀኝ)"
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ውስጥ ነው"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ውስጥ አይደለም"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "አለው"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "መዋሀድ"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "መገናኛ"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "ልዩነት"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "ንዑስ ስብስብ"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "ንዑስ ስብስብ ወይንም እኩል ነው ከ"
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "ትልቅ ስብስብ"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "ትልቅ ስብስብ ወይንም እኩል ነው"
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "ንዑስ ስብስብ አይደለም"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "ንዑስ ስብስብ አይደለም ወይንም እኩል ነው"
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "ትልቅ ስብስብ አይደለም"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "ትልቅ ስብስብ አይደለም ወይንም እኩል ነው"
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "ባጠቃላይ ተግባር"
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "ፍጹም ዋጋ"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "ፋክቶሪያል"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "ስኴር ሩት"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-ኛ ሩት"
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "ኤክስፖኔንሺያል ተግባር"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "ኤክስፖኔንሺያል ተግባር"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "የ ተፈጥሯዊ ሎጋሪዝም"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "ሎጋሪዝም"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "ሳይን"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "ኮሳይን"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ታንጀንት"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "ኮታንጀንት"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "አርክሳይን"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "አርክ ኮሳይን"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "አርክታንጀንት"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "አርክኮታንጀንት"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "ሀይፐርቦሊክ ሳይን"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "ሀይፐርቦሊክ ኮሳይን"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "ሀይፐርቦሊክ ታንጀንት"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "ሀይፐርቦሊክ ኮታንጀንት"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "የ ሀይፐርቦሊክ ሳይን ቦታ"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "የ ሀይፐርቦሊክ ኮሳይን ቦታ"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "የ ሀይፐርቦሊክ ታንጀንት ቦታ"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "የ ሀይፐርቦሊክ ኮታንጀንት ቦታ"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "ድምር"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "ድምር በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "ድምር በትንንሹ ከፍ ብሎ ከላይ መጻፊያ"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "ድምር ወደ ላይ ከፍ/ዝቅ አድርጎ መጻፊያ"
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "ውጤት"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "ውጤት በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "ውጤት በትንንሹ ከፍ ብሎ ከላይ መጻፊያ"
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "ውጤት በትንንሹ ከፍ/ዝቅ ብሎ መጻፊያ"
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduct"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "በትንንሹ ዝቅ ብሎ መቀላቀያ ከ ታች መጻፊያ"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "በትንንሹ ከፍ ብሎ Coproduct ከላይ መጻፊያ"
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproduct በትንንሹ ከፍ/ዝቅ ብሎ መጻፊያ"
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "ድንበር በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Limes ወደ ላይ ከፍ አድርጎ ከላይ መጻፊያ"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Limes ወደ ላይ ከፍ/ዝቅ አድርጎ መጻፊያ"
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "አነስተኛ መጠን"
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "አነስተኛ መጠን በትንንሽ ዝቅ ብሎ ከ ታች መጻፊያ"
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ ብሎ ከ ላይ መጻፊያ"
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ/ዝቅ ብሎ መጻፊያ"
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "አነስተኛ መጠን"
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "አነስተኛ መጠን በትንንሽ ዝቅ ብሎ ከ ታች መጻፊያ"
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ ብሎ ከ ላይ መጻፊያ"
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "አነስተኛ መጠን በትንንሽ ከፍ/ዝቅ ብሎ መጻፊያ"
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "እዛ ነበር"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "እዛ አልነበረም"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "ለ ሁሉም"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "ኢንትግራል"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "ኢንትግራል ዝቅ/ከፍ ብሎ በትንንሽ ፊደል መጻፊያ"
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "ድርብ ኢንትግራል"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "ድርብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "ድርብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "ድርብ ኢንትግራል ዝቅ/ከፍ ብሎ በትንንሽ ፊደል መጻፊያ"
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "ትሪፕል ኢንትግራል"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "ትሪፕል ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "ትሪፕል ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "ትሪፕል ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "ክብ ኢንትግራል"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "ድርብ ክብ ኢንትግራል"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "ድርብ ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "ድርብ ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "ድርብ ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "ትሪፕል ክብ ኢንትግራል"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "ትሪፕል ክብ ኢንትግራል ከ ታች በትንንሽ ፊደል ዝቅ ብሎ መጻፊያ"
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "ትሪፕል ክብ ኢንትግራል ከ ላይ በትንንሽ ፊደል ከፍ ብሎ መጻፊያ"
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "ትሪፕል ክብ ኢንትግራል ከፍ/ዝቅ ብሎ በትንንሽ ፊደል መጻፊያ"
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "አኪዩት አክሰንት"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "መስመር ከ ላይ"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "ብሬቬ"
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "የ ተገለበጠ ስርከምፍሌክስ"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "ክብ"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "ነጥብ"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "ድርብ ነጥብ"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "ሶስት ነጥብ"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "ግሬቭ አክሰንት"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "ስርከምፍሌክስ"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "ቲልዴ"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "የ አቅጣጫ ቀስት"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "ሀርፑን"
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "መስመር ከ ታች"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "መስመር ከላይ"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "መስመር በላዩ ላይ"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "ግልጽ"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "ፊደል ማድመቂያ"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "ፊደል ማዝመሚያ"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "እንደገና መመጠኛ"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ፊደል መቀየሪያ"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "ጥቁር ቀለም"
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "ሰማያዊ ቀለም"
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "አረንጓዴ ቀለም"
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "ቀይ ቀለም"
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "ቀለም ግራጫ"
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "ቀለም ሎሚ"
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "ቀለም የ ሸክላ ቀለም"
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "ቀለም ሰማያዊ"
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "ቀለም ወይራ"
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "ቀለም ወይን ጠጅ"
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "ቀለም ብር"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "አረንጓዴ ሰማያዊ ቀለም"
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "ቀለም ቢጫ"
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "የ ቡድን ቅንፎች"
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "ክብ ቅንፎች"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "ስኴር ቅንፎች"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "ድርብ ስኴር ቅንፎች"
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "ብሬስስ"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "አንግል ቅንፎች"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "ከፍተኛው ጣራ"
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "ወለል"
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "ነጠላ መስመሮች"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "ድርብ መስመሮች"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "አንቀሳቃሽ ቅንፎች"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "ክብ ቅንፎች (ሊመጠን የሚችል)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "ስኴር ቅንፎች (ሊመጠን የሚችል)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "ድርብ ስኴር ቅንፎች (ሊመጠን የሚችል)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "ብሬስስ (ሊመጠን የሚችል)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "አንግል ቅንፎች (ሊመጠን የሚችል)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "ጣራ (ሊመጠን የሚችል)"
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "ወለል (ሊመጠን የሚችል)"
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "ነጠላ መስመር (ሊመጠን የሚችል)"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "ድርብ መስመሮች (ሊመጠን የሚችል)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "አንቀሳቃሽ ቅንፎች (ሊመጠን የሚችል)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "የ ተገመገመው በ"
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "ብሬስ ከ ላይ (ሊመጠን የሚችል)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "ብሬስስ ከ ታች (ሊመጠን የሚችል)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "በትንንሹ ዝቅ ብሎ መጻፊያ"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "ሀይል"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "በትንንሹ ዝቅ ብሎ በ ግራ መጻፊያ"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "በትንንሹ ከፍ ብሎ በ ግራ መጻፊያ"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "በትንንሹ ዝቅ ብሎ ከ ታች መጻፊያ"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "በትንንሹ ከፍ ብሎ ከላይ መጻፊያ"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Small Gap"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "ባዶ"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "አዲስ መስመር"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "በ ቁመት መከመሪያ (2 አካላቶች)"
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "በ ቁመት መከመሪያ"
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrix Stack"
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "በ ግራ ማሰለፊያ"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "መሀከል ማሰለፊያ"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "በ ቀኝ ማሰለፊያ"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "አሌፍ"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "ባዶ ስብስብ"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "ሪይል አካል"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "ኢማጂነሪ አካል"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "ኢንፊኒቲ"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "በከፊል"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "ናብላ"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "ዌይርስታራስ p"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "ነጥቦች ከ መሀከል"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "ነጥቦች ወደ ላይ"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "ነጥቦች ወደ ታች"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "ነጥቦች ከ ታች"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "ነጥቦች በ ቁመት"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "ማገናኛ"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "ማካፈያ (ሰፊ ጭረት)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "ማካፈያ (መቁጠሪያ ሰፊ ጭረት)"
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "ማካፈያ"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "አያካፍልም"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "ድርብ ቀስት በ ግራ"
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "ድርብ ቀስት በ ግራ እና በ ቀኝ"
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "ድርብ ቀስት በ ቀኝ"
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "የ ተፈጥሮ ቁጥሮች ስብስብ"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "የ ኢንቲጀር ስብስብ"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "የ ራሺናል ቁጥሮች ስብስብ"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "የ ሪያል ቁጥሮች ስብስብ"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "የ ውስብስብ ቁጥሮች ስብስብ"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "ትልቅ ስርከምፍሌክስ"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "ትልቅ ቲልዴ"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "ትልቅ የ አቅጣጫ ቀስት"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "ትልቅ ሀርፑን"
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h ባር"
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "ላምብዳ ባር"
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "የ ግራ ቀስት"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "የ ቀኝ ቀስት"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "የ ላይ ቀስት"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "የ ታች ቀስት"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "ክፍተት የለም"
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "ይቀድማል"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "ይቀድማል ወይንም እኩል ነው"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "ይቀድማል ወይንም ተመሳሳይ ነው"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "ተሳክቷል"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "ተሳክቷል ወይንም እኩል ነው"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "ተሳክቷል ወይንም ተመሳሳይ ነው"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "አይቀድምም"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "አልተሳካም"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Unary/Binary Operators"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "ግንኙነቱ"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "ተግባሮች ማሰናጃ"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ተግባሮች"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "አንቀሳቃሽ"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "ባህሪዎች"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "ቅንፎች"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "አቀራረብ"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "ሌሎችም"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "ምሳሌዎች"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "ሰርከምፍራንስ"
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "ፓይታጎሪያን ቴረም"
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "የ ጋውስ ስርጭት"
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "መደበኛ"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ማድመቂያ"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "ጥቁር"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ሰማያዊ"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "አረንጓዴ"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "ቀይ"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ግራጫ"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "ሎሚ"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "የ ሸክላ ቀለም"
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ሰማያዊ"
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ወይራ"
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ወይን ጠጅ"
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ብር"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "አረንጓዴ ሰማያዊ"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "ቢጫ"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "መደበቂያ"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "መጠን"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "ፊደል"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "በ ግራ"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "መሀከል"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "በ ቀኝ"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ትእዛዞች"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "መቀመሪያ"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ሰነዶችን በማስቀመጥ ላይ..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION መቀመሪያ"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ስህተት : "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "ያልተጠበቀ ባህሪ"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "ያልተጠበቀ ምልክት"
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' የተጠበቀ"
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' የተጠበቀ"
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' የተጠበቀ"
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' የተጠበቀ"
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "የ ግራ እና የ ቀኝ ምልክቶች አይመሳሰሉም"
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', or 'serif' expected"
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'መጠን' ያልተጠበቀ ምልክት አስከትሎ"
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "ድርብ ማሰለፊያ አይፈቀድም"
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "ድርብ በትንንሽ ዝቅ/ከፍ ብሎ መጻፍ አይቻልም"
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' የተጠበቀ"
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ቀለም ያስፈልጋል"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'ቀኝ' የተጠበቀ"
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ይዞታዎች"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~አርእስት"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "የ ~መቀመሪያ ጽሁፍ"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ድ~ንበሮች"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "መጠን"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ዋ~ናው መጠን"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "በ ~ገጹ ልክ"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~መመጠኛ"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index d8e885ea005..9e9168e9754 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-04 19:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
"Language: am\n"
@@ -814,5736 +814,5742 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "በተቃራኒው ደንብ ከ %1"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "ማንቀሳቀሻ %1"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "እንደገና መመጠኛ %1"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "ማዞሪያ %1"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "መገልበጫ %1 በ አግድም"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "መገልበጫ %1 በ ቁመት"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "መገልበጫ %1 በሰያፍ"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "መገልበጫ %1 ነፃ እጅ"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "ማጣመሚያ %1 (ማዘንበያ)"
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "ማዘጋጃ %1 በክብ"
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "መታጠፊያ %1 በክብ"
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "ማጣመሚያ %1"
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "መተው %1"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "የ ቤዤ ባህሪዎች ማሻሻያ በ %1"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "የ ቤዤ ባህሪዎች ማሻሻያ በ %1"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "የ መውጫ አቅጣጫ ማሰናጃ ለ %1"
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "ተዛማጅ ባህሪዎች ማሰናጃ በ %1"
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "መነሻ ነጥቦች ማሰናጃ ለ %1"
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "ቡድን %1"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "መለያያ %1"
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "ባህሪዎች መፈጸሚያ ወደ %1"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "ዘዴዎች መፈጸሚያ ወደ %1"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "ዘዴዎች ማስወገጃ ከ %1"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "መቀየሪያ %1 ወደ ፖሊጎን"
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "መቀየሪያ %1 ወደ ፖሊጎን"
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "መቀየሪያ %1 ወደ መታጠፊያ"
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "መቀየሪያ %1 ወደ ክቦች"
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "መቀየሪያ %1 ወደ ቅርጽ"
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "መቀየሪያ %1 ወደ ቅርጾች"
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "ማሰለፊያ %1"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "ማሰለፊያ %1 ወደ ላይ"
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "ማሰለፊያ %1 ወደ ታች"
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "በ አግድም መሀከል ላይ %1"
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "ማሰለፊያ %1 ወደ ግራ"
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "ማሰለፊያ %1 ወደ ቀኝ"
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "በ ቁመት መሀከል ላይ %1"
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "መሀከል %1"
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "መቀየሪያ %1"
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "መቀላቀያ %1"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "ማዋሀጃ %1"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "መቀነሻ %1"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "መገናኛ %1"
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "የተመረጡትን እቃዎች ማከፋፈያ"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "ስፋት እኩል ማድረጊያ %1"
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "እርዝመት እኩል ማድረጊያ %1"
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "መቀላቀያ %1"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "መክፈያ %1"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "መክፈያ %1"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "መክፈያ %1"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "እቃ(ዎች) ማስገቢያ"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "ነጥብ ማስገቢያ ወደ %1"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr "መጋጠሚያ ነጥብ ማስገቢያ ወደ %1"
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "መነሻ-ነጥቡን ማንቀሳቀሻ"
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Geometrically change %1"
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "ማንቀሳቀሻ %1"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "እንደገና መመጠኛ %1"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "ማዞሪያ %1"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "መገልበጫ %1 በ አግድም"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "መገልበጫ %1 በ ቁመት"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "መገልበጫ %1 በሰያፍ"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "መገልበጫ %1 ነፃ እጅ"
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Interactive gradient for %1"
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Interactive transparency for %1"
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "ማጣመሚያ %1 (ማዘንበያ)"
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "ማዘጋጃ %1 በክብ"
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "መታጠፊያ %1 በክብ"
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "ማጣመሚያ %1"
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "መከርከሚያ %1"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Alter radius by %1"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "መቀየሪያ %1"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "እንደገና መመጠኛ %1"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "ማንቀሳቀሻ %1"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "መጨረሻ ነጥብ ማንቀሳቀሻ ከ %1"
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "ማእዘን ማስተካከያ በ %1"
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "መቀየሪያ %1"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "ጽሁፍ ማረሚያ: አንቀጽ %1, ረድፍ %2, አምድ %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 ተመርጧል"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "ነጥብ ከ %1"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 ነጥቦች ከ %1"
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr "መጋጠሚያ ነጥብ ከ %1"
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr "%2 መጋጠሚያ ነጥቦች ከ %1"
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "እቃዎችን ምልክት ማድረጊያ"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "ተጨማሪ እቃዎችን ምልክት ማድረጊያ"
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "ነጥቦችን ምልክት ማድረጊያ"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "ተጨማሪ ነጥቦችን ምልክት ማድረጊያ"
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr "መጋጠሚያ ነጥቦችን ምልክት ማድረጊያ"
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr "ተጨማሪ መጋጠሚያ ነጥቦችን ምልክት ማድረጊያ"
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "መፍጠሪያ %1"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "ማስገቢያ %1"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "ኮፒ %1"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "የእቃዎችን ተራ መቀየሪያ ከ %1"
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "ጽሁፍ ማረሚያ ከ %1"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "ገጽ ማስገቢያ"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "ገጽ ማጥፊያ"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "ገጽ ኮፒ ማድረጊያ"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "የ ገጾችን ተራ መቀየሪያ"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "የ መደብ ገጽ መመደቢያውን ማጽጃ"
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "የ መደብ ገጽ መመደቢያውን መቀየሪያ"
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "ሰነድ ማስገቢያ"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "ደረጃ ማስገቢያ"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "ደረጃ ማጥፊያ"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "የ እቃውን ስም መቀየሪያ ከ %1 ወደ"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "የ እቃውን አርእስት መቀየሪያ ከ %1"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "የ እቃውን መግለጫ መቀየሪያ ከ %1"
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "ማብሪያ"
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "ማጥፊያ"
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "አዎ"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "አይ"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "አይነት 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "አይነት 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "አይነት 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "አይነት 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "በ አግድም"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "በ ቁመት"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "ማጥፊያ"
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "ተመጣጣኝ"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "በመጠኑ ልክ (ሁሉንም አምዶች ለየብቻ) "
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "ጠንካራ ባህሪዎች መጠቀሚያ"
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "ከ ላይ"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "መሀከል"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "ከ ታች"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "ጠቅላላ እርዝመቱን መጠቀሚያ"
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "የተስፋፋ"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "በ ግራ"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "መሀከል"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "ጠቅላላ ስፋቱን መጠቀሚያ"
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "የተስፋፋ"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "ማጥፊያ"
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "ብርሃን"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "በውስጡ መሸብለያ"
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "ማፈራረቂያ"
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "በውስጥ መሸብለያ"
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "በ ግራ"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "ላይ"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "በ ቀኝ"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "ከ ታች"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "መደበኛ አገናኝ"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "በ መስመር አገናኝ"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "በ ቀጥታ አገናኝ"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "በ ክብ አገናኝ"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "መደበኛ"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Radius"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "ራሱ በራሱ"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr "ውጪ በ ግራ በኩል"
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "ውስጥ (መሀከል)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr "ውጪ በ ቀኝ በኩል"
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "ራሱ በራሱ"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "በመስመሩ ላይ"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "የተሰበረ መስመር"
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "ከ መስመሩ በታች"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "መሀከል"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "ሙሉ ክብ"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "ክብ ፓይ"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "የክብ ክፋይ"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "ቅስት"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "ያልታወቀ ባህሪ"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "የመስመር ዘዴ"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "የ ንድፍ መስመር"
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "የ መስመር ስፋት"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "የ መስመር ቀለም"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "የ መስመር ራስጌ"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "የ መስመር መጨረሻ"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "የ ራስጌ መስመር ስፋት"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "የ መስመር መጨረሻ ስፋት"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "መሀከል የ ቀስት ራስጌ"
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "መሀከል የ ቀስት መጨረሻ"
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "የመስመር ግልጽነት"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "የመስመር መገናኛ"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "የ መስመር ባህሪዎች"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "ዘዴ መሙያ"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "ቀለም መሙያ"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "በርካታ መስመር"
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Fillbitmap"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "ግልጽነት"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "የከፍታ መለኪያ ደረጃዎች ቁጥር"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "ጡብ መሙያ"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "የ bitmap መሙያ ቦታ"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "የ bitmap መሙያ ስፋት"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "የ bitmap መሙያ እርዝመት"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "ግልጽ ከፍታ መለኪያ"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "መሙያ መጠባበቂያ ለ 2"
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "የጡብ መጠን አይደለም በ %"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "የጡብ ማካካሻ X በ %"
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "የጡብ ማካካሻ Y በ %"
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Bitmap መመጠኛ"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "የጡብ ቦታ X በ %"
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "የጡብ ቦታ Y በ %"
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "መደብ መሙያ"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "የ ቦታ ባህሪዎች"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "የ ፊደል ስራ ዘዴ"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "የ ፊደል ስራ ማሰለፊያ"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "የ ፊደል ስራ ክፍተት"
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "የ ፊደል ስራ የ ፊደል መጀመሪያ"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "የ ፊደል ስራ የተንፀባረቀ"
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "የ ፊደል ስራ ረቂቅ"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "የ ፊደል ስራ ጥላ"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "የ ፊደል ስራ ጥላ ቀለም"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "የ ፊደል ስራ ጥላ ማካካሻ X"
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "የ ፊደል ስራ ጥላ ማካካሻ Y"
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "የ ፊደል ስራ ረቂቅ መደበቂያ"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "የ ፊደል ስራ ጥላ ግልጽነት"
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "ጥላ"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "የ ጥላ ቀለም"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "የጥላ ክፍተት ከ X"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "የጥላ ክፍተት ከ Y"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "የጥላ ግልጽነት"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3ዲ ጥላ"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "የጥላ እይታ"
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "የመግለጫው አይነት"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "የተወሰነ መግለጫ ማእዘን"
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "የመግለጫ ማእዘን"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "የ መግለጫ መስመሮች ክፍተት"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "ከ መግለጫ ማሰለፊያ መውጫ"
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "ከ መግለጫ ግንኙነት መውጫ"
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "ከ መግለጫ ግንኙነት መውጫ"
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "ከ መግለጫ ፍጹም መውጫ"
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "የመግለጫ መስመር እርዝመት"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "የ መግለጫ መስመሮች በራሱ እርዝመት"
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "የጥግ radius"
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "አነስተኛው የክፈፍ እርዝመት"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "በራሱ በ እርዝመቱ ልክ"
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "ጽሁፍ በክፈፉ ልክ"
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "የ ግራ ጽሁፍ ክፈፍ ክፍተት"
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "የ ቀኝ ጽሁፍ ክፈፍ ክፍተት"
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "የላይ ጽሁፍ ክፈፍ ክፍተት"
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "የታች ጽሁፍ ክፈፍ ክፍተት"
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "በ ቁመት ጽሁፍ ማስቆሚያ"
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "ከፍተኛው የክፈፍ እርዝመት"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "ዝቅተኛው የ ክፈፍ ስፋት"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "ከፍተኛው የ ክፈፍ ስፋት"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "በራሱ በ ስፋቱ ልክ"
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "በ አግድም ጽሁፍ ማስቆሚያ"
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "ቆጣሪ"
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "የቆጣሪ አቅጣጫ"
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "ቆጣሪ በውስጥ ማስጀመሪያ"
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "ቆጣሪ በውስጥ ማቆሚያ"
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "ቆጣሪው የሄዳቸው ቁጥሮች"
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "የቆጣሪው ፍጥነት"
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "የቆጣሪው ደረጃ መጠን"
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "የ ጽሁፍ ፍሰት ረቂቅ"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "የ ተጠቃሚ-መግለጫ ባህሪዎች"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "ነፃ-የፊደል መስመር ክፍተት መጠቀሚያ"
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "በቅርጹ ቃላት መጠቅለያ ጽሁፍ"
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr "የሚቀጥለው አገናኝ በ ጽሁፍ ሰንሰለት ውስጥ"
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "የ አገናኙ አይነት"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "በ አግድም የ እቃ ክፍተት 1"
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "በ ቁመት የ እቃ ክፍተት 1"
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "በ አግድም የ እቃ ክፍተት 2"
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "በ ቁመት የ እቃ ክፍተት 2"
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "የ መጋጠሚያ እቃ ክፍተት 1"
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "የ መጋጠሚያ እቃ ክፍተት 2"
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "የሚንቀሳቀሱ መስመሮች ቁጥር"
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "ማካካሻ መስመር 1"
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "ማካካሻ መስመር 2"
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "ማካካሻ መስመር 3"
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Type of dimensioning"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "የ አቅጣጫ ዋጋ - በ አግድም ቦታ"
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "የ Dimension ዋጋ - በቁመት ቦታ"
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "የ Dimension መስመር ቦታ"
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "የ Dimension እርዳታ መስመር ማስፋፊያ"
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "የ አቅጣጫ እርዳታ መስመር ክፍተት"
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "ያልተፈጸመ ስራ ከ Dimension እርዳታ መስመር 1"
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "ያልተፈጸመ ስራ ከ Dimension እርዳታ መስመር 2"
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "ዝቅተኛ ጠርዝ dimensioning"
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "የ Dimension ዋጋ ከ dimension መስመር ባሻገር"
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "የ dimension ዋጋ በ 180 ዲግሪ ማዞሪያ"
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "የ Dimension መስመር ማስፊያ"
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "መለኪያ ክፍል"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "ተጨማሪ የ መለኪያ ምክንያት"
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "መለኪያ ክፍል ማሳያ"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "የ አቅጣጫ ዋጋ አቀራረብ"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "የ አቅጣጫ ዋጋ በራሱ ቦታ መመደቢያ"
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "የ አቅጣጫ ዋጋ ራሱ በራሱ ቦታ መመደቢያ Angle"
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "የ dimension ዋጋ መመደቢያ ማእዘን መወሰኛ"
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "የ dimension ዋጋ ማእዘን"
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "የዴሲማል ቦታዎች"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "የክቡ አይነት"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "ማእዘን መጀመሪያ"
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "ማእዘን መጨረሻ"
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "የሚጠበቁ የእቃዎች ቦታ"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "የሚጠበቁ የእቃዎች መጠን"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "ሊታተም የሚችል እቃ"
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "የሚታይ እቃ"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "ደረጃ መለያ"
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "ደረጃ"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "የእቃው ስም"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "የ X, ቦታ ተፈጽሟል"
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "የ Y, ቦታ ተፈጽሟል"
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "ጠቅላላ ስፋት"
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "ጠቅላላ እርዝመት"
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "የ X ነጠላ ቦታ"
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "የ Y ነጠላ ቦታ"
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "ነጠላ ስፋት"
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "ነጠላ እርዝመት"
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "የ Logical ስፋት"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "የ Logical እርዝመት"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "ነጠላ ማዞሪያ ማእዘን"
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "ነጠላ መቁረጫ ማእዘን"
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "በ አግድም ማንቀሳቀሻ"
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "በ ቁመት ማንቀሳቀሻ"
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "እንደገና መመጠኛ X, ነጠላ"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "እንደገና መመጠኛ Y, ነጠላ"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "ነጠላ ማዞሪያ"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "ነጠላ በ አግድም መቁረጫ"
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "ነጠላ በ ቁመት መቁረጫ"
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "X, እንደገና መመጠን ተፈጽሟል"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Y, እንደገና መመጠን ተፈጽሟል"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "ሁሉንም ማዞሪያ"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "በ አግድም መቁረጥ ተፈጽሟል"
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "በ ቁመት መቁረጥ ተፈጽሟል"
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "መነሻ ነጥብ 1 X"
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "መነሻ ነጥብ 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "መነሻ ነጥብ 2 X"
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "መነሻ ነጥብ 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "ጭረት"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "ነጥቦች ማሳያ"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "ቁጥር መስጫ ማስረጊያ"
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "ቁጥር መስጫ ደረጃ"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "ነጥቦች እና ቁጥር መስጫዎች"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "ማስረጊያዎች"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "የ አንቀጽ ክፍተት"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "የ መስመር ክፍተት"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "አንቀጽ ማሰለፊያ"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "መቁጠሪያዎች"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "የ ፊደል ቀለም"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "ባህሪ ማሰናጃ"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "የ ፊደል መጠን"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "የ ፊደል ስፋት"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "ማድመቂያ (ውፍረቱ)"
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "ከ ስሩ ማስመሪያ"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "ከ ላይ ማስመሪያ"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "በላዩ ላይ መሰረዣ"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "ረቂቅ"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "የፊደል ጥላ"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "በትንንሹ ከፍ ብሎ መጻፊያ/በትንንሹ ዝቅ ብሎ መጻፊያ"
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Kerning"
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Manual kerning"
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "ለ ክፍተቶች ከ ስሩ አታስምር"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "መቁጠሪያ"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "በምርጫ መስመር መስበሪያ"
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "ሊቀየር-የማይችል ባህሪ"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "ሜዳዎች"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "ቀይ"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "ብርሁነት"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "አነጻጻሪ"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "ግልጽነት"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "መገልበጫ"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "የ ምስል ዘዴ"
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "መከርከሚያ"
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "ብዙሀን መገናኛ እቃ"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "ብዙሀን መገናኛ እቃዎች"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "አምድ ማስገቢያ"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "ረድፍ ማስገቢያ"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "አምድ ማጥፊያ"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "ረድፍ ማጥፊያ"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "ክፍሎች መክፈያ"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "ክፍሎች ማዋሀጃ"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "የ ክፍሎች አቀራረብ"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "ረድፎች ማከፋፈያ"
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "አምዶች ማከፋፈያ"
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "የ ክፍል ይዞታዎችን ማጥፊያ"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "የሰንጠረዥ ዘዴ"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "የሰንጠረዥ ዘዴ ማሰናጃዎች"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "ሰንጠረዥ"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "ሰንጠረዦች"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "የ ፊደል ስራ"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "የሚቀጥል"
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Bitmap"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "ንድፍ"
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "ያልተሰየመ ንድፍ"
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "የመስመር ዘዴ"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "ምንም"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "ቀለም"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "በርካታ መስመር"
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "የ ቀስት ራስጌዎች"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "ቀስት"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "ስኴር"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "ክብ"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- ምንም -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "ግልጽነት"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "መሀከል"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "መሀከል ያልሆነ"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "ነባር"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "ግራጫማ"
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "ጥቁር/ነጭ"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "Watermark"
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr "ጥቁር ቀይ 2"
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "ሰማያዊ"
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "ቢጫ"
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr "ጥቁር ሰማያዊ 1"
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr "ነጣ ያለ ሰማያዊ 2"
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "ጥቁር"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "ግራጫ"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "ነጭ"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "ቢጫ"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "ወርቅ"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "ብርቱካን"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "ሸክላ"
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "ቀይ"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Magenta"
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Purple"
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "ሐምራዊ ሰማያዊ"
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "አረንጓዴ ሰማያዊ"
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "ሎሚ"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "ነጣ ያለ ግራጫ"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "ነጣ ያለ ቢጫ"
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "ነጣ ያለ ወርቅ"
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "ነጣ ያለ ብርቱካን"
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "ነጣ ያለ ሸክላ"
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "ነጣ ያለ ቀይ"
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr "ነጣ ያለ ማጄንታ"
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "ነጣ ያለ ሀምራዊ"
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "ነጣ ያለ ሐምራዊ ሰማያዊ"
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "ነጣ ያለ ሰማያዊ"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "ነጣ ያለ አረንጓዴ ሰማያዊ"
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "ነጣ ያለ አረንጓዴ"
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "ነጣ ያለ ሎሚ"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "ጥቁር ግራጫ"
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "ጥቁር ቢጫ"
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "ጥቁር ወርቅ"
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "ጥቁር ብርቱካን"
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "ጥቁር ሸክላ"
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "ጥቁር ቀይ"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr "ጥቁር ማጄንታ"
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "ጥቁር ሀምራዊ"
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "ጥቁር ሐምራዊ ሰማያዊ"
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "ጥቁር ሰማያዊ"
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "ጥቁር አረንጓዴ ሰማያዊ"
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "ጥቁር አረንጓዴ"
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "ጥቁር ሎሚ"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "ወይን ጠጅ"
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "ወይን ጠጅ (Out of Gamut)"
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "ሰማያዊ (Out of Gamut)"
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "ነጣ ያለ ሰማያዊ (Out of Gamut)"
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "የ ፀደይ አረንጓዴ (Out of Gamut)"
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "አረንጓዴ (Out of Gamut)"
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "ፈዛዛ አረንጓዴ (Out of Gamut)"
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "ብርቱካን (Out of Gamut)"
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "ቀይ (Out of Gamut)"
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "ሮዝ (Out of Gamut)"
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr "ነጣ ያለ ሰማያዊ"
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "ሲያን"
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr "የ ፀደይ አረንጓዴ"
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr "ፈዛዛ አረንጓዴ"
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr "ሮዝ"
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "ሰማያዊ"
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "ሰማያዊ ግራጫ"
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Bordeaux"
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "ደብዛዛ ቢጫ"
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "ደብዛዛ አረንጓዴ"
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "ጥቁር የወይን ጠጅ"
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Salmon"
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "ባህር ሰማያዊ"
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "ቻርት"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "ሰማያዊ"
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "ቢጫ አረንጓዴ"
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "ሮዝ"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "ሰማያዊ አረንጓዴ"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3ዲ"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "ጥቁር 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "ጥቁር 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "ቡናማ"
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "ገንዘብ"
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "ገንዘብ 3ዲ"
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "ግራጫ ገንዘብ"
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "ገንዘብ ፈዛዛ ወይን ጠጅ"
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "ገንዘብ ሰማያዊ አረንጓዴ"
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "ግራጫ"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "ፈዛዛ ወይን ጠጅ"
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "ቀይ"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "ሰማያዊ አረንጓዴ"
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "ቢጫ"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr "ትምህርት"
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "የ ሳጥን ዝርዝር ሰማያዊ"
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "የ ሳጥን ዝርዝር አረንጓዴ"
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "የ ሳጥን ዝርዝር ቀይ"
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "የ ሳጥን ዝርዝር ቢጫ"
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "ድንቅ"
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "ገንዘብ"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr "ቀላል የ አምዶች መጋጠሚያ"
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr "ቀላል የ ረድፎች መጋጠሚያ"
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr "ቀላል የ ዝርዝር ጥላ"
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "መካከለኛ የ መስመር መገናኛ"
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "የ መስመር ማገናኛ ስላሽ"
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "miter የመስመር ማገናኛ"
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "ክብ የመስመር ማገናኛ"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "የመስመር ባርኔጣ ጠፍጣፋ"
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "የመስመር ባርኔጣ ክብ"
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "የ መስመር ባርኔጣ ስኴር"
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "ቀጥተኛ ሰማያዊ/ነጭ"
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "ቀጥተኛ ቀይ ወይን ጠጅ/አረንጓዴ"
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "ቀጥተኛ ቢጫ/ቡናማ"
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "ተሽከርካሪ አረንጓዴ/ጥቁር"
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "ተሽከርካሪ ቀይ/ቢጫ"
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "አራት ማእዘን ቀይ/ነጭ"
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "ስኴር ቢጫ/ነጭ"
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "ኤሊፕሶይድ ሰማያዊ ግራጫ/ነጣ ያለ ሰማያዊ"
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Axial light ቀይ/ነጭ"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "በሰያፍ 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "በሰያፍ 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "በሰያፍ 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "በሰያፍ 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "በሰያፍ 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "በሰያፍ 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "በሰያፍ 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "በሰያፍ 4r"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "በ ሰያፍ ሰማያዊ"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "በ ሰያፍ አረንጓዴ"
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "በሰያፍ ብርቱካንማ"
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "በሰያፍ ቀይ"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "በ ሰያፍ ሰማያዊ አረንጓዴ"
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "በሰያፍ የወይን ጠጅ"
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "ከ ጥግ"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "ከ ጥግ: ሰማያዊ"
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "ከ ጥግ: አረንጓዴ"
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "ከ ጥግ , ብርቱካንማ"
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "ከ ጥግ , ቀይ"
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "ከ ጥግ: ሰማያዊ አረንጓዴ"
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "ከ ጥግ , የወይን ጠጅ"
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "ከ መሀከል"
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "ከ መሀከል: ሰማያዊ"
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "ከ መሀከል: አረንጓዴ"
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "ከ መሀከል: ብርቱካን"
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "ከ መሀከል: ቀይ"
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "ከ መሀከል: ሰማያዊ አረንጓዴ"
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "ከ መሀከል: የ ወይን ጠጅ"
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "በ አግድም"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "በ አግድም ሰማያዊ"
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "በ አግድም አረንጓዴ"
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "በ አግድም ብርቱካንማ"
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "በ አግድም ቀይ"
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "በ አግድም ሰማያዊ አረንጓዴ"
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "በ አግድም የ ወይን ጠጅ"
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "ተሽከርካሪ"
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "ተሽከርካሪ ሰማያዊ"
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "ተሽከርካሪ አረንጓዴ"
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "ተሽከርካሪ ብርቱካንማ"
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "ተሽከርካሪ ቀይ"
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "ተሽከርካሪ ሰማያዊ አረንጓዴ"
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "ተሽከርካሪ ወይን ጠጅ"
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "በ ቁመት"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "በ ቁመት ሰማያዊ"
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "በ ቁመት አረንጓዴ"
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "በ ቁመት ብርቱካንማ"
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "በ ቁመት ቀይ"
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "በ ቁመት ሰማያዊ አረንጓዴ"
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "በ ቁመት የወይን ጠጅ"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "ግራጫ ከፍታ"
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "ቢጫ ከፍታ"
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "ብርቱካን ከፍታ"
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "ቀይ ከፍታ"
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "ሮዝ ከፍታ"
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "ሰማይ"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "ሲያን ከፍታ"
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "ሰማያዊ ከፍታ"
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "የ ወይን ጠጅ ቧንቧ"
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "ሌሊት"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "አረንጓዴ ከፍታ"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr "እቅፍ አበባ"
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr "ሕልም"
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr "ሰማያዊ ችቦ"
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr "ባዶ በ ግራጫ"
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr "ግራጫ ምልክት"
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr "የ ለንደን ጤዛ"
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr "ሰማያዊ አረንጓዴ"
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr "እኩለ ሌሊት"
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr "ጥልቅ ውቂያኖስ"
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr "ሰርጓጅ መርከብ"
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr "አረንጓዴ ሳር"
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr "የ ኔዮን ብርሃን"
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr "የ ፀሐይ ብርሃን"
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr "አሁን"
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "ባዶ"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr "ነጭ የ ተቀባ"
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr "የ ወረቀት ገጽታ"
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr "የ ተጨራመተ ወረቀት"
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr "የ ወረቀት ግራፍ"
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "ብራና ወረቀት"
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr "አጥር"
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr "የ እንጨት መክተፊያ"
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr "ቅጠሎች"
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr "የ ቤት ደጃፍ"
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr "ባለ ቀለም ጠጠር"
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr "የ ቡና ፍሬ"
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr "ትንሽ ደመና"
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr "ሸክላዎች"
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr "የ ድንጋይ ግድግዳ"
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr "የ ሜዳ አህያ"
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr "ባለ ቀለም መቀነት"
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr "ጠጠር"
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr "ብራና"
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr "የ ማታ ሰማይ"
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "መዋኛ"
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Bitmap"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 ፐርሰንት"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 ፐርሰንት"
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 ፐርሰንት"
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 ፐርሰንት"
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 ፐርሰንት"
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 ፐርሰንት"
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 ፐርሰንት"
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 ፐርሰንት"
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 ፐርሰንት"
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 ፐርሰንት"
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 ፐርሰንት"
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 ፐርሰንት"
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "ብርሃን ወደ ታች በ ሰያፍ"
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "ብርሃን ወደ ላይ በ ሰያፍ"
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "ጨለማ ወደ ታች በ ሰያፍ"
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "ጨለማ ወደ ላይ በ ሰያፍ"
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "ሰፊ ወደ ታች በ ሰያፍ"
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "ሰፊ ወደ ላይ በ ሰያፍ"
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "ብርሃን በ ቁመት"
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "ብርሃን በ አግድም"
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "ጠባብ በ ቁመት"
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "ጠባብ በ አግድም"
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "ጨለማ በ ቁመት"
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "ጨለማ በ አግድም"
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "ጭረት ወደ ታች በ ሰያፍ"
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "ጭረት ወደ ላይ በ ሰያፍ"
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "ጭረት በ አግድም"
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "ጭረት በ ቁመት"
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "ትንሽ የሚበተን ወረቀት"
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "ትልቅ የሚበተን ወረቀት"
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "ዚግ ዛግ"
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "ማዕበል"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "ሸክላ በ ሰያፍ"
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "ሸክላ በ አግድም"
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "ጉንጉን"
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "ሰንጠረዥ"
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "ሽንቁር"
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "ነጠብጣብ መጋጠሚያ"
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "ነጠብጣብ አልማዝ"
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "ተደራራቢ"
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "መወጣጫ"
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "ስፌር"
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "ትንሽ መጋጠሚያ"
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "ትልቅ መጋጠሚያ"
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "ትንሽ ዳማ መጫወቻ"
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "ትልቅ ዳማ መጫወቻ"
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "ረቂቅ አልማዝ"
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "ሙሉ አልማዝ"
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "በ ቁመት"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "በ አግድም"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "ወደ ታች በ ሰያፍ"
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "ወደ ላይ በ ሰያፍ"
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "መስቀል"
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "መስቀል በ ሰያፍ"
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "ሁሉንም አቀራረብ"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "ስኴር 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "ድርብ ቀስት"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "ክብ"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "ስኴር"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "ቀስት"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "ያልተሞላ ሶስት ማእዘን"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "ያልተሞላ አልማዝ"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "አልማዝ"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "ያልተሞላ ክብ"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "ስኴር 45 ያልተሞላ"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "ስኴር ያልተሞላ"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "ግልጽነት"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr "አረንጓዴ 1 (%PRODUCTNAME ዋናው ቀለም)"
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "አረንጓዴ ማጉሊያ"
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "ሰማያዊ ማጉሊያ"
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "ብርቱካንማ ማጉሊያ"
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Purple"
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "ወይን ጠጅ ማጉሊያ"
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "ቢጫ ማጉሊያ"
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "የ አዳራሽ ገጽታ"
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "ተሳክተው ድነዋል"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "ዋናው የዳነው ስነድ"
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "ማዳን አልተቻለም"
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "ማዳን በሂደት ላይ"
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "ማዳኑ ገና አልጨረሰም"
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION የ እርስዎን ሰነድ ማዳን ይጀምራል: እንደ ሰነዶቹ መጠን ሂደቱ ትንሽ ጊዜ ይወስዳል"
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "የ እርስዎን ሰነድ ማዳኑን ጨርሷል ይጫኑ 'መጨረሻ' የሚለውን ሰነዶቹን ለማየት"
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~መጨረሻ"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "የ መጨረሻው ዋጋ ማስተካከያ"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "ነጥብ"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "ምስል መላኪያ"
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "እንደ ምስል ማስቀመጫ"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "እቃ(ዎች) ማስገቢያ"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "3ዲ እቃ ማሽከርከሪያ"
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "የ ማሾለኪያ እቃ መፍጠሪያ"
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "የሚሽከረከር እቃ መፍጠሪያ"
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "3ዲ እቃዎችን መክፈያ"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[All]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "ንድፎች ማጣሪያ"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "አዲስ አርእስት"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3ዲ ውጤቶች"
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "እንቅስቃሴ"
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "ነጥቦች"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "ቢሮ"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "ባንዲራዎች"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "የ ሂደት ቻርትስ"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "የስሜት ምልክቶች"
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "ምስሎች"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "መደቦቹ"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "የ ገጽ ቤት"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "ተፅእኖው"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "ካርታዎች"
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "ሰዎች"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "የውጪ ክፍል"
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "ኮምፒዩተሮች"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "ስእላዊ መግለጫ"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "አካባቢ"
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "ገንዘብ"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "መጓጓዣ"
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "የጽሁፍ ቅርጾች"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "ድምጾች"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "ምልክቶች"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "የኔ አርእስት"
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "ቀስቶች"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "ፊኛዎች"
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "የ ፊደል ገበታ"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "ሰአት"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "ማቅረቢያ"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "ቀን መቁጠሪያ"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "መቃኛ"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "ግንኙነት"
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "ገንዘብ"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "ኮምፒዩተሮች"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "የአየር ፀባይ"
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "ትምህርት ቤት & ዩኒቨርስቲ"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "ችግር አፈታት"
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans"
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "የህትመት ምርጫዎች"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "ጠቅላላ ሰነዱን ማተም ይፈልጋሉ ወይም የተመረጠውን?"
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~ሁሉንም"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "~ምርጫ"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "ወደ ሰሜን-ምእራብ ማሾለኪያ"
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "ወደ ሰሜን ማሾለኪያ"
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "ወደ ሰሜን-ምስራቅ ማሾለኪያ"
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "ወደ ምእራብ ማሾለኪያ"
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "ወደ ኋላ ማሾለኪያ"
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "ወደ ምስራቅ ማሾለኪያ"
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "ወደ ደቡብ-ምእራብ ማሾለኪያ"
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "ወደ ደቡብ ማሾለኪያ"
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "ወደ ደቡብ-ምስራቅ ማሾለኪያ"
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 ሴሚ"
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 ሴሚ"
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 ሴሚ"
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 ሴሚ"
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~ሴሚ"
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 ኢንች"
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.~5 ኢንች"
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 ኢንች"
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 ኢንች"
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 ኢንች"
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "መሙያ የለም"
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "ግልጽነት"
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "ነባር"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "ድንበሮች"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "የድንበሮች ዘዴ"
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "ተጨማሪ ቁጥር መስጫ..."
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "ተጨማሪ ነጥቦች..."
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "በ ደራሲው"
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "ገጾች"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "አቀራረብ ማጽጃ"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "ተጨማሪ ዘዴዎች..."
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "ተጫማሪ ምርጫዎች..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "የፊደሉ ስም"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "የ ፊደሉ ስም: የ አሁኑ ፊደል ዝግጁ አይደለም እና በሌላ ይቀየራል"
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "ማስተካከያ"
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "የ ሰነድ ቀለሞች"
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "የ ሰነድ ቀለሞች"
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "ማሾለኪያ"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "ማሾለኪያ ማብሪያ/ማጥፊያ መፈጸሚያ"
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "ወደ ታች ማዘንበያ"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "ወደ ላይ ማዘንበያ"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "ወደ ግራ ማዘንበያ"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "ወደ ቀኝ ማዘንበያ"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "የ ማሾለኪያ ጥልቀት መቀየሪያ"
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "አቅጣጫ መቀየሪያ"
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Change Projection Type"
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "ብርሃን መቀየሪያ"
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "ብሩህነቱን መቀየሪያ"
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "የ ማሾለኪያ ገጽታ መቀየሪያ"
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "የ ማሾለኪያ ቀለም መቀየሪያ"
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "የምወዳቸው"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "የ ፊደል ስራ"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "የ ፊደል ስራ ቅርጽ መፈጸሚያ"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "የ ፊደል ስራ ተመሳሳይ የ ፊደል እርዝመት መፈጸሚያ"
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "የ ፊደል ስራ ማሰለፊያ መፈጸሚያ"
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "የ ፊደል ስራ ባህሪ ክፍተት መፈጸሚያ"
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "ጋር"
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "ዘዴ"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "እና"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "የጠርዝ መቆጣጠሪያ"
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "የጠርዝ ነጥቦች መምረጫ"
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "ከ ላይ በ ግራ በኩል"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "ከ ላይ መሀከል"
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "ከ ላይ በ ቀኝ በኩል"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "በ ግራ በኩል መሀከል"
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "መሀከል"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "በ ቀኝ በኩል መሀከል"
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "ከ ታች በ ግራ በኩል"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "ከ ታች መካከል"
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "ከ ታች በ ቀኝ በኩል"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "ቅርጽ መቆጣጠሪያ"
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "እዚህ ነው ቅርጹን የሚያርሙት"
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "የ ተለዩ ባህሪዎች ማረሚያ"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "የ ተለዩ ባህሪዎች ከዚህ አካባቢ ይምረጡ"
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "የ ባህሪዎች ኮድ "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "በ ሜዳው ውስጥ ማስገባት ያስፈልጋል '#'. እባክዎን ዋጋ ያስገቡ"
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "ፎርሞች"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "መቆጣጠሪያ አልተመረጠም"
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "ባህሪዎች : "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "ባህሪዎች መፍጠሪያ"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "መቃኛ መፍጠሪያ"
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "ፎርም"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "ፎርም"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "የተደበቀ መቆጣጠሪያ"
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "መቆጣጠሪያ"
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "መቅረጫ"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "ከ"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "ሜዳ መጨመሪያ :"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "ዳታ ወደ ዳታቤዝ ሲጻፍ ስህተት ተፈጥሯል"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Syntax error in query expression"
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "1 መዝገብ ሊያጠፉ ነው"
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# መዝገብ ይጠፋል"
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6553,331 +6559,337 @@ msgstr ""
"ለማንኛውም መቀጠል ይፈልጋሉ?"
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "መቃኛ መደርደሪያ"
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "አምድ"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "ባህሪ ማሰናጃ '#'"
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "በማጠራቀሚያው ውስጥ ያስገቡ"
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "ማጥፊያ #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "እቃዎችን # ማጥፊያ"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "የማጠራቀሚያ አካል መቀየሪያ"
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "መቆጣጠሪያ መቀየሪያ"
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "ቁልፉን ይጫኑ"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr "አማራጭ ቁልፍ"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "የ ጽሁፍ ሳጥን"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "ሳጥኑ ውስጥ ምልክት ያድርጉ"
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "የ ምልክት ሜዳ"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "የ ቡድን ሳጥን"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "የ ጽሁፍ ሳጥን"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "የ ሜዳ አቀራረብ"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "መቀላቀያ ሳጥን"
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "የ ዝርዝር ሳጥን"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr "መቀላቀያ ሳጥን"
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "የ ምስል ቁልፍ"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "ምስል መቆጣጠሪያ"
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "የ ፋይል ምርጫዎች"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "የ ቀን ሜዳ"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "የ ሰአት ሜዳ"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "የ ቁጥር ሜዳ"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "የ ገንዘብ ሜዳ"
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "የ ንድፍ ሜዳ"
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "የ ሜዳ አቀራረብ"
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "ቁልፉን ይጫኑ"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "አማራጭ ቁልፍ"
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "የ ምልክት ሜዳ"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "የ ቡድን ሳጥን"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "የ ምስል ቁልፍ"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "ምስል መቆጣጠሪያ"
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "የ ፋይል ምርጫዎች"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "ሰንጠረዥ መቆጣጠሪያ "
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "መሸብለያ መደርደሪያ"
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "ማሽከርከሪያ ቁልፍ"
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "መቃኛ መደርደሪያ"
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "በርካታ ምርጫ"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "በ አሁኑ ፎርም ውስጥ ምንም ዳታ-የተዛመደ መቆጣጠሪያ የለም"
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (ቀን)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (ሰአት)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "መቃኛ ማጣሪያ"
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "ማጣሪያ ከ"
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "ወይም"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "ዋጋ ያለው መዝለያ መቆጣጠሪያ በ ሰንጠረዥ መመልከቻ ውስጥ የሚጠቀሙበት በ አሁኑ ፎርም ውስጥ አልተገኘም"
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<በራሱ ሜዳ>"
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Syntax error in SQL statement"
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "The value #1 cannot be used with LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE cannot be used with this field."
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "ያስገቡት ዋጋ ያለው ቀን አይደለም: እባክዎን ዋጋ ያለው ቀን በ አቀራረብ ያስገቡ ለምሳሌ ወወ/ቀቀ/አአ"
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "ሜዳው መወዳደር አይችልም ከቁጥር ጋር"
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ የለም \"#\"."
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ ወይንም የ ጥያቄ ስም አለ \"#\"."
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ ወይንም መመልከቻ አለ \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ጥያቄ አለ \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "ይህ አምድ \"#1\" ያልታወቀ ሰንጠረዥ ነው \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "ሜዳውን ማወዳደር አይቻልም ከተንሳፋፊ ነጥብ ቁጥር ጋር"
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "ያስገቡት ደንብ ከዚህ ሜዳ ጋር መወዳደር አይችልም"
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "ዳታ መቃኛ"
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (ለማንበብ-ብቻ)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
-msgstr "ፋይሉ ቀድም ሲል ነበር ፡ በላዩ ላይ ደርቤ ልጻፍበት?"
+msgstr "ፋይሉ ቀደም ሲል ነበር: በላዩ ላይ ደርቤ ልጻፍበት?"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
-msgstr "#object# label"
+msgstr "#እቃ# ምልክት"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6887,7 +6899,7 @@ msgstr ""
"በእርግጥ ምሳሌውን ማጥፋት ይፈልጋሉ?"
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6897,7 +6909,7 @@ msgstr ""
"በእርግጥ ምሳሌውን ማጥፋት ይፈልጋሉ?"
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6907,13 +6919,13 @@ msgstr ""
"በእርግጥ አካሉን ማጥፋት ይፈልጋሉ?"
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "ባህሪውን ማጥፋት ይፈልጋሉ '$ATTRIBUTENAME'?"
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6925,7 +6937,7 @@ msgstr ""
"በእርግጥ ማስገቢያውን ማጥፋት ይፈልጋሉ?"
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6937,1000 +6949,1000 @@ msgstr ""
"በእርግጥ ማጣመሪያውን ማጥፋት ይፈልጋሉ?"
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "ስሙ '%1' ዋጋ የለውም በ XML አይደለም ፡ እባክዎን ሌላ የተለየ ስም ያስገቡ"
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "መነሻው '%1' ዋጋ የለውም በ XML. እባክዎን የተለየ መነሻ ያስገቡ"
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "ስሙ '%1' ቀደም ሲል ነበር ፡ እባክዎን ሌላ አዲስ ስም ያስገቡ"
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "ማስገቢያ ስም ያስፈልገዋል"
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "ማስቀመጫ"
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "ማግኛ"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "ምንም"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "ምሳሌ"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "ሰነድ"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "መሸፈኛ : "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "ማመሳከሪያ: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "ተግባር : "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "ዘዴ : "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "መቀየሪያ: "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "አካል መጨመሪያ"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "አካል ማረሚያ"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "አካል ማጥፊያ"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "ባህሪ መጨመሪያ"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "ባህሪ ማረሚያ"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "ባህሪ ማጥፊያ"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "ማጣመሪያ መጨመሪያ"
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "ማጣመሪያ ማረሚያ"
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "ማጣመሪያ ማጥፊያ"
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "ማስገቢያ መጨመሪያ"
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "ማቅረቢያ ማረሚያ"
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "ማቅረቢያ ማጥፊያ"
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "አካል"
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "መለያ"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "ማጣመሪያ"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "መግለጫ ማጣመሪያ"
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "በእርግጥ ሰነድ ማዳኑን %PRODUCTNAME መሰረዝ ይፈልጋሉ?"
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "በ ግራ"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "መሀከል"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "ዴሲማል"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "ማስገቢያ ዘዴ: ይጫኑ ለመቀየር ወደ በላዩ ላይ ደርቦ መጻፊያ ዘዴ"
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "በላዩ ላይ ደርቦ መጻፊያ ዘዴ: ይጫኑ ለመቀየር ወደ ማስገቢያ ዘዴ"
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "በላዩ ላይ ደርቦ መጻፊያ"
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "ማስገቢያ"
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው"
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው: ነገር ግን የ ምስክር ወረቀቱን ማረጋገጥ አልተቻለም"
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "የ ዲጂታል ፊርማ: ሰነዱ አልተፈረመም"
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው: ነገር ግን አንዳንድ የ ሰነዱ ክፍል አልተፈረመም"
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "ሰነዱ ተሻሽሏል: ይጫኑ ሰነዱን ለ ማስቀመጥ"
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "ሰነዱ አልተሻሻለም መጨረሻ ከ ተቀመጠ በኋላ"
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "ሰነዶችን በመጫን ላይ..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "ተንሸራታቹን በ አሁኑ መስኮት ልክ ማድረጊያ"
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "የ ማሳያ መጠን: በቀኝ-ይጫኑ ለ መቀየር የ ማሳያ መጠን ወይንም ይጫኑ ለ መክፈት የ ማሳያ ንግግር"
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "በቅርብ ማሳያ"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "በርቀት ማሳያ"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "ጠቅላላ ገጹን"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "የ ገጽ ስፋት"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "አጥጋቢ መመልከቻ"
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "ዘዴዎችን ማካተቻ"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "የ አንቀጽ ዘዴ~ዎች"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "የ ክፍል ዘዴ~ዎች"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "አቀራረብ መፈለጊያ"
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "በ አቀራረብ መቀየሪያ"
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "የ ሰነዱ መጨረሻ ላይ ደርሷል"
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "የ ሰነዱ መጨረሻ ላይ ደርሷል: ከ መጀመሪያው ጀምሮ"
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "የ ወረቀቱ መጨረሻ ላይ ደርሷል"
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "መፈለጊያ ቁልፍ አልተገኘም"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "ምንም የ መቃኛ አካል አልተገኘም"
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "የ ሰነዱ መጀመሪያ ላይ ደርሷል"
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "የ ሰነዱ መጀመሪያ ላይ ደርሷል: ከ መጨረሻው ጀምሮ"
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "ቀለም ማሰናጃ"
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "ዋጋ የሌለው የ መግቢያ ቃል"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "የመግቢያ ቃሎቹ አይመሳሰሉም"
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "ሙሉ ትንሽ ክብ ነጥቦች"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "ሙሉ ትልቅ ክብ ነጥቦች"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "ሙሉ የ አልማዝ ቅርጽ ነጥቦች"
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "ሙሉ ትልቅ ስኴር ነጥቦች"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "የተሞላ ወደ ቀኝ የሚጠቁም ቀስት ነጥቦች"
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "ወደ ቀኝ የሚጠቁም ቀስት ነጥቦች"
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "ቁጥር 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "ቁጥር 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "ቁጥር (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "በትንንሹ በትልቅ በሮማን ቁጥር መጻፊያ I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "በትንንሹ በትልቅ ፊደል መጻፊያ A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "በትንንሽ ፊደል መጻፊያ a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "በትንንሽ ፊደል መጻፊያ (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "በትንንሽ ፊደል በሮማን ቁጥር መጻፊያ i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "ቁጥር: ቁጥር: በትንንሽ ፊደል መጻፊያ: ሙሉ በ ትንንሽ ነጥቦች"
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "ቁጥር: ቁጥር: በትንንሽ ፊደል መጻፊያ: ሙሉ በ ትንንሽ ነጥቦች"
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "ቁጥር: በትንንሽ ፊደል መጻፊያ: በትንንሽ ሮማን ፊደል: በትንንሹ በ አቢይ ፊደል መጻፊያ: ሙሉ በ ትንንሽ ነጥቦች"
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "ቁጥር"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "በትንንሹ በ ሮማን አቢይ ፊደል መጻፊያ: በትንንሹ በ አቢይ ፊደል መጻፊያ: በትንንሹ በ ሮማን ፊደል መጻፊያ: በትንንሽ ፊደል መጻፊያ: በትንንሽ ሙሉ ክብ ነጥብ"
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "በትንንሹ በ አቢይ ፊደል መጻፊያ: በትንንሹ በ ሮማን አቢይ ፊደል መጻፊያ: በትንንሽ ፊደል መጻፊያ: በትንንሹ በ ሮማን ፊደል መጻፊያ: በትንንሽ ሙሉ ክብ ነጥብ"
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "የቁጥር ከሁሉም ንዑስ ደረጃዎች"
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "ወደ ቀኝ የሚጠቁም ነጥብ: ወደ ቀኝ የሚጠቁም ቀስት ነጥብ: ሙሉ የ አልማዝ ቅርጽ ነጥብ: በትንንሽ ሙሉ ክብ ነጥብ"
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "የ ማመቂያ ዚፕ ፋይል መፍጠር አልተቻለም"
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "የ ሰንጠረዥ ንድፍ ዘዴዎች"
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "የሚተወው ተግባር: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "የሚተወው ተግባር: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "እንደገና የሚሰሩ ተግባሮች: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "እንደገና የሚሰሩ ተግባሮች: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "መፈለጊያ"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "ጉዳይ ማመሳሰያ"
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "የ አቀራረብ ማሳያ"
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(ስፋት) x $(እርዝመት) ($(ስፋት_በ_ፒክስል) x $(እርዝመት_በ_ፒክስል) ፒክስል)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(ስፋት) x $(እርዝመት) በ $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) ኪባ"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "የ GIF ምስል"
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "የ JPEG ምስል"
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "የ PNG ምስል"
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "የ TIFF ምስል"
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "የ WMF ምስል"
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "የ MET ምስል"
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "የ PCT ምስል"
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "የ SVG ምስል"
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "የ BMP ምስል"
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "ያልታወቀ"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "መቀየሪያ"
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "የ ምስል ዘዴ"
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "ቀይ"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "ብሩህነት"
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "ማነጻጸሪያ"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "ግልጽነት"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Crop"
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "ነባር አቅጣጫ"
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "ከ ላይ ወደ ታች"
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "ከ ታች ወደ ላይ"
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "የተደረደሩ"
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "የ ግራ መስመር: "
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "የ ላይ መስመር: "
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "የ ቀኝ መስመር: "
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "የታች መስመር : "
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "የገጽ መግለጫ : "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Capitals"
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "በትንንሽ ፊደል መጻፊያ"
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "በትንንሹ በ አቢይ ፊደል መጻፊያ"
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "በትንንሽ ፊደል መጻፊያ"
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabic"
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "ምንም"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "የመሬት አቀማመጥ"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "ምስል"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "በ ግራ"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "ሁሉንም"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "የተንፀባረቀ"
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "ደራሲው : "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "ቀን: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "ጽሁፍ : "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "የ ባህሪ መደብ"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "ቀለም ማሰናጃ"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7940,1926 +7952,2029 @@ msgstr ""
"እርስዎ የ ተሻሻለውን ምስል ማስቀመጥ ይፈልጋሉ?"
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Basic Latin"
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latin-1"
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latin Extended-A"
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latin Extended-B"
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA Extensions"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "የ ፊደሎች ክፍተት ማሻሻያ"
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "የተለዩ ምልክቶችን መቀላቀያ"
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Basic Greek"
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Greek Symbols And Coptic"
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cyrillic"
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armenian"
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Basic Hebrew"
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebrew Extended"
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Basic Arabic"
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabic Extended"
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengali"
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Gujarati"
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Odia"
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Telugu"
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malayalam"
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thai"
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Basic Georgian"
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgian Extended"
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangul Jamo"
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Latin Extended Additionals"
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Greek Extended"
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "ጠቅላላ ስርአተ ነጥብ"
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "በትንንሹ ከፍ ብሎ እና በትንንሹ ዝቅ ብሎ መጻፊያ"
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "የ ገንዘብ ምልክቶች"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "የተለዩ ምልክቶችን መቀላቀያ"
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "የ ፊደል አይነት ምልክቶች"
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "የ ቁጥር ፎርሞች"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "ቀስቶች"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "ሂሳብ አንቀሳቃሾች"
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "የተለያዩ ቴክኒካል"
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "ስእል መቆጣጠሪያ"
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "የሚታይ ባህሪ መለያ"
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "የተዘጉ ቁጥሮች እና ፊደሎች ቅልቅል"
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "ሳጥን መሳያ"
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "አካሎችን መከልከያ"
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "ጂዮሜትሪክ ቅርጾች"
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "የተለያዩ ምልክቶች"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "የ CJK ምልክቶች እና ስርአተ ነጥቦች"
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangul Compatibility Jamo"
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK Miscellaneous"
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "የተዘጋ የ CJK ፊደሎች እና ወሮች"
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "የ CJK ተስማሚነት"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangul"
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified Ideographs"
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified Ideographs Extension A"
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "የ ግል መጠቀሚያ ቦታ"
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK Compatibility Ideographs"
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "በ ፊደል ቅደም ተከተል ማቅረቢያ ፎርሞች"
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabic Presentation Forms-A"
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "ግማሽ ምልክቶች መቀላቀያ"
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "የ CJK ተስማሚ ፎርሞች"
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "ትንሽ የተለያየ ፎርም"
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabic ማቅረቢያ ፎርሞች-B"
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "ግማሽ-ስፋት እና ሙሉ-ስፋት ፎርሞች"
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "የተለዩ"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi Syllables"
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi Radicals"
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Old Italic"
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Gothic"
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret"
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Byzantine Musical Symbols"
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "የ ሙዚቃ ምልክቶች"
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "የ ሂሳብ እና የ ፊደል እና ቁጥር ምልክቶች"
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK Unified Ideographs Extension B"
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK Unified Ideographs Extension C"
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK Unified Ideographs Extension D"
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK Compatibility Ideographs Supplement"
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Tags"
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Cyrillic Supplementary"
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "መቀያየሪያ መምረጫ"
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "በተጨማሪ የ ግል መጠቀሚያ ቦታ-A"
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "በተጨማሪ የ ግል መጠቀሚያ ቦታ-B"
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Tai Le"
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Khmer Symbols"
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Phonetic Extensions"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "የተለያዩ ምልክቶች እና ቀስቶች"
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Yijing Hexagram Symbols"
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Linear B Syllabary"
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Linear B Ideograms"
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Aegean Numbers"
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugaritic"
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavian"
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmanya"
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhala"
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetan"
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Myanmar"
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Runic"
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Syriac"
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Ethiopic"
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Canadian Aboriginal Syllables"
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongolian"
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "የተለያዩ የ ሂሳብ ምልክቶች-A"
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "ተጨማሪ ቀስቶች-A"
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "የ ብሬል ንድፍ"
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "ተጨማሪ ቀስቶች-B"
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "የተለያዩ የ ሂሳብ ምልክቶች-B"
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK Radical Supplement"
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kangxi Radicals"
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideographic Description Characters"
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo Extended"
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana Phonetics"
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK Strokes"
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Cypriot Syllabary"
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Tai Xuan Jing Symbols"
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Variation Selectors Supplement"
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Ancient Greek Musical Notation"
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Ancient Greek Numbers"
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Arabic Supplement"
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buginese"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "የተለዩ ምልክቶችን መቀላቀያ ተጨማሪ"
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Coptic"
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "የ ኢትዮጵያ የ ተስፋፋ"
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "የ ኢትዮጵያ ተጨማሪ"
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Georgian Supplement"
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagolitic"
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "የ ፊደሎች ጥራት ማሻሻያ"
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "New Tai Lue"
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Old Persian"
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Phonetic Extensions Supplement"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Supplemental Punctuation"
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "ፎርሞች በ ቁመት"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Nko"
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinese"
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latin Extended-C"
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latin Extended-D"
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phags-Pa"
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Phoenician"
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Cuneiform"
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Cuneiform Numbers And Punctuation"
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Counting Rod Numerals"
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Sundanese"
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cyrillic Extended-A"
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cyrillic Extended-B"
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Ancient Symbols"
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Phaistos Disc"
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lycian"
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carian"
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lydian"
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong Tiles"
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Domino Tiles"
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritan"
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Canadian Aboriginal Syllabics Extended"
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Vedic Extensions"
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamum"
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Common Indic Number Forms"
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari Extended"
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo Extended-A"
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Javanese"
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Myanmar Extended-A"
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo Extended-B"
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Imperial Aramaic"
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Old South Arabian"
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avestan"
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Inscriptional Parthian"
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Inscriptional Pahlavi"
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Old Turkic"
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Rumi Numeral Symbols"
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Egyptian Hieroglyphs"
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Enclosed Alphanumeric Supplement"
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Enclosed Ideographic Supplement"
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaic"
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Ethiopic Extended-A"
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Bamum Supplement"
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Kana Supplement"
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Playing Cards"
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "የተለያዩ ምልክቶች እና ቀስቶች"
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "የ ስሜት ምልክቶች"
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "መጓጓዣ እና የ ካርታ ምልክቶች"
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "አልኬሚካል ምልክቶች"
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabic Extended-A"
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "የ አረብኛ የ ሂሳብ ፊደል ቅደም ተከተል ምልክቶች"
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Meetei Mayek Extensions"
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroitic Cursive"
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroitic Hieroglyphs"
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sora Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Sundanese Supplement"
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Bassa Vah"
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Caucasian Albanian"
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Coptic Epact Numbers"
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "የተለዩ ምልክቶችን መቀላቀያ የ ተስፋፉ"
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Duployan"
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Elbasan"
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Geometric Shapes Extended"
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Grantha"
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Khojki"
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Khudawadi"
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latin Extended-E"
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Linear A"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Mahajani"
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Manichaean"
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Mende Kikakui"
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Modi"
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Mro"
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Myanmar Extended-B"
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Nabataean"
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Old North Arabian"
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Old Permic"
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Ornamental Dingbats"
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Pahawh Hmong"
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Palmyrene"
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Pau Cin Hau"
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Psalter Pahlavi"
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Shorthand Format Controls"
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Siddham"
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Sinhala Archaic Numbers"
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Supplemental Arrows-C"
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Tirhuta"
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Warang Citi"
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ahom"
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Anatolian Hieroglyphs"
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Cherokee Supplement"
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified Ideographs Extension E"
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Early Dynastic Cuneiform"
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Hatran"
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Multani"
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Old Hungarian"
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Supplemental Symbols And Pictographs"
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Sutton Signwriting"
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Adlam"
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Bhaiksuki"
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cyrillic Extended-C"
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Glagolitic Supplement"
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Ideographic Symbols and Punctuation"
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Marchen"
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Mongolian Supplement"
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Newa"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Osage"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Tangut"
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Tangut Components"
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK Unified Ideographs Extension F"
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Kana Extended-A"
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Masaram Gondi"
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Nushu"
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Soyombo"
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Syriac Supplement"
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "ዛናባዛር ስኴር"
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "የ ቼዝ ምልክት"
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr "Dogra"
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr "Gunjala Gondi"
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr "Hanifi Rohingya"
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr "Indic Siyaq Numbers"
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "Makasar"
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Mayan Numerals"
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "Medefaidrin"
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "Old Sogdian"
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "Sogdian"
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "ከ ግራ-ወደ-ቀኝ (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "ከ ቀኝ-ወደ-ግራ (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "ከፍተኛ የ እቃ ማሰናጃዎችን መጠቀሚያ"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ አግድም)"
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ አግድም)"
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ ቁመት)"
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "ከ ታች-ወደ-ላይ: ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10705,7 +10820,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "የ ሰያፍ ድንበር መስመር ከ ታች በ ግራ እስከ ላይ ቀኝ በኩል"
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10713,11 +10828,29 @@ msgstr "የ ሰያፍ ድንበር መስመር ከ ታች በ ግራ እስከ
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr ""
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr ""
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr ""
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr ""
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr ""
@@ -13609,176 +13742,44 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "_አምድ ማስገቢያ"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "የ ጽሁፍ ሳጥን"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr "ምልክት ማድረጊያ ሳጥን"
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr "መቀላቀያ ሳጥን"
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "ዝርዝር ሳጥን"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "የ ቀን ሜዳ"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "የ ሰአት ሜዳ"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "የ ቁጥር ሜዳ"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr "የ ገንዘብ ሜዳ"
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr "የ ንድፍ ሜዳ"
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr "የ ሜዳ አቀራረብ"
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr "የ ቀን እና ሰአት ሜዳ"
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "_መቀየሪያ በ"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "የ ጽሁፍ ሳጥን"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr "ምልክት ማድረጊያ ሳጥን"
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr "መቀላቀያ ሳጥን"
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "ዝርዝር ሳጥን"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "የ ቀን ሜዳ"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "የ ሰአት ሜዳ"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "የ ቁጥር ሜዳ"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr "የ ገንዘብ ሜዳ"
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr "የ ንድፍ ሜዳ"
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr "የ ሜዳ አቀራረብ"
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr "የ ቀን እና ሰአት ሜዳ"
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "አምድ ማጥፊያ"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr "አምድ _መደበቂያ"
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr "አምድ _ማሳያ"
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "_ተጨማሪ..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
msgctxt "colsmenu|all"
msgid "_All"
msgstr "_ሁሉንም"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
msgctxt "colsmenu|column"
msgid "Column..."
msgstr "አምድ..."
@@ -13933,126 +13934,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "የ ምስል መረጃ"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "የ _ጽሁፍ ሳጥን"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "_ቁልፍ"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "የ ምል_ክት ሜዳ"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "የ ቡ_ድን ሳጥን"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "ዝ_ርዝር ሳጥን"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr "_ምልክት ማድረጊያ ሳጥን"
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr "የ _ሬዲዮ ቁልፍ"
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr "መቀላቀያ ሳጥ_ን"
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "የ ም_ስል ቁልፍ"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "የ _ፋይል ምርጫ"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "የ _ቀን ሜዳ"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "የ ሰአ_ት ሜዳ"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "የ _ቁጥር ሜዳ"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr "የ ገ_ንዘብ ሜዳ"
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr "የ _ንድፍ ሜዳ"
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr "ምስ_ል መቆጣጠሪያ"
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr "የ ሜዳ አቀ_ራረብ"
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr "መሸብለያ መደርደሪያ"
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr "ማሽከርከሪያ ቁልፍ"
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr "መቃኛ መደርደሪያ"
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 6194976a36f..8234d1f11b1 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:18+0100\n"
-"PO-Revision-Date: 2021-01-31 16:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-23 12:22+0100\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/am/>\n"
"Language: am\n"
@@ -1564,10 +1564,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2268,1504 +2268,1547 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "የ ተንፀባረቀ"
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "የ ግርጌ ማስታወሻ ባህሪዎች"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "የ ገጽ ቁጥር"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "የ መግለጫ ጽሁፍ ባህሪዎች"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "ፊደል በ ትልቁ መጻፊያ"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "ቁጥር መስጫ ምልክቶች"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
-msgstr ""
+msgstr "ነጥቦች"
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "ኢንተርኔት አገናኝ"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "የ ተጎበኘ የ ኢንተርኔት አገናኝ"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "ቦታ ያዢ"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "የ አገናኝ ማውጫ"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "የ መጨረሻ ማስታወሻ ባህሪዎች"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "መስመር ቁጥር መስጫ"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "ዋናው የማውጫ ማስገቢያ"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "የ ግርጌ ማስታወሻ ማስቆሚያ"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "የ መጨረሻ ማስታወሻ ማስቆሚያ"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr "Rubies"
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "በ ቁመት ቁጥር መስጫ ምልክቶች"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "ማጋነኛ"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "ጠንካራ ማጋነኛ"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "የ ጽሁፍ ምንጭ"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "ለምሳሌ"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "ተጠቃሚ ማስገቢያ"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "ተለዋዋጭ"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "መግለጫ"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "ቴሌታይፕ"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "ንድፎች"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "መቀመሪያ"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "ማስታወሻ"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "የ ውሀ ምልክት"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "ምልክቶች"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
-msgstr ""
+msgstr "ነባር የ አንቀጽ ዘዴ"
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "የ ጽሁፍ አካል"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "የ መጀመሪያ መስመር ማስረጊያ"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "ተንሳፋፊ ማስረጊያ"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "የ ጽሁፍ አካል ማስረጊያ"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr "አስተያየት መዝጊያ"
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "ፊርማ"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "ራስጌ"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr ""
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "ማውጫ"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "የ ማስረጊያ ዝርዝር"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "ማስታወሻ"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "ራስጌ 1"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "ራስጌ 2"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "ራስጌ 3"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "ራስጌ 4"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "ራስጌ 5"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "ራስጌ 6"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "ራስጌ 7"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "ራስጌ 8"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "ራስጌ 9"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "ራስጌ 10"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "ቁጥር መስጫ 1 መጀመሪያ"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "ቁጥር መስጫ 1"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "ቁጥር መስጫ 1 መጨረሻ"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "ቁጥር መስጫ 1 የቀጠለ"
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "ቁጥር መስጫ 2 መጀመሪያ"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "ቁጥር መስጫ 2"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "ቁጥር መስጫ 2 መጨረሻ"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "ቁጥር መስጫ 2 የቀጠለ"
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "ቁጥር መስጫ 3 መጀመሪያ"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "ቁጥር መስጫ 3"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "ቁጥር መስጫ 3 መጨረሻ"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "ቁጥር መስጫ 3 የቀጠለ"
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "ቁጥር መስጫ 4 መጀመሪያ"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "ቁጥር መስጫ 4"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "ቁጥር መስጫ 4 መጨረሻ"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "ቁጥር መስጫ 4 የቀጠለ"
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "ቁጥር መስጫ 5 መጀመሪያ"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "ቁጥር መስጫ 5"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "ቁጥር መስጫ 5 መጨረሻ"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "ቁጥር መስጫ 5 የቀጠለ"
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
-msgstr ""
+msgstr "ዝርዝር 1 መጀመሪያ"
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
-msgstr ""
+msgstr "ዝርዝር 1"
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
-msgstr ""
+msgstr "ዝርዝር 1 መጨረሻ"
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
-msgstr ""
+msgstr "ዝርዝር 1 የቀጠለ"
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
-msgstr ""
+msgstr "ዝርዝር 2 መጀመሪያ"
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
-msgstr ""
+msgstr "ዝርዝር 2"
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
-msgstr ""
+msgstr "ዝርዝር 2 መጨረሻ"
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
-msgstr ""
+msgstr "ዝርዝር 2 የቀጠለ"
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
-msgstr ""
+msgstr "ዝርዝር 3 መጀመሪያ"
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
-msgstr ""
+msgstr "ዝርዝር 3"
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
-msgstr ""
+msgstr "ዝርዝር 3 መጨረሻ"
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
-msgstr ""
+msgstr "ዝርዝር 3 የቀጠለ"
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
-msgstr ""
+msgstr "ዝርዝር 4 መጀመሪያ"
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
-msgstr ""
+msgstr "ዝርዝር 4"
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
-msgstr ""
+msgstr "ዝርዝር 4 መጨረሻ"
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
-msgstr ""
+msgstr "ዝርዝር 4 የቀጠለ"
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
-msgstr ""
+msgstr "ዝርዝር 5 መጀመሪያ"
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
-msgstr ""
+msgstr "ዝርዝር 5"
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
-msgstr ""
+msgstr "ዝርዝር 5 መጨረሻ"
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
-msgstr ""
+msgstr "ዝርዝር 5 የቀጠለ"
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr "ራስጌ እና ግርጌ"
-#. qfrao
-#: sw/inc/strings.hrc:127
-msgctxt "STR_POOLCOLL_HEADER"
-msgid "Header"
-msgstr ""
-
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "ራስጌ በ ግራ"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "ራስጌ በ ቀኝ"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "ግርጌ"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "ግርጌ በ ግራ"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "ግርጌ በ ቀኝ"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "የ ሰንጠረዥ ይዞታዎች"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "የ ሰንጠረዥ ራስጌ"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr "የ ክፈፍ ይዞታዎች"
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "የ መጨረሻ ማስታወሻ"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "መግለጫ ጽሁፍ"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "ማብራሪያ"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "ጽሁፍ"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "መሳያ"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr "ምስል"
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
-msgstr ""
+msgstr "ተቀባይ"
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
-msgstr ""
+msgstr "ላኪው"
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "የ ራስጌ ማውጫ"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "ማውጫ 1"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "ማውጫ 2"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "ማውጫ 3"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "ማውጫ መለያያ"
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "የ ይዞታዎች ራስጌ"
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "ይዞታዎች 1"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "ይዞታዎች 2"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "ይዞታዎች 3"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "ይዞታዎች 4"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "ይዞታዎች 5"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "ይዞታዎች 6"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "ይዞታዎች 7"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "ይዞታዎች 8"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "ይዞታዎች 9"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "ይዞታዎች 10"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "የ ተጠቃሚ ራስጌ ማውጫ"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "የ ተጠቃሚ ማውጫ 1"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "የ ተጠቃሚ ማውጫ 2"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "የ ተጠቃሚ ማውጫ 3"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "የ ተጠቃሚ ማውጫ 4"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "የ ተጠቃሚ ማውጫ 5"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "የ ተጠቃሚ ማውጫ 6"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "የ ተጠቃሚ ማውጫ 7"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "የ ተጠቃሚ ማውጫ 8"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "የ ተጠቃሚ ማውጫ 9"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "የ ተጠቃሚ ማውጫ 10"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "ጥቅስ"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr "የ ማውጫ አርእስት አካል"
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr "የ ማውጫ አካል 1"
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "የ ማውጫ ራስጌ እቃ"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "የ ማውጫ እቃ 1"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "የ ሰንጠረዥ አርእስት ማውጫ"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "የ ሰንጠረዥ ማውጫ 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "የ ቢብሊዮግራፊ ራስጌ"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "ቢብሊዮግራፊ 1"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "አርእስት"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "ንዑስ አርእስት"
-#. NBniG
-#: sw/inc/strings.hrc:185
-msgctxt "STR_POOLCOLL_DOC_APPENDIX"
-msgid "Appendix"
-msgstr ""
-
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "ጥቅሶች"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "በ ቅድሚያ የ ቀረበ ጽሁፍ"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "የ አግድም መስመር"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "ዝርዝር ይዞታዎች"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "ዝርዝር ራስጌ"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
-msgstr ""
+msgstr "ነባር የ ገጽ ዘዴ"
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "መጀመሪያ ገጽ"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "የ ግራ ገጽ"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "የ ቀኝ ገጽ"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
-msgstr ""
+msgstr "ፖስታ"
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "ማውጫ"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "የ መጨረሻ ማስታወሻ"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "በ መሬት አቀማመጥ"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "ቁጥር መስጫ 123"
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "ቁጥር መስጫ በ ABC"
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
-msgstr ""
+msgstr "በ abc ቁጥር መስጫ"
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "ቁጥር መስጫ IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "ቁጥር መስጫ ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr "ነጥብ •"
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr "ነጥብ –"
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr "ነጥብ "
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr "ነጥብ "
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr "ነጥብ "
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "1 አምድ"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "2 አምዶች መጠናቸው እኩል የሆኑ"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "3 አምዶች መጠናቸው እኩል የሆኑ"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "2 አምዶች መጠናቸው እኩል ያልሆነ (ግራ > ቀኝ)"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "2 አምዶች መጠናቸው እኩል ያልሆነ (ግራ < ቀኝ)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
-msgstr ""
+msgstr "ነባር የ ሰንጠረዥ ዘዴ"
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "የ አንቀጽ ዘዴዎች"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "የ ባህሪ ዘዴዎች"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "የ ክፈፍ ዘዴዎች"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "የ ገጽ ዘዴዎች"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "የ ዝርዝር ዘዴዎች"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "የ ሰንጠረዥ ዘዴዎች"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "ፖስታ"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "ምልክቶች"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION የጽሁፍ ሰነድ"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "ሰነዱን መክፈት አልተቻለም"
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "ሰነዱን መፍጠር አልተቻለም"
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "ማጣሪያው አልተገኘም"
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "ስም እና መንገዱ የዋናው ሰነድ"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "ስም እና መንገዱ የ HTML ሰነድ"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "ጽሁፍ ማረሚያ"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "ምልክት ማድረጊያ"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
-msgstr ""
+msgstr "አዎ"
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
-msgstr ""
+msgstr "አይ"
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
-msgstr ""
+msgstr "የ ተከለከሉ ባህሪዎች:"
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[ምንም]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "መጀመሪያ"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "መጨረሻ"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "ከ ላይ"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "ከ ታች"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "ለማንበብ-ብቻ"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "ይህ 'በራሱ ጽሁፍ' ዳይሬክቶሪስ ለንባብ-ብቻ ነው: የማሰናጃ ንግግር መንገድን መጥራት ይፈልጋሉ?"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "ስታትስቲክስ"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr "ይህ ምርጫ ይሰናከላል የ ምእራፍ ቁጥር መስጫ የ አንቀጽ ዘዴዎች በሚመድብ ጊዜ"
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "ሰነዶችን በማምጣት ላይ..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "ሰነዶችን በመላክ ላይ..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "ሰነዶችን በማስቀመጥ ላይ..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "የ ገጽ መጨረሻ ማስያ..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "ሰነዶችን ራሱ በራሱ አቀራረብ..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "መፈለጊያ"
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "ደብዳቤ"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "ፊደል ማረሚያ..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "ጭረት..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "ማውጫ በማስገባት ላይ..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "ማውጫውን በማሻሻል ላይ..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "ግልጽ ያልሆነ መፍጠሪያ..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Adapt Objects..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "ሰንጠረዥ"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "ምስል"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "እቃ"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "ክፈፍ"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "ቅርጽ"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "ክፍል"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "ቁጥር በመስጠት ላይ"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "ባዶ ገጽ"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "ግልጽ ያልሆነ : "
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "የተለየው በ : "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "የ ረቂቅ: ደረጃ "
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "ዘዴ: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "የ ገጽ ቁጥር: "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "ከ አዲስ ገጽ በፊት መጨረሻ"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Western text: "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Asian text: "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr "CTL ጽሁፍ: "
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "ያልታወቀ ደራሲ"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "~ሁሉንም አስተያየቶች ማጥፊያ በ $1"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "ሁ~ሉንም አስተያየቶች መደበቂያ በ $1"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr "ምእራፍ ቁጥር መስጫ"
@@ -3773,14 +3816,14 @@ msgstr "ምእራፍ ቁጥር መስጫ"
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "ተመርጧል: $1, $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3789,7 +3832,7 @@ msgstr[1] "$1 ቃላት"
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3799,7 +3842,7 @@ msgstr[1] "$1 ባህሪዎች"
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1, $2"
@@ -3807,7 +3850,7 @@ msgstr "$1, $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3817,7 +3860,7 @@ msgstr[1] "$1 ቃላት"
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3825,91 +3868,91 @@ msgstr[0] "$1 ባህሪ"
msgstr[1] "$1 ባህሪዎች"
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "ጽሁፉን ወደ ሰንጠረዥ መቀየሪያ"
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "በራሱ አቀራረብ መጨመሪያ"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "ስም"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "በራሱ አቀራረብ ማጥፊያ"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "የሚቀጥለው በራሱ አቀራረብ ማስገቢያ ይጠፋል"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "በራሱ አቀራረብ እንደገና መሰየሚያ"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~መዝጊያ"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "ጥር"
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "የካ"
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "መጋ"
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "ሰሜን"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mid"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "ደቡብ"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "ድምር"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3921,416 +3964,416 @@ msgstr ""
"ሌላ ስም በመጠቀም እንደገና ይሞክሩ"
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Numerical"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "ረድፎች"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "አምድ"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "የ ቢብሊዮግራፊ ማስገቢያ ማረሚያ"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "የ ቢብሊዮግራፊ ማስገቢያ ያስገቡ"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "በመካከል ክፍተት %1 እና %2"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "አምድ %1 ስፋት"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "%PRODUCTNAME መጻፊያ ሰንጠረዥ"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "%PRODUCTNAME መጻፊያ ክፈፍ"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "%PRODUCTNAME መጻፊያ ምስል"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "ሌሎች የ OLE እቃዎች"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
-msgstr "በሰንጠረዥ ስም መካከል ባዶ ቦታ ማስገባት አይፈቀድም"
+msgstr "በ ሰንጠረዥ ስም መካከል ባዶ ቦታ ማስገባት አይፈቀድም"
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr "የ ተመረጠውን የ ሰንጠርዥ ክፍል ለማዋሀድ በጣም ውስብስብ ነው"
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "ምርጫውን መለየት አልተቻለም"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "እቃውን ይጫኑ"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "ራሱ በራሱ ጽሁፍ ከማስገባቱ በፊት"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "ራሱ በራሱ ጽሁፍ ካስገባ በኋላ"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "አይጥ በእቃዎች ላይ"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "hyperlink ማስነሻ"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "አይጥ እቃዎችን ሲተው"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "ምስሉ ተሳክቶ ተጭኗል"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "ምስል መጫኑ ተቋርጧል"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "ምስል መጫን አልተቻለም"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "ቁጥር እና ፊደል ቅልቅል ማስገቢያ"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "ቁጥር እና ፊደል ቅልቅል -ያልሆኑ ባህሪዎች ማስገቢያ"
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "ክፈፍ እንደገና መመጠኛ"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "ክፈፍ ማንቀሳቀሻ"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "ራስጌዎች"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "ሰንጠረዦች"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "ምስሎች"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "የ OLE እቃዎች"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "ምልክት ማድረጊያዎች"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "ክፍሎች"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Hyperlinks"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "ማመሳከሪያዎች"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "ማውጫዎች"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "እቃዎች መሳያ"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "አስተያየት"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "ራስጌ 1"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "ይህ የ ምዕራፍ አንድ ይዞታ ነው: ይህ የ ተጠቃሚው ማውጫ ማስገቢያ ነው"
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "ራስጌ 1.1"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr "ይህ የ ምዕራፍ 1.1. ይዞታ ነው: ይህ የ ተጠቃሚው ሰንጠረዥ ማውጫ ይዞታ ማስገቢያ ነው"
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "ራስጌ 1.2"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr "ይህ የምዕራፍ 1.2. ይዞታ ነው: ይህ ቁልፍ ቃል ዋናው ማስገቢያ ነው"
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "ሰንጠረዥ 1: ይህ ሰንጠረዥ 1 ነው"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "ምስል 1: ይህ ምስል 1 ነው"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr ""
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "ራስጌ"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "ምስል"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "የ OLE እቃዎች"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "ምልክት ማድረጊያ"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "ክፍል"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Hyperlink"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "ማመሳከሪያ"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "ማውጫ"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "አስተያየት"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "እቃ መሳያ"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "ተጨማሪ አቀራረቦች..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[System]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4340,626 +4383,626 @@ msgstr ""
"በተለየ ሰነድ ላይ"
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "ጭረት"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "አይቻልም"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "ማጥፊያ $1"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "ማስገቢያ $1"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "በላዩ ላይ ደርቦ መጻፊያ $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "አዲስ አንቀጽ"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "ማንቀሳቀሻ"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "ባህሪዎች መፈጸሚያ"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "ዘዴዎቹን መፈጸሚያ $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "ባህሪውን እንደ ነበር መመለሻ"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "ዘዴውን መቀየሪያ: $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "ፋይል ማስገቢያ"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "በራሱ ጽሁፍ ማስገቢያ"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "ምልክት ማድረጊያ ማጥፊያ: $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "ምልክት ማድረጊያ ማስገቢያ: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "ሰንጠረዥ መለያ"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "ጽሁፍ መለያ"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "ሰንጠረዥ ማስገቢያ: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "ጽሁፍ መቀየሪያ ወደ -> ሰንጠረዥ"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "ሰንጠረዥ መቀየሪያ ወደ -> ጽሁፍ"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "ኮፒ: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "መቀየሪያ: $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "የ ገጽ መጨረሻ ማስገቢያ"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "የ አምድ መጨረሻ ማስገቢያ"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "ፖስታ ማስገቢያ"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "ኮፒ: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "ማንቀሳቀሻ: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "ማስገቢያ %PRODUCTNAME ቻርት"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "ክፈፍ ማስገቢያ"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "ክፈፍ ማጥፊያ"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "በራሱ አቀራረብ"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "የ ሰንጠረዥ አርእስት"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "መቀየሪያ: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "ክፍል ማስገቢያ"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "ክፍል ማጥፊያ"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "ክፍል ማሻሻያ"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "ነባር ዋጋዎችን ማሻሻያ"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "ዘዴውን መቀየሪያ: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "የ ገጽ መጨረሻውን ማጥፊያ"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "ጽሁፍ ማረሚያ"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "ማሳደጊያ/እቅድ መሻሪያ"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "እቅድ ማንቀሳቀሻ"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "ቁጥር መስጫ ማስገቢያ"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "ማሳደጊያ ደረጃ"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "መሻሪያ ደረጃ"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "አንቀጾችን ማንቀሳቀሻ"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "የ መሳያ እቃዎች ማስገቢያ: $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "ቁጥር ማብሪያ/ማጥፊያ"
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "ማስረጊያ መጨመሪያ"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "ማስረጊያ መቀነሻ"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "መግለጫ ጽሁፍ ማስገቢያ : $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "ቁጥር መስጫ እንደገና ማስጀመሪያ"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "የ ግርጌ ማስታወሻዎች ማሻሻያ"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "ለውጡን እቀበላለሁ: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "ለውጡን አልቀበልም: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "ሰንጠረዥ መክፈያ"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "ባህሪዎችን ማስቆሚያ"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "በራሱ አራሚ"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "ሰንጠረዥ ማዋሀጃ"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "ጉዳይ መቀየሪያ"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "ቁጥር መስጫውን ማጥፊያ"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "እቃዎች መሳያ: $1"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "የመሳያ እቃዎችን በቡድን ማድረጊያ"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "የ መሳያ እቃዎች መለያያ"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "መሳያ እቃዎች ማጥፊያ"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "ምስል መቀየሪያ"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "ምስል ማጥፊያ"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "የ ሰንጠረዥ ባህሪዎች መፈጸሚያ"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "በራሱ አቀራረብ ሰንጠረዥ"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "አምድ ማስገቢያ"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "ረድፍ ማስገቢያ"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "ረድፍ/አምድ ማጥፊያ"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "አምድ ማጥፊያ"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "ረድፍ ማጥፊያ"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "ክፍሎች መክፈያ"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "ክፍሎች ማዋሀጃ"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "የ ክፍል አቀራረብ"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "ማውጫ/ሰንጠረዥ ማስገቢያ"
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "ማውጫ/ሰንጠረዥ ማስወገጃ"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "ሰንጠረዥ ኮፒ ማድረጊያ"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "ሰንጠረዥ ኮፒ ማድረጊያ"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "መጠቆሚያ ማሰናጃ"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "የ ግርጌ ማስታወሻ ምርጫዎች ማሻሻያ"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "ሰንዶችን ማዋዳደሪያ"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "የ ክፈፍ ዘዴ መፈጸሚያ: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Ruby Setting"
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "የ ግርጌ ማስታወሻ ማስገቢያ"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "የ URL ቁልፍ ማስገቢያ"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "የ Hyperlink ማስገቢያ"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "የማይታዩ ይዞታዎችን ማስወገጃ"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "ሰንጠረዥ/ማውጫ ተቀይሯል"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "“"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "”"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "በርካታ ምርጫዎች"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "በመጻፍ ላይ : $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "ቁራጭ ሰሌዳ መለጠፊያ"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "የሚደርስ ነገር ከ"
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -4967,7 +5010,7 @@ msgstr[0] "One tab"
msgstr[1] "$1 tabs"
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -4975,308 +5018,308 @@ msgstr[0] "አንድ መስመር መጨረሻ"
msgstr[1] "$1 መስመር መጨረሻዎች"
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "የ ገጽ መጨረሻ"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "የ አምድ መጨረሻ"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "ማስገቢያ $1"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "ማጥፊያ $1"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "ባህሪው ተቀይሯል"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "ሰንጠረዡ ተቀይሯል"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "ዘዴ ተቀይሯል"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "የ አንቀጽ አቀራረብ ተቀይሯል"
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "ረድፍ ማስገቢያ"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "ረድፍ ማጥፊያ"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "ክፍል ማስገቢያ"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "ክፍል ማጥፊያ"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 መቀየሪያ"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "የ ገጽ ዘዴ መቀየሪያ: $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "የ ገጽ ዘዴ መፍጠሪያ: $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "የ ገጽ ዘዴ ማጥፊያ: $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "የ ገጽ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "ረስጌ/ግርጌ ተቀይሯል"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "ሜዳው ተቀይሯል"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "የ አንቀጽ ዘዴ መፍጠሪያ: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "የ አንቀጽ ዘዴ ማጥፊያ: $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "የ አንቀጽ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "የ ባህሪ ዘዴ መፍጠሪያ: $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "የ ባህሪ ዘዴ ማጥፊያ: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "የ ባህሪ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "የ ባህሪ ዘዴ መቀየሪያ: $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "የ ክፈፍ ዘዴ ማጥፊያ: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "የ ክፈፍ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "የ ቁጥር መስጫ ዘዴ መፍጠሪያ: $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "የ ቁጥር መስጫ ዘዴ ማጥፊያ: $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "የ ቁጥር መስጫ ዘዴ እንደገና መሰየሚያ: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "እንደገና መሰየሚያ ምልክት ማድረጊያውን : $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "የማውጫ መግቢያ ማስገቢያ"
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "ማውጫ ማስገቢያ ማጥፊያ"
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "ሜዳ"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "አንቀጾች"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "ክፈፍ"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "የ OLE-እቃ"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "መቀመሪያ"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "ቻርት"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "አስተያየት"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "መስቀልኛ - ማመሳከሪያ"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "ጽሁፍ"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "የ ቢብሊዮግራፊ ማስገቢያ"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "የተለየ ባህሪ"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "ምስል"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "መሳያ እቃ(ዎች)"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "ሰንጠረዥ: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5284,1665 +5327,1665 @@ msgstr[0] ""
msgstr[1] ""
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "አንቀጽ"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "አንቀጽ መፈረሚያ"
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "የ እቃዎች አርእስት መቀየሪያ ከ $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "የ እቃውን መግለጫ መቀየሪያ ከ $1"
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "የ ሰንጠረዥ ዘዴ መፍጠሪያ: $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "የ ሰንጠረዥ ዘዴ ማጥፊያ: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "የ ሰንጠረዥ ዘዴ ማሻሻያ: $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "ሰንጠረዥ ማጥፊያ"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr "የ ፎርም ሜዳ ማስገቢያ"
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "ሰነድ መመልከቻ"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "ሰነድ መመልከቻ"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "ራስጌ $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "የ ራስጌ ገጽ $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "ግርጌ $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "የ ግርጌ ገጽ $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "የ ግርጌ ማስታወሻ $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "የ ግርጌ ማስታወሻ $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "የ መጨረሻ ማስታወሻ $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "የ መጨረሻ ማስታወሻ $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) በገጹ ላይ $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "ገጽ $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "ገጽ: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "ደራሲው"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "ቀን"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "ተግባሮች"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "ይህን ቁልፍ ያስነሱ በዚህ አስተያየት እና በሌሎችም አስተያየት ላይ ዝርዝር ተግባሮችን ለመክፈት እና ለመፈጸም"
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "የሰነድ ቅድመ እይታ"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(ቅድመ እይታ ዘዴ)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME ሰነድ"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "የ ማንበብ ስህተት"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "ምስሉን ማሳየት አልተቻለም"
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "ስህተት ከቁራጭ ሰሌዳው በማንበብ ላይ"
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "የ አምድ መጨረሻ በ እጅ የሚሰራ"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "ረድፍ %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "አምድ %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "ባህሪ"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "አንቀጽ"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "ገጾች"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "ቁጥር መስጫ"
+msgid "List"
+msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "ክፍል"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Asian"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "CTL"
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "ምእራባዊ"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "ይዞታዎች"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "የ ገጽ መደ~ብ"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "~ስእሎች እና ሌሎች የ ንድፍ እቃዎች"
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "የ ተደበቁ ጽሁ~ፎች"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "የ ~ጽሁፍ ቦታ ያዢዎች"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "ፎርም መቆጣጠሪ~ያ"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "ቀለም"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "ጽሁፍ በጥቁ~ር ማተሚያ"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "ገጾች:"
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "የገቡትን ባዶ ገጾች ~ራሱ በራሱ ማተሚያ"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "~ይጠቀሙ የ ወረቀት ትሪ ከ ማተሚያ ምርጫዎች ውስጥ ብቻ"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "ምንም (ሰነድ ብቻ)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "አስተያየቶች ብቻ"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "በ ሰነድ መጨረሻ ላይ ማድረጊያ"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "በ ሰነድ መጨረሻ ላይ ማድረጊያ"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~አስተያየቶች"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "መግለጫ~ጽሁፍ"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "ከ ግራ-ወደ-ቀኝ ጽሁፍ"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "ከ ቀኝ-ወደ-ግራ ጽሁፍ"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "ገጾ~ች:"
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr "~ሙሉ ገጾች"
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr "~ጎዶሎ ገጾች"
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "የ ~ተመረጠው"
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "በ መስመር ውስጥ ማድረጊያ"
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "ተግባሮች"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "መሰረዣ"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "መፈጸሚያ"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "የ መቀመሪያ እቃ መደርደሪያ"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "የ መቀመሪያ አይነት"
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "የ _መቀመሪያ ጽሁፍ"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "አለም አቀፍ መመልከቻ"
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "ይዞታ መቃኛ መመለከቻ"
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "የ ረቂቅ ደረጃ"
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "መጎተቻ ዘዴ"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "ረቂቅ ወደ ቁራጭ ሰሌዳ መላኪያ"
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "እንደ Hyperlink ማስገቢያ"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "እንደ አገናኝ ማስገቢያ"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "እንደ ኮፒ ማስገቢያ"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "ማሳያ"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "ንቁ መስኮት"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "የተደበቀ"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "ንቁ"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "የቦዘነ"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "ማረሚያ..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "~ማሻሻያ"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "ማረሚያ"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "አገናኝ ማረሚያ"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "ማስገቢያ"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "~ማውጫ"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "ፋይል"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "አዲስ ሰነድ"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "ማጥፊያ"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~ማጥፊያ"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "ምርጫ"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "ማውጫዎች"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "አገናኞች"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "ሁሉንም"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "የተደበቀ"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "ፋይሉ አልተገኘም: "
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "በ ግራ: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". በ ቀኝ: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "ውስጥ: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". ውጪ: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". ከ ላይ: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". ከ ታች: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "ገጽ"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "መስመር"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "ደራሲው"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** የ አገባብ ስህተት **"
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** በ ዜሮ ማካፈያ **"
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** የ ተሳሳተ የ ቅንፎች አጠቃቀም **"
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** የ ስኴር ተግባር ሞልቶ ፈሰስ**"
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** ሞልቶ ፈሰሰ **"
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** ስህተት **"
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** አገላለጹ የተሳሳተ ነው **"
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "ስህተት: የ ማመሳከሪያው ምንጭ አልተገኘም"
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "ምንም"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(የተወሰነ)"
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " አ: %1 ወ: %2 ቀ: %3 ሰ: %4 ደ: %5 ሰ: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "በ ፊደል ቅደም ተከተል ማውጫ"
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "በ ተጠቃሚው-የሚወሰን"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "የ ሰንጠረዥ ማውጫ"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "ቢብሊዮግራፊ"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "ጥቅስ"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "የ ሰንጠረዦች ማውጫ"
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "የ እቃዎች ሰንጠረዥ"
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "የ ማውጫ አካሎች"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "አርእስት"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "ጉዳይ"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "ቁልፍ ቃል"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "አስተያየቶች"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "ተፈጥሯል"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "ተሻሽሏል"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "መጨረሻ የታተመው"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "የ ክለሳ ቁጥር"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "ጠቅላላ ለማረም የፈጀው ጊዜ"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "መቀየሪያ $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "በ መጀመሪያ መቀየሪያ $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "ቀጥሎ መቀየሪያ $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "ጽሁፍ"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "መጽሐፍ"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "መግለጫ ጽሁፍ"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "የ ስብሰባ ሂደት"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "የ መጽሐፍ ምንባብ"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "የ መጽሐፍ ምንባብ ከ አርእስት ጋር"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "የ ስብሰባ ሂደት"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "ማስታወሻ"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "ቴክኒካል. መረጃዎች"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "ቴሲስ"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "የተለያዩ"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "የ ቴሲስ ጽሁፍ"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "ስብሰባ በ ሂደት ላይ"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "የ ምርምር መግለጫ"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "ያልታተመ"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "ኢሜይል"
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "WWW ሰነድ"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "በ ተጠቃሚው-የሚወሰን1"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "በ ተጠቃሚው-የሚወሰን2"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "በ ተጠቃሚው-የሚወሰን3"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "በ ተጠቃሚው-የሚወሰን4"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "በ ተጠቃሚው-የሚወሰን5"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "አጭር ስም"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "አይነት"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "አድራሻ"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "ማብራሪያ"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "ደራሲ(ዎች)"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "የ መጽሀፍ አርእስት"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "ምዕራፍ"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "እትም"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "አራሚው"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "የህትመቱ አይነት"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "ድርጅት"
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "ማስታወሻ"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "ወር"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "ማስታወሻ"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "ቁጥር"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "ድርጅት"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "ገጽ(ጾች)"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "አሳታሚው"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "ዩኒቨርሲቲ"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "ተከታታይ"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "አርእስት"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "የ መግለጫው አይነት"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "መጠን"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "አመት"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "በ ተጠቃሚው-የሚወሰን1"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "በ ተጠቃሚው-የሚወሰን2"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "በ ተጠቃሚው-የሚወሰን3"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "በ ተጠቃሚው-የሚወሰን4"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "በ ተጠቃሚው-የሚወሰን5"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "የማውጫ ማስገቢያ ማረሚያ"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "የማውጫ ማስገቢያ መጨመሪያ"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "ሰነዱ ቀደም ሲል ቢብሊዮግራፊ ማስገቢያ ይዟል ነገር ግን ለተለየ ዳታ ነው: የ ነበረውን ማስገቢያ ማስተካከል ይፈልጋሉ?"
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "አስተያየቶች"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "አስተያየት ማሳያ"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "አስተያየት መደበቂያ"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "ይህ የአቋራጭ ስም ቀደም ሲል ነበር: እባክዎን ሌላ ስም ይምረጡ"
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "በራሱ ጽሁፍን ላጥፋው?"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "ምድቡን ማጥፊያ "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "በራሱ ጽሁፍ :"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "በራሱ ጽሁፍ ማስቀመጫ"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "በዚህ ፋይል ውስጥ በራሱ ጽሁፍ የለም"
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "የኔ በራሱ ጽሁፍ"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "በራሱ ጽሁፎች ለ አቋራጭ '%1' አልተገኘም"
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "ሰንጠረዥ ያለ ረድፎች ወይንም ክፍሎች ማስገባት አይቻልም"
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "ሰንጠረዥ ማስገባት አልተቻለም ምክንያቱም በጣም ትልቅ ነው"
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "በራሱ መጻፊያ መመፍጠር አልተቻለም"
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "የተጠየቀው የቁራጭ ሰሌዳ አቀራረብ አልተገኘም"
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ"
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "ምስል (%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ)"
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "እቃ (%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ)"
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "ሁሉንም አስተያየቶች"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "ሁሉንም አስተያየቶች"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "አስተያየቶች በ "
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(ቀን የለም)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(ደራሲ የለም)"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "መልስ ወደ $1"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "የአድራሻ መከልከያ ማረሚያ"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "ሰላምታ ማስተካከያ (ለ ወንድ ተቀባዮች)"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "ሰላምታ ማስተካከያ (ለ ሴት ተቀባዮች)"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "የሰላምታ አ~ካላት"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "ወደ ሰላምታ መጨመሪያ"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "ከሰላምታ ውስጥ ማስወገጃ"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~ይጎትቱ የ ሰላምታ አካሎችን እታች ወዳለው ሳጥን ውስጥ"
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "ሰላምታ"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "የስርአት ነጥብ ምልክት"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "ሜዳዎችን መመደቢያ ከእርስዎ የዳታ ምንጭ ጋር እንዲስማሙ ከሰላምታ አካላት ጋር"
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "የሰላምታ ቅድመ እይታ"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "የአድራሻ አካሎች"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "የሰላምታ አካሎች"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "ወደ ሜዳው ተዛምዷል :"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "ቅድመ እይታ"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " ገና አልተዛመደም "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "የአድራሻ ዝርዝሮች (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Plain text (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "ጽሁፍ በ ኮማ የ ተለየ (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -6954,91 +6997,91 @@ msgstr ""
"የ ኢ-ሜይል መግለጫ መረጃ አሁን ማስገባት ይፈልጋሉ?"
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME የአድራሻ ዝርዝር (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "የሚጀምረውን ሰነድ ይምረጡ"
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "የ ሰነዱን አይነት ይምረጡ"
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "የ አድራሻ መከለከያ ማስገቢያ"
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "የ አድራሻ ዝርዝር ይምረጡ"
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "ሰላምታ መፍጠሪያ"
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "እቅድ ማስተካከያ"
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "ተቀባይ አትጨምር"
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~ጨርሷል"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "የ ደብዳቤ ማዋሀጃ አዋቂ"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "ጥያቄ"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "ከ ሰነዱ መጀመሪያ ጀምሮ መመርመር ልቀጥል?"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "ፊደል ማረሚያው ጨርሷል"
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "ምንም መዝገበ ቃላት አልተገኘም"
@@ -7048,252 +7091,252 @@ msgstr "ምንም መዝገበ ቃላት አልተገኘም"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "ቀን"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "ሰአት"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "የ ፋይል ስም"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "የ ዳታቤዝ ስም"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "ምእራፍ"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "የ ገጽ ቁጥር"
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "ስታትስቲክስ"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "ደራሲው"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "ቴምፕሌትስ"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "ላኪው"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "ተለዋዋጭ ማሰናጃ"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "ተለዋዋጭ ማሳያ"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "መቀመሪያ ማስገቢያ"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "ማስገቢያ ሜዳ"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "ማስገቢያ ሜዳ (ተለዋዋጭ)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "ማስገቢያ ሜዳ (ተጠቃሚ)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "እንደ ሁኔታው ጽሁፍ"
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE field"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Execute macro"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "የቁጥር መጠን"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "የ ገጽ ተለዋዋጭ ማሰናጃ"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "የገጽ ተለዋዋጭ ማሳያ"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "URL መጫኛ"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "ቦታ ያዢ"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "ባህሪዎች መቀላቀያ"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "ማስገቢያ ዝርዝር"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "ማመሳከሪያ ማሰናጃ"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "ማመሳከሪያ ማስገቢያ"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "የ ደብዳቤ ማዋሀጃ ሜዳዎች"
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "የሚቀጥለው መዝገብ"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "ማንኛውም መዝገብ"
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "ከፍተኛ ቁጥር"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "ቀደም ያለው ገጽ"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "የሚቀጥለው ገጽ"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "የተደበቀ ጽሁፍ"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "የ ተጠቃሚ ሜዳ"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "ማስታወሻ"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "ጽሁፍ"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "የ ቢብሊዮግራፊ ማስገቢያ"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "የተደበቀ አንቀጽ"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "የ ሰነድ መረጃ"
@@ -7302,87 +7345,87 @@ msgstr "የ ሰነድ መረጃ"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "ቀን"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "ቀን (የተወሰነ)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "ሰአት"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "ሰአት (የተወሰነ)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "ሰንጠረዦች"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "ባህሪዎች"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "ቃላቶች"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "አንቀጾች"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "ምስል"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "እቃዎች"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "ገጾች"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE automatic"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE manual"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[ጽሁፍ]"
@@ -7391,103 +7434,103 @@ msgstr "[ጽሁፍ]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "ድርጅት"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "የ መጀመሪያ ስም"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "የ አባት ስም"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "መነሻዎች"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "መንገድ"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "አገር"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "ፖሳቁ"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "ከተማ"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "አርእስት"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "ቦታ"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "ስልክ (የ ቤት)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "ስልክ (የስራ)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "ፋክስ"
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "ኢሜይል"
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "አገር"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "ማጥፊያ"
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "ማብሪያ"
@@ -7497,37 +7540,37 @@ msgstr "ማብሪያ"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "የ ፋይል ስም"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "የ ፋይሉ ስም ያለ ተጨማሪ"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "መንገድ/የ ፋይል ስም"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "መንገድ"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "ምድብ"
@@ -7536,25 +7579,25 @@ msgstr "ምድብ"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "የምእራፍ ስም"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "የምእራፍ ቁጥር"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "የ ምእራፍ ቁጥር ያለ መለያ"
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "የምእራፍ ቁጥር እና ስም"
@@ -7563,55 +7606,55 @@ msgstr "የምእራፍ ቁጥር እና ስም"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "የሮማን (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "የሮማን (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "የአረብኛ (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "እንደ ገጽ ዘዴ"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "ጽሁፍ"
@@ -7620,13 +7663,13 @@ msgstr "ጽሁፍ"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "ስም"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "መነሻዎች"
@@ -7635,49 +7678,49 @@ msgstr "መነሻዎች"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "ስርአት"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "ስም"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "መቀመሪያ"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "ዳታቤዝ"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "ስርአት"
@@ -7686,19 +7729,19 @@ msgstr "ስርአት"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "ደራሲው"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "ሰአት"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "ቀን"
@@ -7707,79 +7750,79 @@ msgstr "ቀን"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "ማመሳከሪያ"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "ገጽ"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "ምእራፍ"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "ከ ላይ/ከ ታች"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "እንደ ገጽ ዘዴ"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "ምድብ እና ቁጥር"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "የመግለጫ ጽሁፍ"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "ቁጥር መስጫ"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "ቁጥር"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "ቁጥር (አገባብ የለውም)"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "ቁጥር (ሙሉ አገባብ አለው)"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "ጽሁፍ ከ a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "ጽሁፍ ከ A/Az + "
@@ -7788,31 +7831,31 @@ msgstr "ጽሁፍ ከ A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "ምስል"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "እቃ"
@@ -7821,1499 +7864,1499 @@ msgstr "እቃ"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~ሁኔታው"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "ከዚያ ፡ ተጨማሪ"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE Statement"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "የተደበቀ ጽ~ሁፍ"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "የ ~Macro ስም"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~ማመሳከሪያ"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "ባህ~ሪዎች"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "ማ~ካካሻ"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "ዋጋ"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "መቀመሪያ"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "ማስተካከያ"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[ተጠቃሚ]"
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "የአግድም . ማሰናጃ"
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "የቁመት . ማሰናጃ"
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "ስፋት"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "እርዝመት"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "የ ግራ መስመር"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "የ ላይ መስመር"
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "አምዶች"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "ረድፎች"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "ቃላት እና ባህሪ መቁጠሪያ: ይጫኑ ለ መክፈት የ መቁጠሪያ ንግግር"
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "በ ነጠላ-ገጽ መመልከቻ"
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "በርካታ-ገጽ መመልከቻ"
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "በ መጽሀፍ መመልከቻ"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "የ ገጽ ቁጥር በ ሰነድ ውስጥ: ይጫኑ የ መቃኛ መስኮት ለመክፈት ወይንም በ ቀኝ-ይጫኑ ለ ምልክት ማድረጊያ ዝርዝር"
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "የ ገጽ ቁጥር በ ሰነድ ውስጥ (የ ገጽ ቁጥር በ ታተመ ሰነድ ላይ) ይጫኑ ለ መክፈት የ መሄጃ ወደ ገጽ ንግግር"
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "የ ገጽ ዘዴ በ ቀኝ-ይጫኑ ዘዴውን ለመቀየር ወይንም የ ዘዴ ንግግርን ይክፈቱ"
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "ፊደል በ ትልቁ መጻፊያ"
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "ረድፎች"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "ፊደል በ ትልቁ መጻፊያ የለም"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "የ ገጽ መጨረሻ የለም"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "አታንፀባርቅ"
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "በ ቁመት መገልበጫ"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "በ አግድም መገልበጫ"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "በ አግድም እና በ ቁመት መገልበጫ"
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ ማንፀባረቂያ በ አግድም በሙሉ ገጽ ላይ"
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "የ ባህሪ ዘዴ"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "ምንም የ ባህሪ ዘዴ የለም"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "ግርጌ"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "ግርጌ የለም"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "ራስጌ"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "ራስጌ የለም"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "በሙሉ"
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(ማስቆሚያ ብቻ)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "ስፋት:"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "የተወሰነ እርዝመት:"
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "ዝቅተኛ እርዝመት:"
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "ወደ አንቀጽ"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "ወደ ባህሪ"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "ወደ ገጽ"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X Coordinate:"
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y Coordinate:"
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "ከ ላይ"
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "መሀከል በ ቁመት"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ከ ታች"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "ከ መስመሩ በላይ"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "መሀከል ማስመሪያ"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "ከ መስመሩ በታች"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "በ ቀኝ በኩል"
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "በ አግድም መሀከል ላይ"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "በ ግራ በኩል"
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "ውስጥ"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "ውጪ"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "በ ሙሉ ስፋት"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "አምዶች"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "መለያያ ስፋት:"
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "ከፍተኛ የ ግርጌ ማስታወሻ ቦታ:"
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "በንባብ-ብቻ ሰነድ ውስጥ ሊታረም የሚችል"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "መክፈያ"
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "ቁጥር መስጫ"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "ቁጥር መስጫ የለም"
+msgid "List Style: (None)"
+msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "ተገናኝቷል ወደ "
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "እና "
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "መስመሮች መቁጠሪያ"
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "መስመሮች አትቁጠር"
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "እንደገና ማስጀመሪያ ቆጠራውን በ: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "ብርሁነት: "
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "ቀይ: "
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "አረንጓዴ: "
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "ሰማያዊ: "
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "ማነጻጸሪያ: "
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "ጋማ: "
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "ግልጽነት: "
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "መገልበጫ"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "አትገልብጥ"
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "በ ንድፎች ዘዴ: "
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "መደበኛ"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "ግራጫማ"
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "ጥቁር & ነጭ"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "የ ውሀ ምልክት"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "ማዞሪያ"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "መጋጠሚያ የለም"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "መጋጠሚያ (ለ መስመሮች ብቻ)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "መጋጠሚያ (ለ መስመሮች እና ባህሪዎች)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "የ ጽሁፉን ፍሰት መከተያ"
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "የ ጽሁፉን ፍሰት አትከተል"
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "ድንበሮች ማዋሀጃ"
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "ድንበሮችን አታዋህድ"
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "ሰንጠረዥ"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "ገጽ"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "መሳያ"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr "መቆጣጠሪያ"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
msgctxt "ST_REG"
msgid "Section"
msgstr "ክፍል"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "ምልክት ማድረጊያ"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "ንድፎች"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "የ OLE እቃ"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "ራስጌዎች"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "ምርጫዎች"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "አስታዋሽ"
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "አስተያየት"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "መፈለጊያ መድገሚያ"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "የ ማውጫ ማስገቢያ"
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "የ መቀመሪያ ሰንጠረዥ"
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "የ ተሳሳተ የ መቀመሪያ ሰንጠረዥ"
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "የሚቀጥለው ሰንጠረዥ"
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "የሚቀጥለው ገጽ"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "የሚቀጥለው መሳያ"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "የሚቀጥለው መቆጣጠሪያ"
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "የሚቀጥለው ክፍል"
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "የሚቀጥለው ምልክት ማድረጊያ"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "የሚቀጥለው ንድፍ"
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "የሚቀጥለው የ OLE እቃ"
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "የሚቀጥለው ራስጌ"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "የሚቀጥለው ምርጫ"
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "የ ሚቀጥለው የ ግርጌ ማስታወሻ"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "የሚቀጥለው አስታዋሽ"
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "የሚቀጥለው አስተያየት"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "ፍለጋውን ወደፊት መቀጠያ"
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "የሚቀጥለው ማውጫ ማስገቢያ"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "ቀደም ያለው ሰንጠረዥ"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "ቀደም ያለው ገጽ"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "ቀደም ያለው መሳያ"
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "ቀደም ያለው መቆጣጠሪያ"
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "ቀደም ያለው ክፍል"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "ቀደም ያለው ምልክት ማድረጊያ"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "ቀደም ያለው ንድፍ"
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "ቀደም ያለው የ OLE እቃ"
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "ቀደም ያለው ራስጌ"
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "ቀደም ያለው ምርጫ"
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "ቀደም ያለው የ ግርጌ ማስታወሻ"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "ቀደም ያለው አስታዋሽ"
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "ቀደም ያለው አስተያየት"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "የ ኋሊዮሽ ፍለጋውን መቀጠያ"
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "ቀደም ያለው የማውጫ ማስገቢያ"
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "ቀደም ያለው የ ሰንጠረዥ መቀመሪያ"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "የሚቀጥለው የ ሰንጠረዥ መቀመሪያ"
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "ቀደም ያለው የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "የሚቀጥለው የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "ተጨምሯል"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "ጠፍቷል"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "አቀራረብ"
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "ሰንጠረዡ ተቀይሯል"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "የ ተፈጸሙ የ አንቀጽ ዘዴዎች"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "የ አንቀጽ አቀራረብ ተቀይሯል"
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "ረድፍ ገብቷል"
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "ረድፍ ጠፍቷል"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "ክፍል ገብቷል"
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "ክፍል ጠፍቷል"
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "የ መጨረሻ ማስታወሻ: "
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "የ ግርጌ ማስታወሻ: "
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-ይጫኑ Smart Tag menu ለመክፈት"
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "ራስጌ (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "የ መጀመሪያ ገጽ ራስጌ (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "የ ግራ ገጽ ራስጌ (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "የ ቀኝ ገጽ ራስጌ (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "ግርጌ (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "የ መጀመሪያ ገጽ ግርጌ (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "የ ግራ ገጽ ግርጌ (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "የ ቀኝ ገጽ ግርጌ (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "ራስጌ ማጥፊያ..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "የ ራስጌ አቀራረብ..."
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "ግርጌ ማጥፊያ..."
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "የ ግርጌ አቀራረብ..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "ሰንጠረዥ-አታንሳፍፍ"
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "የ ምስል ፋይል መክፈት አልተቻለም"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "የ ምስል ፋይል ማንበብ አልተቻለም"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "ያልታወቀ የምስል አቀራረብ"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "ይህ የምስል ፋይል አይነት የተደገፈ አይደለም"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "የምስል ማጣሪያ አልተገኘም"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "ስእሉን ለማስገባት በቂ memory የለም"
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ምስል ማስገቢያ"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "አስተያየት : "
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "ማስገቢያ"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "ማጥፊያ"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "በራሱ አራሚ"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "አቀራረብ"
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "ሰንጠረዡ ተቀይሯል"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "የ አንቀጽ ዘዴዎች መፈጸሚያ"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "ገጽ "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "ገጽ %1 ከ %2"
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "ገጽ %1 ከ %2 (ገጽ %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "አንቀጽ"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ምስል"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "የ OLE እቃ"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "የሰንጠረዥ ረድፍ"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "የሰንጠረዥ ክፍል"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "ገጽ"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ራስጌ"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ግርጌ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML ሰነድ"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "አርእስት"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "መለያያ"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ፋይሉን \"%1\" በ \"%2\" መንገድ ውስጥ ማግኘት አልተቻለም"
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ተጠቃሚው-የተወሰነ ማውጫ"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<ምንም>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<ምንም>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "የምእራፍ ቁጥር"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "ማስገቢያ"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "ማስረጊያ ማቆሚያ"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "የ ገጽ ቁጥር"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "የምእራፍ መረጃ"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Hyperlink መጀመሪያ"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Hyperlink መጨረሻ"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "የ ቢብሊዮግራፊ ማስገቢያ...: "
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "የ ባህሪ ዘዴ: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "የ ጽሁፍ አካል"
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "ይጫኑ Ctrl+Alt+A ትኩረቱን ወደ ተጨማሪ ተግባሮች ለማንቀሳቀስ"
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት የ መቆጣጠሪያ አካሎችን ለመምረጥ"
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "ይጫኑ Ctrl+Alt+B ወደ አሁኑ የ መቆጣጠሪያ አካል ትኩረቱን ለ መመለስ"
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
@@ -9322,259 +9365,259 @@ msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "መሰረታዊ መስመር ከ ~ላይ"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~መሰረታዊ መስመር ከ ታች"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "መሰረታዊ መስመር ~መሀከል"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "እቃ ማስገቢያ"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "እቃ ማረሚያ"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (ቴምፕሌት: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "ድንበሮች"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "መደብ"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(የ አንቀጽ ዘዴ: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "የ ገጽ ቁጥሮች ወደ አሁኑ ገጽ መስጠት አልተቻለም: ሙሉ ቁጥሮች በ ግራ ገጾች ላይ ይሆናሉ: ጎዶሎ ቁጥሮች በ ቀኝ ገጾች ላይ ይሆናሉ"
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION ዋናው ሰነድ"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "የፋይል ግንኙነት የአሁኑን ክፍል ይዞታዎች ያጠፋቸዋል ፡ ለማንኛውም ልቀጥል?"
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "ያስገቡት የ መግቢያ ቃል ዋጋ የለውም"
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "የመግቢያ ቃል አልተሰናዳም"
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "ጭረት ተጠናቋል"
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "ምንም (ፊደሎቹን አታርም)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "ነባሩን ቋንቋ እንደነበረ መመለሻ"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "ተጨማሪ..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~መተው"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "መግለጫዎች..."
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "የተለዩ አካባቢዎች ተሰናክለው እንደሆን መመርመሪያ: ለማንኛውም ልመርምር?"
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "ሰነዱን ማዋሀድ አልተቻለም"
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "%PRODUCTNAME መሰረታዊ አካል ጎድሏል: የ ደብዳቤ ማዋሀጃ መጠቀም ያስፈልጋል:"
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "ምንጩን መጫን አልተቻለም"
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "ምንም የ ፋክስ ማተሚያ አልተዘጋጀም በ መሳሪያዎች/ምርጫዎች/%1/ማተሚያ ስር"
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "የ ጽሁፍ ሰነድ"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "ምንጩ አልተገለጸም"
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ረቂቅ "
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "የ ግርጌ/መጨረሻ ማስታወሻ ማረሚያ"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "መፈለጊያው ቁልፍ በዚህ XX ያህል ጊዜ ተቀይሯል"
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "ረድፍ "
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "አምድ "
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "ምንጩን ~መላኪያ..."
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~መላኪያ የ ኮፒ ምንጭ..."
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~ይቀጥሉ"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "በመላክ ላይ ወደ: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "ተሳክቶ ተልኳል"
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "መላክ አልተቻለም"
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "ድርጅት;CR;የ መጀመሪያ ስም; ;የ አባት ስም;CR;አድራሻ ;CR;ከተማ ; ;ከፍለ ሀገር; ;ፖ.ሳ.ቁጥር ;CR;አገር;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "ጽሁፍ መቀመሪያ"
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "ምንም እቃ አልተገለጸም"
@@ -9583,7 +9626,7 @@ msgstr "ምንም እቃ አልተገለጸም"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አንቀጽ መመደቢያ ደረጃ ከፍተኛ ነው"
@@ -9592,121 +9635,121 @@ msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አን
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr " ዋጋ ያለው "
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "ዋጋ የሌለው"
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "ዋጋ የሌለው ፊርማ"
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "የ ተፈረመው-በ"
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "የ አንቀጽ ፊርማ"
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "የ ንግድ ካርዶች"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "ኢሜይል ማሰናጃ"
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "ማስገቢያ"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "ማጥፊያ"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "መለያዎች"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "መፈለጊያ ደንብ"
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "አማራጭ ማስገቢያ"
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1ኛ ቁልፍ"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2ኛ ቁልፍ"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "አስተያየት"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ጉዳዩን ማመሳሰያ"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "ቃላት ብቻ"
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "አዎ"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "አይ"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "ማስተካከያ"
@@ -9837,6 +9880,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "ያልተሰባበረ ክፍተት መጨመሪያ"
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -11569,13 +11618,13 @@ msgstr "ማስታወሻ: የ ኢ-ሜይል አድራሻዎችን በ ሴሚኮ
#: sw/uiconfig/swriter/ui/ccdialog.ui:145
msgctxt "ccdialog|extended_tip|cc"
msgid "Enter the recipients of email copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "የ ኢሜይል ኮፒ ተቀባዮችን ያስገቡ: በ መለያየት በ ሴሚኮለን (;)."
#. BCsoU
#: sw/uiconfig/swriter/ui/ccdialog.ui:163
msgctxt "ccdialog|extended_tip|bcc"
msgid "Enter the recipients of email blind copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "የ አይነ ስውር ኢሜይል ኮፒ ተቀባዮችን ያስገቡ: በ መለያየት በ ሴሚኮለን (;)."
#. P3CcW
#: sw/uiconfig/swriter/ui/ccdialog.ui:178
@@ -11677,7 +11726,7 @@ msgstr "ሁኔታዎች..."
#: sw/uiconfig/swriter/ui/charurlpage.ui:91
msgctxt "charurlpage|extended_tip|eventpb"
msgid "Specify an event that triggers when you click the hyperlink."
-msgstr "እርስዎ በሚጫኑ ጊዜ hyperlink ሁኔታ የሚያስነሳ መወሰኛ "
+msgstr "እርስዎ በሚጫኑ ጊዜ hyperlink ሁኔታ የሚያስነሳ መወሰኛ:"
#. MhJbE
#: sw/uiconfig/swriter/ui/charurlpage.ui:109
@@ -11707,7 +11756,7 @@ msgstr "መቃኛ..."
#: sw/uiconfig/swriter/ui/charurlpage.ui:163
msgctxt "charurlpage|extended_tip|urlpb"
msgid "Locate the file that you want to link to, and then click Open."
-msgstr "ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ መክፈቻ :"
+msgstr "ፋይሉን ፈልገው ያግኙ እንደ አገናኝ ማስገባት የሚፈልጉትን እና ከዛ ይጫኑ መክፈቻ:"
#. ha6rk
#: sw/uiconfig/swriter/ui/charurlpage.ui:186
@@ -11743,7 +11792,7 @@ msgstr "ይምረጡ የ አቀራረብ ዘዴ ለ መጠቀም ለ ተጎበ
#: sw/uiconfig/swriter/ui/charurlpage.ui:293
msgctxt "charurlpage|extended_tip|unvisitedlb"
msgid "Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar."
-msgstr "ይምረጡ የ አቀራረብ ዘዴ ለ መጠቀም ለ ያልተጎበኙ አገናኞች ከ ዝርዝር ውስጥ: ለ መጨመር ወይንም ለማሻሻል ዘዴ ከዚህ ዝርዝር ውስጥ: ንግግሩን ይዝጉ: እና ይጫኑ የ ዘዴዎች ምልክት በ አቀራረብ እቃ መደርደሪያ ላይ "
+msgstr "ይምረጡ የ አቀራረብ ዘዴ ለ መጠቀም ለ ያልተጎበኙ አገናኞች ከ ዝርዝር ውስጥ: ለ መጨመር ወይንም ለማሻሻል ዘዴ ከዚህ ዝርዝር ውስጥ: ንግግሩን ይዝጉ: እና ይጫኑ የ ዘዴዎች ምልክት በ አቀራረብ እቃ መደርደሪያ ላይ:"
#. 43fvG
#: sw/uiconfig/swriter/ui/charurlpage.ui:308
@@ -11947,7 +11996,7 @@ msgstr "ምርጫዎች"
#: sw/uiconfig/swriter/ui/columnpage.ui:741
msgctxt "columnpage|liststore2"
msgid "Current Section"
-msgstr "የአሁኑ ክፍል"
+msgstr "የ አሁኑ ክፍል"
#. VSvpa
#: sw/uiconfig/swriter/ui/columnpage.ui:742
@@ -12211,7 +12260,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/conditionpage.ui:245
msgctxt "conditionpage|filter"
msgid " 3rd List Level"
-msgstr ""
+msgstr " 3ኛ ዝርዝር ምልክት"
#. kne44
#: sw/uiconfig/swriter/ui/conditionpage.ui:246
@@ -12764,7 +12813,7 @@ msgstr "እርስዎ ማሳየት የሚፈልጉትን ጽሁፍ ያስገቡ
#: sw/uiconfig/swriter/ui/dropcapspage.ui:281
msgctxt "dropcapspage|extended_tip|comboBOX_TEMPLATE"
msgid "Select the formatting style that you want to apply to the drop caps."
-msgstr "እርስዎ መጠቀም የሚፈልጉትን አቀራረብ አይነት ይምረጡ ለ መፈጸም ፊደል በትልቁ መጻፊያ "
+msgstr "እርስዎ መጠቀም የሚፈልጉትን አቀራረብ አይነት ይምረጡ ለ መፈጸም ፊደል በትልቁ መጻፊያ:"
#. tAmQu
#: sw/uiconfig/swriter/ui/dropcapspage.ui:296
@@ -12788,13 +12837,13 @@ msgstr "እቃ ይምረጡ: "
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:40
msgctxt "dropdownfielddialog|prev"
msgid "_Previous"
-msgstr ""
+msgstr "_ያለፈው"
#. 2Wx2B
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:53
msgctxt "dropdownfielddialog|next"
msgid "_Next"
-msgstr ""
+msgstr "_ይቀጥሉ"
#. USGaG
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59
@@ -19007,7 +19056,7 @@ msgstr "በ ገጹ ከ ላይ ጠርዝ እና ከ ላይ ጠርዝ የ አድ
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:117
msgctxt "mmlayoutpage|align"
msgid "Align to text body"
-msgstr "ወደ ጽሁፍ ሰውነት ማሰለፊያ"
+msgstr "ወደ ጽሁፍ አካል ማሰለፊያ"
#. BE4cD
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:125
@@ -20210,289 +20259,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "ዋናውን መመልከቻ መቀያየሪያ"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "በ ዋናው መመልከቻ እና በ መደበኛ መመልከቻ መሀከል መቀያየሪያ ዋናው ሰነድ ከ ተከፈተ "
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "ይዞታ መቃኛ መመልከቻ"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "ሁሉንም ምድቦች በ መቃኛ ውስጥ እና የ ተመረጡትን ምድቦች ማሳያ መካከል መቀያየሪያ "
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "ራስጌ"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "መጠቆሚያውን ወደ ራስጌ ወይንም ከ ራስጌ ወደ ሰነዱ የ ጽሁፍ ቦታ ማንቀሳቀሻ"
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "ግርጌ"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "መጠቆሚያውን ወደ ግርጌ ወይንም ከ ግርጌ ወደ ሰነዱ የ ጽሁፍ ቦታ ማንቀሳቀሻ."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "ጽሁፍ <-> ማስቆሚያ"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "በ ግርጌ ማስታወሻ ጽሁፍ እና በ ግርጌ ማስታወሻ ማስቆሚያ መካከል መዝለያ "
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "አስታዋሽ ማሰናጃ"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "ይጫኑ እዚህ አስታዋሽ ለማሰናዳት መጠቆሚያው አሁን ባለበት: እስከ አምስት አስታዋሽ መግለጽ ይችላሉ: ወደ አስታዋሽ ለመዝለል ይጫኑ የ መቃኛ ምልክት ከ መቃኛ መስኮት ውስጥ የ አስታዋሽ ምልክት እና ከዛ ይጫኑ ቀደም ያለውን ወይንም የሚቀጥለውን ቁልፍ "
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "የ ራስጌ ደረጃዎች ማሳያ"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "ይጫኑ በዚህ ምልክት ላይ: እና ይምረጡ የ ራስጌ ረቂቅ ቁጥር ደረጃዎች እርስዎ መመልከት የሚፈልጉትን በ መቃኛ መስኮት ውስጥ "
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "ዝርዝር ሳጥን ማብሪያ/ማጥፊያ"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "ማሳያ ወይንም መደበቂያ የ መቃኛ ዝርዝር "
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "ደረጃ ማሳደጊያ"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "ለ ተመረጠው ራስጌ የ ረቂቅ ደረጃ መጨመሪያ: እና ከ ራስጌው በ ታች በኩል በሚፈጠረው ራስጌ: በ አንድ ደረጃ: ለ ተመረጠው ራስጌ የ ረቂቅ ደረጃ ለ መጨመር: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "ደረጃ ማሳነሻ"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "የ ተመረጠውን ራስጌ ረቂቅ ደረጃ መቀነሻ: እና የ ራስጌዎች ከ ራስጌ በ ታች የሚታዩ: በ አንድ ደረጃ: የ ተመረጠውን ራስጌ ረቂቅ ደረጃ ይቀንሳል: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "ምእራፍ ማሳደጊያ"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "የ ተመረጠውን ራስጌ እና ጽሁፍ ከ ራስጌ በ ታች በኩል ማንቀሳቀሻ: ወደ ላይ አንድ ራስጌ ቦታ በ መቃኛ እና በ ሰነድ ውስጥ: የ ተመረጠውን ራስጌ እና ከ ራስጌ ጋር የሚዛመደውን ጽሁፍ አይደለም: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "ምእራፍ ማሳነሻ"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "የ ተመረጠውን ራስጌ እና ጽሁፍ ከ ራስጌ በ ታች በኩል ማንቀሳቀሻ: ወደ ታች አንድ ራስጌ ቦታ በ መቃኛ እና በ ሰነድ ውስጥ: የ ተመረጠውን ራስጌ እና ከ ራስጌ ጋር የሚዛመደውን ጽሁፍ አይደለም: ተጭነው ይያዙ Ctrl, እና ከዛ ይጫኑ ይህን ምልክት "
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "መጎተቻ ዘዴ"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "መጎተቻ እና መጣያ ምርጫ ማሰናጃ እቃዎች ከ መቃኛ ውስጥ ወደ ሰነድ ውስጥ: ለምሳሌ: እንደ hyperlink. ይጫኑ ይህን ምልክት: እና ከዛ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን ምርጫ"
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "ሰነድ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "ንቁ መስኮት"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "ዋናውን መመልከቻ መቀያየሪያ"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "በ ዋናው መመልከቻ እና በ መደበኛ መመልከቻ መሀከል መቀያየሪያ ዋናው ሰነድ ከ ተከፈተ "
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "ማረሚያ"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "ማሻሻያ"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "ይጫኑ እና ይምረጡ ማሻሻል የሚፈልጉትን ይዞታዎች"
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "ማስገቢያ"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "ወደ ዋናው ሰነድ ፋይል: ማውጫ: ወይንም አዲስ ሰነድ ማስገቢያ "
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "እንዲሁም ይዞታዎችን ማስቀመጫ"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr "የ ተገናኙ ፋይሎች ይዞታዎችን ኮፒ ማስቀመጫ በ ዋናው ሰነድ ውስጥ: ይህ ያረጋግጣል የ አሁኑ ይዞታዎች ዝግጁ እንደሆኑ የ ተገናኙ ፋይሎች ጋር መድረስ በማይቻል ጊዜ "
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "ወደ ላይ ማንቀሳቀሻ"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "የ ተመረጠውን በ መቃኛው ዝርዝር ውስጥ አንድ ደረጃ ወደ ላይ ማንቀሳቀሻ "
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "ወደ ታች ማንቀሳቀሻ"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "የ ተመረጠውን በ መቃኛው ዝርዝር ውስጥ አንድ ደረጃ ወደ ላይ ማንቀሳቀሻ "
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
@@ -20534,181 +20583,181 @@ msgid "~File"
msgstr "~ፋይል"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_እቅድ"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "ማመሳከሪያዎ_ች"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "ማመሳከሪ~ያ"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_ሰንጠረዥ"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~ሰንጠረዥ"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~እቃ"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~ማተሚያ"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -21752,20 +21801,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "ማሰቀመጫ እንደ"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "ይጫኑ የ ቁጥር መስጫ ዘዴ ከ ዝርዝር ውስጥ: እና ከዛ ያስገቡ የ ዘዴውን ስም: የ ቁጥር ደረጃ ረቂቅ ተስማሚ ይፈጸማል ለ "
+msgid "Shows the current saved format names."
+msgstr ""
+
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "ይጫኑ የ ቁጥር መስጫ ዘዴ ከ ዝርዝር ውስጥ: እና ከዛ ያስገቡ የ ዘዴውን ስም: የ ቁጥር ደረጃ ረቂቅ ተስማሚ ይፈጸማል ለ "
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
+msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "አቀራረብ"
@@ -21776,212 +21837,224 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr "የ ረቂቅ ደረጃ:"
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr "የ ጽሁፍ አካል"
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr "ደረጃ 1"
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr "ደረጃ 2"
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr "ደረጃ 3"
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr "ደረጃ 4"
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr "ደረጃ 5"
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr "ደረጃ 6"
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr "ደረጃ 7"
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr "ደረጃ 8"
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr "ደረጃ 9"
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "ደረጃ 10"
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "ረቂቅ"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "ምንም"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "ዘዴ ማረሚያ"
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr "እንደገና ማስጀመሪያ ቁጥር መስጫ በ አሁኑ አንቀጽ ላይ "
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "መ_ጀመሪያ በ:"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr "ይምረጡ ይህን ምልክት ማድረጊያ ሳጥን: እና ከዛ ያስገቡ እርስዎ ወደ አንቀጽ ውስጥ መመደብ የሚፈልጉትን ቁጥር "
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr "እርስዎ ወደ አንቀጽ ውስጥ መመደብ የሚፈልጉትን ቁጥር ያስገቡ "
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
+msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "ይህን አንቀጽ በ መስመር ቁጥር መስጫ ላይ _መጨመሪያ"
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr "የ አሁኑን አንቀጽ በመስመር ቁጥር መስጫ ውስጥ ማካተቻ "
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "በዚህ አንቀጽ ላይ እ_ንደገና ማስጀመሪያ"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr "እንደገና ማስጀመሪያ ቁጥር መስጫ ከ አሁኑ አንቀጽ ጀምሮ: ወይንም እርስዎ ካስገቡት ቁጥር ጀምሮ "
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "_መጀመሪያ በ:"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr "የ መስመር ቁጥር መስጫ እንደገና የሚጀምርበትን ቁጥር ያስገቡ "
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "መስመር ቁጥር መስጫ"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -22528,7 +22601,7 @@ msgstr "አን_ቀጽ መጨረሻ"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:42
msgctxt "extended_tip|paragraph"
msgid "Specifies whether paragraph delimiters are displayed. The paragraph delimiters also contain paragraph format information."
-msgstr "የ አንቀጽ ምልክት ይታዩ እንደሆን መወሰኛ: የ አንቀጽ ምልክት እንዲሁም የ አንቀጽ አቀራረብ መረጃ ይይዛሉ "
+msgstr "የ አንቀጽ ምልክት ይታዩ እንደሆን መወሰኛ: የ አንቀጽ ምልክት እንዲሁም የ አንቀጽ አቀራረብ መረጃ ይይዛሉ:"
#. jBMu5
#: sw/uiconfig/swriter/ui/optformataidspage.ui:53
@@ -22552,7 +22625,7 @@ msgstr "ክፍተ_ቶች"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:80
msgctxt "extended_tip|spaces"
msgid "Specifies whether to represent every space in the text with a dot."
-msgstr "ሁሉንም ክፍተት በ ጽሁፍ ውስጥ በ ነጥብ ይወከል እንደሆን መወሰኛ "
+msgstr "ሁሉንም ክፍተት በ ጽሁፍ ውስጥ በ ነጥብ ይወከል እንደሆን መወሰኛ:"
#. A3QMx
#: sw/uiconfig/swriter/ui/optformataidspage.ui:91
@@ -22570,13 +22643,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optformataidspage.ui:110
msgctxt "optformataidspage|tabs"
msgid "Tabs"
-msgstr ""
+msgstr "Tabs"
#. GM6S5
#: sw/uiconfig/swriter/ui/optformataidspage.ui:118
msgctxt "extended_tip|tabs"
msgid "Specifies that tab stops are displayed as small arrows."
-msgstr "የ tab ማስቆሚያ እንደ ትንሽ ቀስቶች እንደሚታዩ መወሰኛ "
+msgstr "የ tab ማስቆሚያ እንደ ትንሽ ቀስቶች እንደሚታዩ መወሰኛ:"
#. rBxLK
#: sw/uiconfig/swriter/ui/optformataidspage.ui:129
@@ -22606,7 +22679,7 @@ msgstr "የ ባህሪ አቀራረብ የሚጠቀም ጽሁፍ ማሳያ \"የ
#: sw/uiconfig/swriter/ui/optformataidspage.ui:167
msgctxt "optformataidspage|bookmarks"
msgid "Bookmarks"
-msgstr ""
+msgstr "ምልክት ማድረጊያ"
#. 3RWMe
#: sw/uiconfig/swriter/ui/optformataidspage.ui:238
@@ -22620,7 +22693,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optformataidspage.ui:259
msgctxt "optformataidspage|displayfl"
msgid "Display Formatting"
-msgstr ""
+msgstr "አቀራረብ ማሳያ"
#. ufN3R
#: sw/uiconfig/swriter/ui/optformataidspage.ui:287
@@ -22644,7 +22717,7 @@ msgstr "መጠቆሚያ ማስቻያ"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:342
msgctxt "extended_tip|cursorinprot"
msgid "Specifies that you can set the cursor in a protected area, but cannot make any changes."
-msgstr "እርስዎ መጠቆሚያውን በሚጠበቅ ቦታ ማሰናጃ መወሰኛ: ነገር ግን ምንም መቀየር አይችሉም "
+msgstr "እርስዎ መጠቆሚያውን በሚጠበቅ ቦታ ማሰናጃ መወሰኛ: ነገር ግን ምንም መቀየር አይችሉም:"
#. nfGAn
#: sw/uiconfig/swriter/ui/optformataidspage.ui:357
@@ -22662,43 +22735,43 @@ msgstr "_በቀጥታ መጠቆሚያ"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:398
msgctxt "extended_tip|cursoronoff"
msgid "Activates the direct cursor."
-msgstr "በ ቀጥታ መጠቆሚያ ያስጀምሩ "
+msgstr "በ ቀጥታ መጠቆሚያ ያስጀምሩ:"
#. 8eyNs
#: sw/uiconfig/swriter/ui/optformataidspage.ui:416
msgctxt "optformataidspage|fillmode"
msgid "Insert:"
-msgstr ""
+msgstr "ማስገቢያ:"
#. ACvNA
#: sw/uiconfig/swriter/ui/optformataidspage.ui:433
msgctxt "optformataidspage|filltab"
msgid "Tabs"
-msgstr ""
+msgstr "Tabs"
#. CgFKr
#: sw/uiconfig/swriter/ui/optformataidspage.ui:434
msgctxt "optformataidspage|filltabandspace"
msgid "Tabs and spaces"
-msgstr ""
+msgstr "Tabs እና ክፍተት"
#. 5FinN
#: sw/uiconfig/swriter/ui/optformataidspage.ui:435
msgctxt "optformataidspage|fillspace"
msgid "Spaces"
-msgstr ""
+msgstr "ክፍተት"
#. mSGUr
#: sw/uiconfig/swriter/ui/optformataidspage.ui:436
msgctxt "optformataidspage|fillindent"
msgid "Left paragraph margin"
-msgstr ""
+msgstr "የ ግራ አንቀጽ መስመር"
#. 7REyM
#: sw/uiconfig/swriter/ui/optformataidspage.ui:437
msgctxt "optformataidspage|fillmargin"
msgid "Paragraph alignment"
-msgstr ""
+msgstr "አንቀጽ ማሰለፊያ"
#. zGjgi
#: sw/uiconfig/swriter/ui/optformataidspage.ui:458
@@ -22710,37 +22783,37 @@ msgstr "በቀጥታ መጠቆሚያ"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:489
msgctxt "optformataidspage|anchor"
msgid "_Anchor:"
-msgstr ""
+msgstr "_ማስቆሚያ:"
#. 4ahDA
#: sw/uiconfig/swriter/ui/optformataidspage.ui:506
msgctxt "optformataidspage|cxDefaultAnchor1"
msgid "To Paragraph"
-msgstr ""
+msgstr "ወደ አንቀጽ"
#. Fxh2u
#: sw/uiconfig/swriter/ui/optformataidspage.ui:507
msgctxt "optformataidspage|cxDefaultAnchor2"
msgid "To Character"
-msgstr ""
+msgstr "ወደ ባህሪ"
#. rafqG
#: sw/uiconfig/swriter/ui/optformataidspage.ui:508
msgctxt "optformataidspage|cxDefaultAnchor3"
msgid "As Character"
-msgstr ""
+msgstr "እንደ ባህሪ"
#. B3qDX
#: sw/uiconfig/swriter/ui/optformataidspage.ui:523
msgctxt "optformataidspage|lbImage"
msgid "Image"
-msgstr ""
+msgstr "ምስል"
#. npuVw
#: sw/uiconfig/swriter/ui/optformataidspage.ui:551
msgctxt "extended_tip|OptFormatAidsPage"
msgid "In %PRODUCTNAME text and HTML documents, defines the display for certain characters and for the direct cursor."
-msgstr "በ %PRODUCTNAME ጽሁፍ እና HTML ሰነድ ውስጥ ለ አንዳንድ ባህሪዎች እና በ ቀጥታ መጠቆሚያ ማሳያ መግለጫ "
+msgstr "በ %PRODUCTNAME ጽሁፍ እና HTML ሰነድ ውስጥ ለ አንዳንድ ባህሪዎች እና በ ቀጥታ መጠቆሚያ ማሳያ መግለጫ:"
#. V9Ahc
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:43
@@ -22764,7 +22837,7 @@ msgstr "_ቻርትስ"
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:70
msgctxt "extended_tip|updatecharts"
msgid "Specifies whether to automatically update charts. Whenever a Writer table cell value changes and the cursor leaves that cell, the chart that displays the cell value is updated automatically."
-msgstr "ራሱ በራሱ ቻርትስ ያሻሽል እንደሆን መወሰኛ: የ መጻፊያ ሰንጠረዥ ክፍል በሚቀየር ጊዜ እና የ አይጥ መጠቆሚያው ክፍሉን በሚለቅ ጊዜ: ቻርትስ የ ክፍል ዋጋ የሚያሳየው ራሱ በራሱ ይሻሻላል "
+msgstr "ራሱ በራሱ ቻርትስ ያሻሽል እንደሆን መወሰኛ: የ መጻፊያ ሰንጠረዥ ክፍል በሚቀየር ጊዜ እና የ አይጥ መጠቆሚያው ክፍሉን በሚለቅ ጊዜ: ቻርትስ የ ክፍል ዋጋ የሚያሳየው ራሱ በራሱ ይሻሻላል:"
#. GfsZW
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:85
@@ -22782,7 +22855,7 @@ msgstr "_ሁልጊዜ"
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:124
msgctxt "extended_tip|always"
msgid "Always updates links while loading a document, and only if the document is in a trusted file location or the global security level is Low (Not recommended)."
-msgstr "ሁልጊዜ አገናኝ ማሻሻያ ሰነድ በሚጫን ጊዜ: እና ፋይሉ በሚታመን አካባቢ ከሆነ ብቻ ወይንም አለም አቀፍ የ ደህንነት ደረጃ ዝቅተኛ ከሆነ (ይህን አንመክርም) "
+msgstr "ሁልጊዜ አገናኝ ማሻሻያ ሰነድ በሚጫን ጊዜ: እና ፋይሉ በሚታመን አካባቢ ከሆነ ብቻ ወይንም አለም አቀፍ የ ደህንነት ደረጃ ዝቅተኛ ከሆነ (ይህን አንመክርም):"
#. UAGDA
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:135
@@ -22836,7 +22909,7 @@ msgstr "_ማስረጊያ ማስቆሚያ:"
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:271
msgctxt "extended_tip|tab"
msgid "Specifies the spacing between the individual tab stops."
-msgstr "ክፍተት ይወስኑ ለ እያንዳንዱ ማስረጊያ ማስቆሚያ መካከል "
+msgstr "ክፍተት ይወስኑ ለ እያንዳንዱ ማስረጊያ ማስቆሚያ መካከል:"
#. 4c98s
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:294
@@ -23442,7 +23515,7 @@ msgstr "ማስቀመጫ _እንደ..."
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:99
msgctxt "outlinenumbering|extended_tip|saveas"
msgid "Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document."
-msgstr "ንግግር መክፈቻ እርስዎ የሚያስቀምጡበት: የ አሁኑን ማሰናጃ ለ ተመረጠው የ ረቂቅ ደረጃ: ስለዚህ እርስዎ ይህን ማሰናጃ መጫን ይችላሉ ከ ሌላ ሰነድ ውስጥ "
+msgstr "ንግግር መክፈቻ እርስዎ የሚያስቀምጡበት: የ አሁኑን ማሰናጃ ለ ተመረጠው የ ረቂቅ ደረጃ: ስለዚህ እርስዎ ይህን ማሰናጃ መጫን ይችላሉ ከ ሌላ ሰነድ ውስጥ:"
#. cYTmh
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:106
@@ -23502,7 +23575,7 @@ msgstr "የ አንቀጽ ዘዴ:"
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:131
msgctxt "outlinenumberingpage|extended_tip|style"
msgid "Select the paragraph style that you want to assign to the selected chapter and outline level."
-msgstr "ይምረጡ የ አንቀጽ ዘዴ እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው የ ምእራፍ እና ረቂቅ ደረጃ "
+msgstr "ይምረጡ የ አንቀጽ ዘዴ እርስዎ መመደብ የሚፈልጉትን ለ ተመረጠው የ ምእራፍ እና ረቂቅ ደረጃ:"
#. nrfyA
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:144
@@ -23562,7 +23635,7 @@ msgstr "ቁጥር መስጫ"
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:322
msgctxt "outlinenumberingpage|label17"
msgid "Preview"
-msgstr ""
+msgstr "ቅድመ እይታ"
#. xVDF2
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:359
@@ -27974,11 +28047,11 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr "የተመረጠውን የ ባህሪ ዘዴ ማረሚያ ንግግር መክፈቻ"
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
-msgstr "ለ ተመረጠው አካል የ አቀራረብ ዘዴ ይወስኑ በ አካል መስመር ላይ :"
+msgid "Specify the character style for the selected part on the Structure line."
+msgstr ""
#. 5nWPi
#: sw/uiconfig/swriter/ui/tocentriespage.ui:303
@@ -28232,11 +28305,11 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr "የ ባህሪ ዘዴዎች ለ ዋናው ማስገቢያ:"
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
-msgstr "መወሰኛ የ አቀራረብ ዘዴ ለ ዋናው ማስገቢያ በ ፊደል ቅደም ተከተል ማውጫ: በ ዋናው ማስገቢያ የ ማውጫ ማስገቢያ ለ መቀይር: ይጫኑ ከ ማውጫ ሜዳ ፊት ለ ፊት በ ሰነድ ውስጥ እና ከዛ ይምረጡ ማረሚያ - ማውጫ ማስገቢያ "
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgstr ""
#. r33aA
#: sw/uiconfig/swriter/ui/tocentriespage.ui:839
diff --git a/source/am/uui/messages.po b/source/am/uui/messages.po
index 4918f591716..afc6dde8b84 100644
--- a/source/am/uui/messages.po
+++ b/source/am/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2021-01-25 14:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/am/>\n"
@@ -17,31 +17,31 @@ msgstr ""
"X-POOTLE-MTIME: 1554083068.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr "ያስኬዱት የ ነበረው ተግባር በ $(ARG1) ተቋርጧል"
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr "ፍቃድ ወደ $(ARG1) መድረስ ተከልክሏል"
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "$(ARG1) ቀደም ብሎ ነበር"
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "ኢላማው ቀደም ብሎ ነበር"
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -53,7 +53,7 @@ msgstr ""
"በ binary format ለማስቀመጥ በጣም ትልቅ ነው: ሌሎች ተጠቃሚዎች የ ቤተ መጻህፍቱ መግቢያ ቃል የሌላቸው ማክሮስ እንዲያስኬዱ በ እነዚህ ክፍል(ሎች) እርስዎ እነዚህን ክፍል መከፋፈል አለብዎት ወደ ተለያየ ትንንሽ ክፍል መከፈል አለባቸው: መቀጠል ይፈልጋሉ ማስቀመጥ/መላክ ይህን መጻህፍት ቤት?"
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -73,289 +73,289 @@ msgstr ""
"እርስዎ እርግጠኛ ነዎት ይህ ፋይል ከ ብዙ አመቶች በፊት የ ተፈጠረ መሆኑን?"
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr "ዳታው ከ $(ARG1) ትክክለኛ ድምር የለውም"
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr "አካሉን $(ARG1) በ ዳይሬክቶሪ ውስጥ መፍጠር አይቻልም $(ARG2)."
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr "ዳታ ከ $(ARG1) ማንበብ አልተቻለም"
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr "የ መፈለግ ተግባሩን ከ $(ARG1) ማካሄድ አልተቻለም"
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr "የ ግንኙነት ተግባሩን በ $(ARG1) ላይ መፈጸም አልተቻለም"
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr "ዳታ ከ $(ARG1) መጻፍ አልተቻለም"
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr "ተግባሩ አይቻልም: $(ARG1) በ አሁኑ ዳይሬክቶሪ ውስጥ"
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr "$(ARG1) ዝግጁ አይደለም"
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr "ተግባሩ አይቻልም: $(ARG1) እና $(ARG2) የ ተለያዩ አካሎች ናቸው (drives)."
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr "ጠቅላላ የ ማስገቢያ/ውጤት ስህተት በ መድረስ ላይ እንዳለ $(ARG1)."
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr "ለ መድረስ ሙከራ ተደርጓል $(ARG1) ዋጋ በሌለው መንገድ"
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "$(ARG1) ዋጋ የሌላቸው ባህሪዎች ይዟል"
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr "አካሉ (drive) $(ARG1) ዋጋ የለውም"
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr "ዳታው ከ $(ARG1) ዋጋ የሌለው እርዝመት አለው"
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr "ተግባሩ በ $(ARG1) የ ተጀመረው ዋጋ በሌለው ደንብ ነው"
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr "ተግባሩን ማከናወን አልተቻለም ምክንያቱም $(ARG1) ሁሉ ገብ ይዟል"
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr "ስህተት የሚካፈሉት ጋር በ መድረስ ላይ ወደ $(ARG1)."
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "$(ARG1) ቦታውን የሳተ ባህሪ ይዟል"
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "ይህ ስም $(ARG1) በጣም ብዙ ባህሪዎች ይዟል"
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "$(ARG1) አልነበረም"
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "ይህ መንገድ $(ARG1) አልነበረም"
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr "ይህ ተግባር $(ARG1) በዚህ የ መስሪያ ስርአት የ ተደገፈ አይደለም"
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "$(ARG1) ዳይሬክቶሪ አይደለም"
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "$(ARG1) ፋይል አይደለም"
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr "በ አካሉ ላይ ምንም ባዶ ቦታ የለም $(ARG1)."
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr "ተግባሩን በ $(ARG1) መፈጸም አልተቻለም ምክንያቱም በጣም ብዙ ፋይሎች ተከፍተዋል"
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr "ተግባሩን በ $(ARG1) መፈጸም አልተቻለም ምክንያቱም በቂ ማስታወሻ የለም"
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr "ተግባሩ በ $(ARG1) ላይ መቀጠል አልተቻለም ምክንያቱም ተጨማሪ ዳታ በ መጠበቅ ላይ ነው"
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr "$(ARG1) ወደ ራሱ ኮፒ ማድረግ አይቻልም"
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr "ያልታወቀ ማስገቢያ/ውጤት ስህተት ለ መድረስ በመሞከር ላይ እንዳለ $(ARG1)."
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "$(ARG1) በላዩ ላይ መጻፍ አይቻልም"
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "$(ARG1)ትክክለኛ አቀራረብ አይደለም"
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "ይህ እትም $(ARG1) ትክክል አይደለም"
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "አካሉን $(ARG1) ማግኘት አልተቻለም"
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "ፎልደሩ $(ARG1) አልነበረም"
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr "የ ተገጠመው የ Java version የ ተደገፈ አይደለም"
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr "የ ተገጠመው የ Java version $(ARG1) የ ተደገፈ አይደለም"
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr "የ ተገጠመው የ Java version የ ተደገፈ አይደለም: ቢያንስ ይህ እትም $(ARG1) ያስፈልጋል"
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr "የ ተገጠመው የ Java version $(ARG1) የ ተደገፈ አይደለም: ቢያንስ ይህ እትም $(ARG2) ያስፈልጋል"
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr "ዳታው የተዛመደው ሽርክና የተበላሸ ነው"
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr "ዳታው የተዛመደው ሽርክና $(ARG1) የተበላሸ ነው"
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr "መጠኑ $(ARG1) ዝግጁ አይደለም"
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr "$(ARG1) ዝግጁ አይደለም ; እባክዎን ማስቀመጫ አካል ያስገቡ"
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr "መጠኑ $(ARG1) ዝግጁ አይደለም: እባክዎን ማስቀመጫ አካል ያስገቡ"
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr "እባክዎን ዲስክ ያስገቡ $(ARG1)"
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr "አካሉን በ ዳይሬክቶሪ ውስጥ መፍጠር አልተቻለም $(ARG1)."
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr "%PRODUCTNAME ይህን የ ማስተላለፊያ አሰራር ሲጠቀሙ ፋይሎች ላይ ተደርቦ እንዳይጻፍባቸው መከልከል አይቻልም: ለማንኛውም መቀጠል ይፈልጋሉ?"
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -377,13 +377,13 @@ msgstr ""
"ሰነዱን %PRODUCTNAME ለመጠገን ልሞክር?\n"
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "ይህን ፋይል '$(ARG1)' መጠገን አልተቻለም ስለዚህ መክፈት አይቻልም"
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -393,7 +393,7 @@ msgstr ""
"መቀጠል ይፈልጋሉ ለማስጀመር ከ %PRODUCTNAME የ ተበላሹ የ ዳታ ማዋቀሪያዎችን ሳይጨምር?"
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -403,13 +403,13 @@ msgstr ""
"መቀጠል ይፈልጋሉ ለማስጀመር ከ %PRODUCTNAME የ ተበላሹ የ ዳታ ማዋቀሪያዎችን ሳይጨምር?"
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr "የ ዳታ ምንጭ ማዋቀሪያውን '$(ARG1)' ማግኘት አልተቻለም: ያለዚህ ዳታ አንዳንድ ተግባሮች በ ትክክል ላይሰሩ ይችላሉ"
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -419,31 +419,31 @@ msgstr ""
"መቀጠል ይፈልጋሉ ለ ማስጀመር ከ %PRODUCTNAME የ ተበላሹ የ ዳታ ማዋቀሪያዎችን ሳይጨምር?"
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr "ፎርሙ ዋጋ የሌለው ዳታ ይዟል: መቀጠል ይፈልጋሉ?"
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr "ይህ ፋይል $(ARG1) በሌላ ተጠቃሚ ተቆልፏል: አሁን ሌላ የ መጻፍ ፍቃድ ለዚህ ፋይል አይሰጥም"
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr "ይህ ፋይል $(ARG1) በ እርስዎ ተቆልፏል: አሁን: ሌላ የ መጻፍ ፍቃድ ለዚህ ፋይል አይሰጥም"
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr "ይህ ፋይል $(ARG1) አሁን በ እርስዎ አልተቆለፈም"
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -453,7 +453,7 @@ msgstr ""
"እንደዚህ አይነት ሁኔታ የሚፈጠረው በ ሰርቨሩ በኩል ፋይሉን ለ መቆለፍ ሲሞከር ነው: ማረጋገጫ መስጠት አይቻልም የ መጻፍ ተግባር በዚህ ፋይል ላይ ተደርቦ እንደማይጻፍ ሌሎች ተጠቃሚዎች በሚፈጥሩት ለውጥ!"
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -467,7 +467,7 @@ msgstr ""
" $(ARG1)."
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -479,7 +479,7 @@ msgstr ""
"ይህን የ ምስክር ወረቀት ከ መቀበሎት በፊት የ ድህረ ገጹን የ ምስክር ወረቀት በሚገባ ይመርምሩ: ይህን የ ምስክር ወረቀት ድህረ ገጹን ለ መለየት ብቻ እንደሚጠቀሙበት መቀበል ይፈልጋሉ $(ARG1)?"
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -491,13 +491,13 @@ msgstr ""
"እርግጠኛ ይሁኑ የ ኮምፒዩተሩ ሰአት ትክክለኛ መሆኑን"
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr "የ ደህንነት ማስጠንቀቂያ: የ ሰርቨሩ ምስክር ወረቀት ዋጋ የለውም"
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -513,13 +513,13 @@ msgstr ""
"ለማንኛውም መቀጠል ይፈልጋሉ?"
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr "የ ደህንነት ማስጠንቀቂያ: የ ሰርቨሩ ምስክር ወረቀት ጊዜው አልፎበታል"
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -531,7 +531,7 @@ msgstr ""
"የሚያዩትን የ ምስክር ወረቀት ከ ተጠራጠሩ: እባክዎን ግንኙነቱን ይሰርዙ እና ለ ድህረ ገጹ አስተዳዳሪ ያሳውቁ"
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr "የ ደህንነት ማስጠንቀቂያ: የ ግዛቱ ስም አይመሳሰልም"
@@ -602,55 +602,55 @@ msgid "_Yes"
msgstr "_አዎ"
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr "የ መግቢያ ቃል ያስገቡ ፋይሉን ለ መክፈት: \n"
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr "የ መግቢያ ቃል ያስገቡ ፋይሉን ለ ማሻሻል: \n"
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "የመግቢያ ቃል ያስገቡ : "
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr "የመግቢያ ቃሉን ያረጋግጡ : "
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "የመግቢያ ቃል ማሰናጃ"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "የመግቢያ ቃል ማስገቢያ"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "የ ማረጋገጫው መግቢያ ቃል ከ መግቢያው ቃል ጋር አይመሳሰልም፡ የ መግቢያ ቃል እንደገና ያሰናዱ ቤሁለቱም መጻፊያ ሳጥን ውስጥ አንድ አይነት የ መግቢያ ቃል ያስገቡ"
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "እየተጠቀሙበት ያለው ሰነድ"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -662,19 +662,19 @@ msgstr ""
"ሰነድ መክፈቻ ለ ንባብ-ብቻ: ወይንም የተቆለፈውን መተው እና ሰነዱን ለ እርማት መክፈቻ"
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~መክፈቻ"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -686,61 +686,61 @@ msgstr ""
"ሰነድ መክፈቻ ለ ንባብ-ብቻ: ወይንም የተቆለፈውን መተው እና ሰነዱን ለ እርማት መክፈቻ"
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "ለማስቀመጥ ~እንደገና መሞከሪያ"
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~ማስቀመጫ"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "ክፍለ ጊዜው እስከሚያልቅ የመግቢያ ቃሉን ~አስታውስ"
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "የመግቢያ ቃሉን ~አስታውስ"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "ምንም-ያልተመሰጠረ ማስተላለፊያ"
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "ሰነዱን መቆለፍ አልተቻለም"
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr "ፋይሉን መቆለፍ አልተቻለም ሙሉ በሙሉ ለ መድረስ %PRODUCTNAME, በ ጎደለ የ ፍቃድ ምክንያት የ ፋይል መቆለፊያ በዚያ ፋይል አካባቢ ለ መፍጠር"
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "እየተጠቀሙበት ያለው ሰነድ"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -756,7 +756,7 @@ msgstr ""
"ሰነዱን ለ ንባብ-ብቻ መክፈቻ ወይንም የ ሰነዱን ኮፒ ለ ማረሚያ መክፈቻ $(ARG3)"
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -766,31 +766,31 @@ msgstr ""
"Yእርስዎ የ ፋይል መቆለፊያውን መተው: እና ሰነዱን ለ ማረም መክፈት ይችላሉ"
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~ኮፒ መክፈቻ"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "ያልታወቀ ተጠቃሚ"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "ሰነዱ በሌሎች ተቀይሯል"
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -802,19 +802,19 @@ msgstr ""
"ለማንኛውም ማስቀመጥ ይፈልጋሉ?"
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "~ላስቀምጠው ለማናቸውም"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "እየተጠቀሙበት ያለው ሰነድ"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -830,7 +830,7 @@ msgstr ""
"ሰነዱን ለ ማስቀመጥ እንደገና በኋላ ይሞክሩ ወይንም የ ሰነዱን ኮፒ ለ ማስቀመጥ"
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -846,19 +846,19 @@ msgstr ""
"እርስዎ የ ፋይል መቆለፊያውን መተው: እና በ ነበረው ሰነድ ላይ ደርበው መጻፍ ይችላሉ"
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "ለማስቀመጥ ~እንደገና መሞከሪያ"
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "~ማስቀመጫ እንደ..."
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -868,7 +868,7 @@ msgstr ""
"ይምረጡ መቀየሪያ የሚለውን በ ነበረው ፋይል ላይ ደርቦ ለ መጻፍ ወይንም አዲስ ስም ለመስጠት"
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -878,55 +878,55 @@ msgstr ""
"እባክዎን አዲስ ስም ያስገቡ"
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "እባክዎን የተለየ የ ፋይል ስም ያስገቡ!"
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "የመግቢያ ቃሉ የተሳሳተ ነው ፡ ፋይሉን መክፈት አይቻልም"
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "የመግቢያ ቃሉ የተሳሳተ ነው ፡ ፋይሉን ማሻሻል አይቻልም"
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "ዋናው የመግቢያ ቃል ትክክል አይደለም"
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "የመግቢያ ቃሉ ትክክል አይደለም"
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "የመግቢያ ቃሉ ማረጋገጫ ያስገቡት አይመሳሰልም"
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "የ ተቆለፈው ፋይል የ ተበላሸ ነው"
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr "የ ፋይል መቆለፊያ የ ተበላሸ ነው እና ምናልባት ባዲ ይሆናል: ሰነዱን መክፈት ለ ንባብ-ብቻ ዘዴ እና መዝጋት ምናልባት የ ተበላሸውን የ ፋይል መቆለፊያ ሊያስወግደው ይችላል"
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
diff --git a/source/am/vcl/messages.po b/source/am/vcl/messages.po
index 58310b78f19..1cc3b135d07 100644
--- a/source/am/vcl/messages.po
+++ b/source/am/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-01-31 16:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/am/>\n"
@@ -665,150 +665,138 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "እንደ ነበር መመለሻ"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr "ወደ ታች የሚዘረገፍ"
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr "ወደ ላይ የሚሸበለል"
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "እርዳታ"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr "መመልከቻ ፎቶ ማንሻ እና መግለጫ መጨመሪያ"
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "ማሳያ"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "መደበቂያ"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "ሰነድ መዝጊያ"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "~እሺ"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "~መሰረዣ"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "እሺ"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "መሰረዣ"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "~አዎ"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "~አይ"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "~እንደገና መሞከሪያ"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~እርዳታ"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "~መዝጊያ"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "~ተጨማሪ"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "~መተው"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "~ማቋረጥ"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "~ትንሽ"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "~ማስቀመጫ"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "~መክፈቻ"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr "የ ~መመልከቻ ፎቶ"
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -818,357 +806,357 @@ msgstr ""
"እባክዎን ማሰናጃውን በጥገና ምርጫ ያስጀምሩ"
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "ስለ %PRODUCTNAME"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "ምርጫዎች..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "ማናቸውም አይነት"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "~ራሱ በራሱ የፋይል ተቀጥያዎችን መሰየሚያ"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "በ መግቢያ~ቃል ማስቀመጫ"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr "በ ~GPG ቁልፍ መመስጠሪያ"
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "የማጣሪያ ማሰናጃዎች ~ማረሚያ"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "~ለንባብ- ብቻ"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "እንደ ~አገናኝ ማስገቢያ"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "ቅድመ~እይታ"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "~ማጫወቻ"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "~እትም :"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "ዘ~ዴዎች :"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "የ ክፈፍ ዘዴ: "
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr "ማ~ስቆሚያ: "
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "~ምርጫዎች"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "መንገድ ይምረጡ"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "እባክዎን ፎልደር ይምረጡ"
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "ፋይል በዚህ ስም \"$filename$\" ቀደም ሲል ነበር፡ ሊቀይሩት ይፈልጋሉ?"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr "ፋይሉ ቀደም ሲል ነበር በ \"$dirname$\". ውስጥ፡ መቀየር በ ላዩ ላይ ደርቦ ይጽፍበታል"
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "በሁሉም አቀራረብ"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "መክፈቻ"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "ማስቀመጫ"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "የፋይል ~አይነት"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "ምንም አይነት ፊደል በስርአቱ ውስጥ የለም"
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "ገጾች የሉም"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr "ቅድመ እይታ ተሰናክሏል"
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "ወደ ፋይል ማተሚያ..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "ነባር ማተሚያ"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "እባክዎን የ ፋክስ ቁጥር ያስገቡ"
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "ማስተካከያ"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "ያስገቡት ጽሁፍ ለዚህ ጽሁፍ የተፈቀደውን ከፍተኛ እርዝመት አልፏል: ስለዚህ ጽሁፉ ተቆርጧል"
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "CPU threads: "
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "ስርአት: "
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "UI render: "
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr "GL"
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "ነባር"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "መረጃ"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "ማስጠንቀቂያ"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "ስህተት"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "ማረጋገጫ"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "መስመር ማጥፊያ"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "በርካታ መስመሮች ማጥፊያ"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "በርካት መስመሮች ማስገቢያ"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "ማስገቢያ '$1'"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "ማጥፊያ '$1'"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ረድፍ: %1, አምድ: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ባዶ ሜዳ"
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "ቀን"
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "ሳምንት"
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ዛሬ"
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/am/writerperfect/messages.po b/source/am/writerperfect/messages.po
index ec2fc378de4..599443767f0 100644
--- a/source/am/writerperfect/messages.po
+++ b/source/am/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2021-01-25 14:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/am/>\n"
@@ -13,53 +13,53 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526238614.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "ፋይል ማምጫ"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr "Import MS Multiplan for DOS file"
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr "የ MS Works file ማምጫ"
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr "የ MS Write file ማምጫ"
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr "የ MS Word for DOS file ማምጫ"
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "የ Lotus files ማምጫ"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr "የ Symphony file ማምጫ"
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr "የ Quattro Pro file ማምጫ"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index ce947389515..8c7cf855d1f 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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+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"
@@ -1902,248 +1902,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr ""
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr ""
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr ""
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr ""
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr ""
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr ""
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr ""
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr ""
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr ""
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr ""
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr ""
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr ""
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Totz os fichers"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr ""
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "L'URL u texto ye masiau extenso pa o libel actual de corrección d'errors. Alcuerce o texto u reduzca o libel de corrección."
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -2320,14 +2248,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2509,1071 +2438,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3584,22 +3507,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3608,16 +3531,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -13120,10 +13043,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr ""
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -14921,22 +14844,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Opcions"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -21222,13 +21169,13 @@ msgid "_Next Tip"
msgstr ""
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21240,79 +21187,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/an/dbaccess/messages.po b/source/an/dbaccess/messages.po
index 423dbc6dc97..8704da0e397 100644
--- a/source/an/dbaccess/messages.po
+++ b/source/an/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+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/dbaccessmessages/an/>\n"
@@ -3297,13 +3297,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr ""
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr ""
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/an/framework/messages.po b/source/an/framework/messages.po
index 55ef6829851..3dba938751e 100644
--- a/source/an/framework/messages.po
+++ b/source/an/framework/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2017-12-14 11:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -211,6 +211,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr ""
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr ""
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
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 4b561c5c136..8259a2f1025 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -1388,14 +1388,24 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "Ir a la celda siguient no protechida"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
+msgid "Select Visible Rows Only"
+msgstr ""
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
msgstr ""
#. LEvrC
@@ -3374,16 +3384,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "Formato d'a pachina..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "Página..."
+msgid "~Page Style..."
+msgstr ""
#. C83UC
#: CalcCommands.xcu
@@ -10051,6 +10060,26 @@ msgctxt ""
msgid "Layout"
msgstr "Diseño"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
#, fuzzy
@@ -22060,34 +22089,24 @@ msgctxt ""
msgid "Background Color"
msgstr "Color d'o fundo"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -25012,14 +25031,14 @@ msgctxt ""
msgid "~Export As"
msgstr ""
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
+msgid "Export as PDF"
msgstr ""
#. YsFV2
@@ -25044,14 +25063,14 @@ msgctxt ""
msgid "Export as PDF"
msgstr "Exportar en formato PDF..."
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
+msgid "Export Directly as PDF"
msgstr ""
#. 8eSWp
@@ -27268,14 +27287,14 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
+msgid "Development Tools"
msgstr ""
#. jLF5j
@@ -27889,14 +27908,14 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr ""
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
+msgid "Word ~Joiner"
msgstr ""
#. UvwGS
@@ -35555,6 +35574,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Reiniciar numeración"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
#, fuzzy
@@ -35802,6 +35831,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "Seleccionar párrafo"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
#, fuzzy
@@ -36104,17 +36143,6 @@ msgctxt ""
msgid "Fields"
msgstr "Campos"
-#. LVtM7
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "Fondo de caracter"
-
#. FEAFx
#: WriterCommands.xcu
#, fuzzy
@@ -36591,16 +36619,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "Modo Selección"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "Continar numeración anterior"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr ""
#. oCEjg
#: WriterCommands.xcu
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 9afeaf8839b..522cca3212d 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-01-16 04:41+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
@@ -22498,10 +22498,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "Formulas"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -26628,231 +26628,231 @@ msgid "No solution was found."
msgstr ""
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Fichero"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aduya"
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fichero"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Obchecto"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 909b4d21d1d..409b33c09d9 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -901,161 +901,167 @@ msgid ""
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr ""
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr ""
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr ""
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr ""
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr ""
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr ""
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr ""
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Obchectos"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr ""
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr ""
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr ""
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr ""
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr ""
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr ""
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr ""
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr ""
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr ""
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
#, fuzzy
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "Reproducir"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
#, fuzzy
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "Aturar"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
#, fuzzy
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "Mida ~orichinal"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1063,129 +1069,129 @@ msgid ""
msgstr ""
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr ""
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr ""
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr ""
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr ""
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr ""
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr ""
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr ""
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr ""
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr ""
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr ""
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr ""
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr ""
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr ""
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
#, fuzzy
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "Acción"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr ""
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr ""
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "Documento"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr ""
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "Macro"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr ""
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1194,260 +1200,260 @@ msgstr[1] ""
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
#, fuzzy
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "Ficar una fuella"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr ""
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "Iniciar"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "Enta la cucha"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "Enta la dreita"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "Cobalto"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "Cobaixo"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr ""
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr ""
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr ""
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr ""
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "~Horizontal"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr ""
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "Totz"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr ""
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr ""
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr ""
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr ""
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr ""
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr ""
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr ""
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr ""
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr ""
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr ""
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr ""
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr ""
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "Estandar"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr ""
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr ""
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
#, fuzzy
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "Nombre d'o fichero"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
#, fuzzy
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "Rota/Nombre d'o fichero"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr ""
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr ""
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr ""
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr ""
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr ""
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr ""
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr ""
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr ""
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr ""
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr ""
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1455,159 +1461,159 @@ msgid ""
msgstr ""
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "Texto"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr ""
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr ""
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr ""
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "Notas"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr ""
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr ""
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "Autor"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr ""
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr ""
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr ""
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr ""
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr ""
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
#, fuzzy
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "Nombres"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
#, fuzzy
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "Apellidos"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "Texto"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Imachen"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr ""
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr ""
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr ""
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr ""
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr ""
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr ""
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr ""
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr ""
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1615,833 +1621,833 @@ msgid ""
msgstr ""
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr ""
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr ""
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr ""
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr ""
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr ""
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr ""
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr ""
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr ""
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr ""
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "Nombre"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr ""
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr ""
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr ""
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr ""
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr ""
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr ""
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr ""
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr ""
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr ""
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr ""
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr ""
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr ""
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr ""
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr ""
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr ""
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr ""
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr ""
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr ""
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "Pachinas"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr ""
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr ""
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
#, fuzzy
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "Disenyo"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr ""
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr ""
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "Estilos de celda"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr ""
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr ""
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "Comentarios"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr ""
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr ""
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
#, fuzzy
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "Ficar una fuella"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr ""
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr ""
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr ""
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr ""
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr ""
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr ""
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr ""
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "Fundo"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr ""
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "Disenyo"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr ""
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr ""
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr ""
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "Pachina"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr ""
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr ""
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr ""
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr ""
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr ""
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr ""
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr ""
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr ""
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr ""
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr ""
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr ""
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr ""
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr ""
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr ""
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr ""
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr ""
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr ""
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr ""
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr ""
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr ""
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr ""
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr ""
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr ""
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr ""
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr ""
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr ""
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Por defecto"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
#, fuzzy
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Titol"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr ""
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr ""
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr ""
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr ""
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr ""
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr ""
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Texto"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr ""
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr ""
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr ""
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr ""
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr ""
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr ""
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr ""
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr ""
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr ""
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr ""
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr ""
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr ""
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr ""
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr ""
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr ""
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr ""
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr ""
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr ""
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr ""
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr ""
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr ""
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr ""
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr ""
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
#, fuzzy
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Titol"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr ""
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr ""
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr ""
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Fundo"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Notas"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr ""
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Alzar o documento"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr ""
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Capitero"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr ""
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr ""
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr ""
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
@@ -2449,640 +2455,640 @@ msgstr ""
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr ""
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr ""
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr ""
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr ""
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr ""
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Presentación"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Presentación"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Presentación"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr ""
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr ""
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Presentación"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr ""
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Titol"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr ""
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr ""
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Pachina"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Notas"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr ""
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Piet de pachina"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Capitero"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Calendata"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Numero"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr ""
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "~Garra"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr ""
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr ""
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr ""
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Escala"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr ""
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr ""
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr ""
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr ""
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Tipo de letra"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr ""
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr ""
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr ""
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr ""
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr ""
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr ""
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "~Color"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr ""
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr ""
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr ""
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Sencilla"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr ""
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr ""
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "~Garra"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr ""
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr ""
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr ""
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr ""
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr ""
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr ""
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr ""
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr ""
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
#, fuzzy
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Edita o comentario..."
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr ""
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr ""
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Tabla"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Documento"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr ""
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr ""
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Conteniu"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr ""
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr ""
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr ""
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr ""
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "~Color"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr ""
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr ""
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr ""
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr ""
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr ""
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr ""
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr ""
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr ""
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr ""
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -9593,139 +9599,139 @@ msgid "Sound:"
msgstr ""
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr ""
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr ""
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr ""
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr ""
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr ""
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr ""
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr ""
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr ""
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr ""
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr ""
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr ""
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
+msgid "After:"
msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr ""
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr ""
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr ""
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr ""
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr ""
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Reproducir"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr ""
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr ""
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 8d43f24a6df..71383fcb1e5 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:59+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/sfx2messages/an/>\n"
@@ -837,11 +837,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "~Garra"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "Imachen"
+msgstr ""
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1592,11 +1592,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1617,16 +1617,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1647,10 +1647,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1665,10 +1665,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1713,10 +1713,10 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
+msgid "Sunset"
msgstr ""
#. 73Y2e
@@ -2220,6 +2220,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "~Etiquetas"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr ""
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr ""
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr ""
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr ""
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr ""
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr ""
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr ""
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr ""
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr ""
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr ""
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr ""
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr ""
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr ""
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2571,9 +2871,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2633,91 +2933,157 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr ""
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr ""
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr ""
+
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr ""
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
msgctxt "documentfontspage|embedFonts"
@@ -3876,9 +4242,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr ""
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/an/starmath/messages.po b/source/an/starmath/messages.po
index 5613bb1abd7..c072a0982c8 100644
--- a/source/an/starmath/messages.po
+++ b/source/an/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -491,2226 +491,2226 @@ msgstr ""
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr ""
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr ""
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr ""
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr ""
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr ""
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr ""
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr ""
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr ""
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr ""
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr ""
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr ""
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr ""
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr ""
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr ""
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr ""
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr ""
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr ""
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr ""
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr ""
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr ""
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr ""
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr ""
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr ""
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr ""
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr ""
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr ""
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr ""
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr ""
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr ""
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr ""
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr ""
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr ""
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr ""
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr ""
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr ""
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr ""
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr ""
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr ""
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr ""
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr ""
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr ""
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr ""
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr ""
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr ""
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr ""
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr ""
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr ""
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr ""
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr ""
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr ""
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr ""
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr ""
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr ""
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr ""
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr ""
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr ""
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr ""
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr ""
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr ""
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr ""
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr ""
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr ""
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Producto"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr ""
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr ""
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr ""
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr ""
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr ""
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr ""
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr ""
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr ""
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr ""
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr ""
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr ""
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr ""
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr ""
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr ""
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr ""
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr ""
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr ""
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr ""
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr ""
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr ""
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr ""
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr ""
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr ""
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr ""
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr ""
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr ""
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr ""
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr ""
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr ""
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr ""
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr ""
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr ""
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr ""
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr ""
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr ""
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr ""
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr ""
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr ""
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr ""
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr ""
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr ""
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr ""
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr ""
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr ""
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr ""
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr ""
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr ""
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr ""
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr ""
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr ""
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr ""
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr ""
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr ""
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr ""
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr ""
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr ""
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr ""
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr ""
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr ""
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr ""
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr ""
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr ""
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr ""
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr ""
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr ""
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr ""
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr ""
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr ""
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr ""
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr ""
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr ""
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr ""
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr ""
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr ""
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr ""
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr ""
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr ""
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr ""
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr ""
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr ""
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr ""
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr ""
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr ""
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr ""
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr ""
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr ""
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr ""
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr ""
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr ""
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr ""
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr ""
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr ""
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr ""
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr ""
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr ""
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funcions"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operador"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
#, fuzzy
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributos"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr ""
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr ""
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
#, fuzzy
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Atr~os"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Eixemplo"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estandar"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Azul"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Verde"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Griso"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Hora"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Amagar"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Tipo de letra"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
#, fuzzy
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "Enta la cucha"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
#, fuzzy
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "Brilo"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comentarios"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
#, fuzzy
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "~Formula"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteniu"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Titol"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Cantos"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr ""
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mida ~orichinal"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 4b4aa58710a..c6d6bc0962e 100644
--- a/source/an/svx/messages.po
+++ b/source/an/svx/messages.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-06-21 08:37+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-17 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"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -817,2546 +817,2552 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr ""
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr ""
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr ""
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr ""
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr ""
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr ""
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr ""
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr ""
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr ""
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr ""
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr ""
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr ""
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr ""
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr ""
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr ""
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
#, fuzzy
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Agrupar por"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr ""
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr ""
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr ""
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr ""
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr ""
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr ""
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr ""
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr ""
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr ""
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr ""
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr ""
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr ""
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr ""
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr ""
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr ""
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr ""
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr ""
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr ""
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr ""
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr ""
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr ""
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr ""
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr ""
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr ""
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr ""
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr ""
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr ""
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr ""
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr ""
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr ""
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr ""
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr ""
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr ""
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr ""
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr ""
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr ""
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr ""
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr ""
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr ""
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr ""
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr ""
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr ""
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr ""
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Agrupar por"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr ""
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr ""
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr ""
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr ""
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr ""
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr ""
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr ""
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr ""
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr ""
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr ""
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr ""
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr ""
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr ""
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr ""
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr ""
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr ""
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr ""
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr ""
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
#, fuzzy
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Ficar R²"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr ""
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr ""
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr ""
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr ""
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr ""
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr ""
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr ""
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr ""
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr ""
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr ""
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr ""
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr ""
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr ""
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr ""
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr ""
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "o"
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr ""
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr ""
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr ""
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr ""
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr ""
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr ""
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr ""
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
#, fuzzy
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "~Horizontal"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
#, fuzzy
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "~Vertical"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Automatica"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr ""
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr ""
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr ""
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr ""
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Cobalto"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
#, fuzzy
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "~Centrau"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Cobaixo"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr ""
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr ""
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Enta la cucha"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
#, fuzzy
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "~Centrau"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Enta la dreita"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr ""
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr ""
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr ""
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr ""
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr ""
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr ""
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr ""
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
#, fuzzy
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "Enta la cucha"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr ""
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
#, fuzzy
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "Brilo"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
#, fuzzy
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "Enta abaixo"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr ""
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr ""
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr ""
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr ""
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Estandar"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr ""
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
#, fuzzy
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "Automatica"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr ""
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr ""
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr ""
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
#, fuzzy
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "Automatica"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr ""
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr ""
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr ""
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
#, fuzzy
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "~Centrau"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr ""
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr ""
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr ""
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr ""
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr ""
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr ""
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr ""
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr ""
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr ""
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr ""
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr ""
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr ""
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr ""
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr ""
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr ""
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr ""
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr ""
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr ""
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr ""
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr ""
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr ""
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr ""
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr ""
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Transparencia"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr ""
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr ""
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr ""
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr ""
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr ""
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr ""
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr ""
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr ""
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr ""
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr ""
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr ""
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr ""
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr ""
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr ""
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr ""
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr ""
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr ""
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr ""
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr ""
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr ""
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr ""
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr ""
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr ""
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr ""
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr ""
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr ""
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr ""
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr ""
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr ""
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr ""
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr ""
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr ""
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr ""
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr ""
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr ""
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr ""
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr ""
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr ""
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr ""
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr ""
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr ""
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr ""
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr ""
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr ""
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr ""
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr ""
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr ""
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr ""
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr ""
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr ""
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr ""
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr ""
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr ""
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr ""
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr ""
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr ""
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr ""
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr ""
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr ""
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr ""
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr ""
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr ""
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr ""
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr ""
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr ""
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr ""
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr ""
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr ""
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr ""
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr ""
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr ""
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr ""
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr ""
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr ""
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr ""
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr ""
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr ""
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr ""
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr ""
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr ""
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr ""
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr ""
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr ""
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr ""
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr ""
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr ""
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr ""
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr ""
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr ""
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr ""
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr ""
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr ""
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr ""
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr ""
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr ""
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr ""
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr ""
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr ""
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr ""
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
#, fuzzy
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Numero de ~decimals"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr ""
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr ""
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr ""
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr ""
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr ""
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr ""
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr ""
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr ""
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr ""
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr ""
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr ""
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr ""
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr ""
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr ""
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr ""
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr ""
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr ""
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr ""
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr ""
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr ""
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr ""
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr ""
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr ""
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr ""
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr ""
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr ""
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr ""
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr ""
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr ""
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr ""
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr ""
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr ""
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr ""
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr ""
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr ""
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr ""
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr ""
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr ""
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr ""
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr ""
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr ""
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr ""
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr ""
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr ""
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr ""
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Inter~liniau"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr ""
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr ""
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr ""
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
#, fuzzy
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "~Chuego de caracters"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr ""
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr ""
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr ""
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr ""
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr ""
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr ""
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr ""
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr ""
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr ""
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr ""
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr ""
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr ""
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr ""
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr ""
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr ""
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr ""
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Campos"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Royo"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Verde"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Azul"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr ""
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Transparencia"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr ""
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr ""
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr ""
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr ""
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr ""
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
#, fuzzy
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "~Ficar columnas"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
#, fuzzy
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "F~icar ringleras"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
#, fuzzy
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Eliminar columna~s"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
#, fuzzy
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Eliminar ringlera~s"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr ""
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr ""
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr ""
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr ""
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr ""
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr ""
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr ""
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr ""
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Tabla"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
#, fuzzy
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Tabla"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr ""
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr ""
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr ""
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr ""
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr ""
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr ""
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
#, fuzzy
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "~Garra"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
#, fuzzy
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "~Color"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr ""
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr ""
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr ""
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr ""
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr ""
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- garra -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Transparencia"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
#, fuzzy
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "~Centrau"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr ""
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Por defecto"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr ""
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr ""
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr ""
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Griso"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr ""
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr ""
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr ""
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Narancha"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Royo"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr ""
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr ""
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Azul"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr ""
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Verde"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
@@ -3364,3231 +3370,3231 @@ msgstr "Hora"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Griso claro"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr ""
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Azul brillant"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr ""
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Granate"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr ""
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr ""
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "~Diagramas"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr ""
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr ""
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr ""
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr ""
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr ""
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Azul"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr ""
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr ""
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr ""
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr ""
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr ""
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr ""
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Griso"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Verde"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr ""
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Royo"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr ""
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr ""
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Finanzas"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr ""
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr ""
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr ""
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr ""
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr ""
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr ""
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr ""
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr ""
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr ""
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr ""
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr ""
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr ""
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr ""
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr ""
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr ""
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr ""
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr ""
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr ""
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr ""
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr ""
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr ""
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr ""
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr ""
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr ""
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr ""
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr ""
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr ""
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr ""
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr ""
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr ""
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr ""
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr ""
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr ""
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr ""
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr ""
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr ""
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr ""
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr ""
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr ""
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr ""
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr ""
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr ""
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr ""
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr ""
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr ""
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
#, fuzzy
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "~Horizontal"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr ""
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr ""
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr ""
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr ""
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr ""
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr ""
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr ""
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr ""
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr ""
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr ""
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr ""
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr ""
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr ""
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
#, fuzzy
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "~Vertical"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr ""
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr ""
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr ""
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr ""
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr ""
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr ""
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr ""
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr ""
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr ""
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr ""
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr ""
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr ""
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr ""
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr ""
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr ""
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
#, fuzzy
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Enta la dreita"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr ""
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr ""
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr ""
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr ""
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr ""
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr ""
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr ""
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr ""
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr ""
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr ""
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr ""
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr ""
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
#, fuzzy
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "~Vertical"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
#, fuzzy
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "~Horizontal"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr ""
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr ""
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr ""
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr ""
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr ""
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr ""
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr ""
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr ""
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr ""
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr ""
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr ""
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr ""
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Transparencia"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr ""
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr ""
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr ""
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr ""
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr ""
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr ""
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr ""
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr ""
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr ""
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr ""
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr ""
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr ""
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr ""
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr ""
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr ""
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr ""
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr ""
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr ""
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr ""
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr ""
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr ""
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr ""
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
#, fuzzy
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Fichers graficos"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr ""
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr ""
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr ""
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr ""
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr ""
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr ""
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr ""
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr ""
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Imachens"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Fundo"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr ""
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr ""
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr ""
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Chent"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr ""
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Ordinadors"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr ""
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr ""
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr ""
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr ""
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr ""
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr ""
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Simbolos"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr ""
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr ""
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr ""
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr ""
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Hora"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Calandario"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Navegador"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr ""
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Finanzas"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Ordinadors"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr ""
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr ""
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr ""
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr ""
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr ""
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr ""
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
#, fuzzy
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "Totz"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
#, fuzzy
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "Selección"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr ""
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr ""
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr ""
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr ""
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr ""
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr ""
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr ""
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr ""
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr ""
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr ""
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr ""
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr ""
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr ""
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr ""
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr ""
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr ""
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr ""
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr ""
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr ""
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr ""
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr ""
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Por defecto"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Cantos"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr ""
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr ""
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Pachinas"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr ""
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr ""
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr ""
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr ""
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr ""
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr ""
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr ""
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr ""
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr ""
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr ""
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr ""
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr ""
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr ""
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr ""
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr ""
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr ""
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr ""
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr ""
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr ""
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr ""
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr ""
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr ""
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr ""
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr ""
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr ""
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr ""
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr ""
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr ""
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
#, fuzzy
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "E~stilo"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr ""
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr ""
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr ""
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr ""
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr ""
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr ""
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr ""
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
#, fuzzy
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "~Centrau"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr ""
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr ""
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr ""
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr ""
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr ""
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr ""
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr ""
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr ""
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr ""
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr ""
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr ""
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr ""
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
#, fuzzy
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Propiedatz..."
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr ""
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr ""
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr ""
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr ""
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr ""
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr ""
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr ""
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr ""
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr ""
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr ""
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr ""
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr ""
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr ""
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6596,333 +6602,339 @@ msgid ""
msgstr ""
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr ""
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr ""
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr ""
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr ""
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
#, fuzzy
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Eliminar R²"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr ""
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr ""
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr ""
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr ""
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
msgstr ""
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr ""
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr ""
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr ""
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr ""
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
msgstr ""
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr ""
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr ""
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr ""
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr ""
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr ""
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Campo de calendata"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Campo horario"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
#, fuzzy
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Campo numerico"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr ""
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr ""
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr ""
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr ""
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr ""
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr ""
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr ""
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr ""
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr ""
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr ""
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr ""
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr ""
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr ""
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr ""
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr ""
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr ""
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr ""
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr ""
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr ""
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr ""
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr ""
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr ""
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr ""
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr ""
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr ""
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr ""
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr ""
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr ""
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr ""
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr ""
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr ""
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6930,7 +6942,7 @@ msgid ""
msgstr ""
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6938,7 +6950,7 @@ msgid ""
msgstr ""
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6946,13 +6958,13 @@ msgid ""
msgstr ""
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr ""
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6961,7 +6973,7 @@ msgid ""
msgstr ""
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6970,1008 +6982,1007 @@ msgid ""
msgstr ""
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr ""
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr ""
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr ""
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr ""
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr ""
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr ""
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
#, fuzzy
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "~Garra"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr ""
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Documento"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr ""
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr ""
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
#, fuzzy
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Acción"
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr ""
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr ""
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr ""
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr ""
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr ""
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr ""
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr ""
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr ""
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr ""
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr ""
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr ""
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr ""
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr ""
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr ""
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr ""
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr ""
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr ""
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr ""
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Enta la cucha"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Enta la dreita"
#. MhfuC
-#: include/svx/strings.hrc:1278
-#, fuzzy
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
-msgstr "~Centrau"
+msgstr "Centrau"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Decimal"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr ""
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr ""
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr ""
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr ""
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr ""
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr ""
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr ""
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
-msgstr ""
+msgstr "No s'han puesto cargar totz os obchectos SmartArt. Este problema s'evita si s'alza en o formato Microsoft Office 2010 u posterior."
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr ""
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr ""
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr ""
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "50%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr ""
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr ""
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr ""
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr ""
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr ""
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
#, fuzzy
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Estilos de celda"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr ""
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr ""
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr ""
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr ""
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr ""
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr ""
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr ""
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr ""
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr ""
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr ""
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr ""
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr ""
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr ""
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr ""
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr ""
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr ""
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr ""
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr ""
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr ""
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr ""
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr ""
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr ""
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr ""
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr ""
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr ""
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr ""
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr ""
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr ""
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr ""
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr ""
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr ""
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr ""
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Royo"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Verde"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Azul"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr ""
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Transparencia"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr ""
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr ""
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr ""
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr ""
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr ""
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr ""
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr ""
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr ""
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr ""
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr ""
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr ""
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr ""
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr ""
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr ""
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr ""
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
#, fuzzy
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "~Garra"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr ""
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr ""
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Enta la cucha"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Enta la dreita"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
#, fuzzy
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Totz"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr ""
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
#, fuzzy
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Autor"
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr ""
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr ""
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr ""
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr ""
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7979,1929 +7990,2032 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr ""
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr ""
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr ""
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr ""
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr ""
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr ""
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr ""
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr ""
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr ""
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr ""
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr ""
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr ""
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr ""
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr ""
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr ""
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr ""
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr ""
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr ""
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr ""
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr ""
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr ""
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr ""
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr ""
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr ""
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr ""
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr ""
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr ""
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr ""
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr ""
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr ""
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr ""
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr ""
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr ""
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr ""
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr ""
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr ""
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr ""
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr ""
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr ""
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr ""
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr ""
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr ""
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr ""
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr ""
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr ""
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr ""
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr ""
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr ""
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr ""
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr ""
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr ""
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr ""
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr ""
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr ""
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr ""
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr ""
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr ""
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr ""
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr ""
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr ""
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr ""
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr ""
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr ""
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr ""
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr ""
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr ""
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr ""
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr ""
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr ""
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr ""
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr ""
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr ""
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr ""
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr ""
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr ""
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr ""
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr ""
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr ""
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr ""
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr ""
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr ""
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr ""
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr ""
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr ""
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr ""
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr ""
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr ""
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr ""
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr ""
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr ""
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr ""
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr ""
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr ""
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr ""
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr ""
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr ""
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr ""
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr ""
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr ""
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr ""
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr ""
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr ""
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr ""
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr ""
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr ""
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr ""
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr ""
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr ""
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr ""
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr ""
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr ""
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr ""
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr ""
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Negocios"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr ""
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr ""
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr ""
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr ""
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr ""
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr ""
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr ""
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr ""
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr ""
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr ""
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr ""
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr ""
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr ""
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr ""
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr ""
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr ""
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lista"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr ""
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr ""
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr ""
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr ""
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr ""
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr ""
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr ""
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr ""
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr ""
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr ""
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr ""
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr ""
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Nuevo"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr ""
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10749,7 +10863,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10757,11 +10871,29 @@ msgstr ""
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr ""
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr ""
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr ""
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr ""
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr ""
@@ -13672,180 +13804,46 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "~Ficar columnas"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr ""
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr ""
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr ""
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr ""
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "Campo de calendata"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "Campo horario"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-#, fuzzy
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "Campo numerico"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr ""
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr ""
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr ""
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr ""
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr ""
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr ""
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr ""
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr ""
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr ""
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "Campo de calendata"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "Campo horario"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-#, fuzzy
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "Campo numerico"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr ""
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr ""
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr ""
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr ""
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
#, fuzzy
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "Eliminar columna~s"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr ""
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr ""
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
msgstr ""
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
#, fuzzy
msgctxt "colsmenu|all"
msgid "_All"
msgstr "Totz"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
msgctxt "colsmenu|column"
msgid "Column..."
msgstr ""
@@ -14002,129 +14000,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr ""
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr ""
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr ""
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr ""
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr ""
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr ""
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr ""
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr ""
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr ""
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr ""
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr ""
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-#, fuzzy
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "Campo de calendata"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-#, fuzzy
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "Campo horario"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-#, fuzzy
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "Campo numerico"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr ""
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr ""
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr ""
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr ""
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr ""
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr ""
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr ""
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 6ce119a0c29..c3d6d8e0cf6 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: 2021-02-22 17:18+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2021-01-04 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/an/>\n"
@@ -1578,10 +1578,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2283,1531 +2283,1586 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr ""
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr ""
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr ""
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr ""
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr ""
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr ""
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr ""
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr ""
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr ""
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr ""
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr ""
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr ""
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr ""
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr ""
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr ""
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr ""
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr ""
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr ""
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr ""
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr ""
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "Eixemplo"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr ""
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr ""
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr ""
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr ""
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr ""
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "Graficos"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr ""
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
#, fuzzy
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "~Formula"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr ""
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr ""
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "~Etiquetas"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr ""
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr ""
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr ""
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr ""
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr ""
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr ""
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr ""
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr ""
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr ""
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "Indiz"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr ""
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr ""
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr ""
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr ""
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr ""
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr ""
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr ""
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr ""
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr ""
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr ""
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr ""
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr ""
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr ""
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr ""
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr ""
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr ""
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr ""
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr ""
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr ""
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr ""
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr ""
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr ""
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr ""
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr ""
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr ""
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr ""
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr ""
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr ""
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr ""
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr ""
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr ""
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr ""
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr ""
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr ""
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr ""
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr ""
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr ""
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr ""
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr ""
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr ""
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr ""
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr ""
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr ""
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr ""
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr ""
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr ""
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr ""
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr ""
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr ""
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr ""
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr ""
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr ""
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "Capitero"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
#, fuzzy
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "Capitero (cucha)"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
#, fuzzy
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "Capitero (dreita)"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "Piet de pachina"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
#, fuzzy
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "Piet de pachina (cucha)"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
#, fuzzy
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "Piet de pachina (dreita)"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr ""
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr ""
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr ""
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr ""
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr ""
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
#, fuzzy
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "Opcions"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr ""
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "Tabla"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "Texto"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
#, fuzzy
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "~Debuxo"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr ""
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr ""
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr ""
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr ""
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr ""
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr ""
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr ""
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Conteniu"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Conteniu"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Conteniu"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Conteniu"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Conteniu"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Conteniu"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Conteniu"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Conteniu"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Conteniu"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Conteniu"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr ""
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr ""
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr ""
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr ""
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr ""
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr ""
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr ""
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr ""
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr ""
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr ""
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr ""
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr ""
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr ""
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr ""
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr ""
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr ""
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr ""
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr ""
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr ""
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr ""
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Titol"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr ""
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr ""
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr ""
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr ""
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr ""
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr ""
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr ""
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
#, fuzzy
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Nombres"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr ""
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr ""
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "Indiz"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr ""
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr ""
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr ""
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr ""
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr ""
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr ""
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr ""
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr ""
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr ""
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr ""
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr ""
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr ""
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr ""
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
#, fuzzy
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "Columna"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr ""
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr ""
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr ""
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr ""
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr ""
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Estilos de paragrafo"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr ""
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
#, fuzzy
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Estilos de pachina"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
#, fuzzy
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Estilo d'a fuella"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr ""
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
#, fuzzy
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Estilos de pachina"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr ""
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "~Etiquetas"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr ""
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr ""
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr ""
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr ""
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr ""
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr ""
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr ""
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr ""
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr ""
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr ""
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr ""
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
#, fuzzy
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Inicio"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
#, fuzzy
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Fin"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr ""
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr ""
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr ""
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr ""
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
#, fuzzy
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Estatistica"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr ""
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr ""
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr ""
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr ""
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr ""
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr ""
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr ""
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr ""
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr ""
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr ""
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr ""
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr ""
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr ""
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Tabla"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Imachen"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Obchecto"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr ""
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr ""
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
#, fuzzy
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Selección"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr ""
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr ""
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr ""
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr ""
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr ""
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
#, fuzzy
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "E~stilo"
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr ""
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr ""
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr ""
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr ""
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr ""
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr ""
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr ""
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr ""
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr ""
@@ -3815,14 +3870,14 @@ msgstr ""
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr ""
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3831,7 +3886,7 @@ msgstr[1] ""
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3841,7 +3896,7 @@ msgstr[1] ""
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr ""
@@ -3849,7 +3904,7 @@ msgstr ""
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3859,7 +3914,7 @@ msgstr[1] ""
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3867,91 +3922,91 @@ msgstr[0] ""
msgstr[1] ""
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr ""
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Adhibir una formatación automatica"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Nombre"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Eliminar a formatación automatica"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr ""
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Cambiar o nombre d'a formatación automatica"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Zarrar"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Chin."
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb."
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mar."
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "Norte"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "Centro"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Sud"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Suma"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3960,422 +4015,422 @@ msgid ""
msgstr ""
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr ""
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
#, fuzzy
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Ringlera"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "Columna"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr ""
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr ""
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr ""
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Amplaria d'a col~umna..."
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr ""
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr ""
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr ""
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr ""
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr ""
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr ""
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr ""
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr ""
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr ""
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr ""
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr ""
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr ""
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr ""
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr ""
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr ""
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr ""
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr ""
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr ""
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr ""
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr ""
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
#, fuzzy
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Tabla"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Imachens"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "Obchectos OLE"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr ""
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Selección"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr ""
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr ""
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr ""
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Obchectos de dibuixo"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Comentarios"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr ""
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr ""
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr ""
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr ""
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr ""
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr ""
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr ""
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr ""
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr "Capítol"
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr ""
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Tabla"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Imachen"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr ""
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Selección"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr ""
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr ""
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "Indiz"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Comentario"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Obchectos de dibuixo"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr ""
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr ""
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4383,638 +4438,638 @@ msgid ""
msgstr ""
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr ""
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr ""
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
#, fuzzy
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Eliminar R²"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
#, fuzzy
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Ficar R²"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr ""
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr ""
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
#, fuzzy
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "modo"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr ""
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr ""
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
#, fuzzy
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Atributos de texto"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr ""
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr ""
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr ""
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr ""
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr ""
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr ""
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr ""
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr ""
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr ""
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr ""
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr ""
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr ""
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr ""
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr ""
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr ""
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr ""
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr ""
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr ""
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr ""
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr ""
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Formatación automatica"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr ""
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr ""
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr ""
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr ""
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr ""
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr ""
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr ""
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr ""
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr ""
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr ""
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr ""
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr ""
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr ""
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr ""
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr ""
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr ""
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr ""
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr ""
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr ""
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr ""
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr ""
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr ""
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr ""
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr ""
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr ""
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr ""
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr ""
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr ""
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr ""
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
#, fuzzy
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Obchectos de dibuixo"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr ""
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr ""
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr ""
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr ""
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr ""
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr ""
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr ""
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "~Ficar columnas"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
#, fuzzy
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "F~icar ringleras"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
#, fuzzy
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Eliminar columna~s"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
#, fuzzy
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Eliminar columna~s"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
#, fuzzy
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Eliminar ringlera~s"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr ""
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr ""
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr ""
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr ""
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr ""
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr ""
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr ""
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr ""
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr ""
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
#, fuzzy
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Compartir o documento"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr ""
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr ""
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr ""
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr ""
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
#, fuzzy
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Ficar como enlaz"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr ""
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr ""
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr ""
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr ""
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr ""
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr ""
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr ""
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5022,7 +5077,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5030,316 +5085,316 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
#, fuzzy
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "Brinco de ~pachina"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr ""
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
#, fuzzy
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Ficar R²"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
#, fuzzy
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Eliminar R²"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr ""
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr ""
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "F~icar ringleras"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Eliminar ringlera~s"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr ""
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr ""
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr ""
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr ""
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr ""
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr ""
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr ""
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr ""
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr ""
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr ""
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr ""
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr ""
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr ""
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr ""
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr ""
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr ""
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr ""
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr ""
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr ""
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr ""
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr ""
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr ""
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr ""
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr ""
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr ""
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Paragrafos"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr ""
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
#, fuzzy
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "Obchectos OLE"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
#, fuzzy
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "~Formula"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr ""
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
#, fuzzy
msgctxt "STR_NOTE"
msgid "comment"
msgstr "Comentario"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr ""
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr ""
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr ""
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr ""
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr ""
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "imachen"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "obchectos de dibuixo"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr ""
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5347,1693 +5402,1693 @@ msgstr[0] "capitulo"
msgstr[1] "capitulos"
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "paragrafo"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr ""
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr ""
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr ""
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr ""
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr ""
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr ""
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr ""
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr ""
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr ""
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr ""
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr ""
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr ""
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr ""
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr ""
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr ""
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr ""
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr ""
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr ""
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Autor"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Calendata"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
#, fuzzy
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Acción"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr ""
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr ""
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
#, fuzzy
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "Documentos de %PRODNAME"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr ""
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr ""
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr ""
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr ""
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr ""
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr ""
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
#, fuzzy
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Importar"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragrafo"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr ""
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Pachinas"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
+msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Tabla"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr ""
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr ""
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr ""
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr ""
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Conteniu"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr ""
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr ""
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr ""
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr ""
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
#, fuzzy
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "~Color"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr ""
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr ""
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr ""
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr ""
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr ""
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr ""
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr ""
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Comentarios"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr ""
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr ""
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr ""
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr ""
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Funcions"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Cancelar"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Aplicar"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr ""
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr ""
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
#, fuzzy
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Modo d'arrocegue"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
#, fuzzy
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Ficar como enlaz"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
#, fuzzy
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Ficar como enlaz"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
#, fuzzy
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Ficar como copia"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
#, fuzzy
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Visualizar"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
#, fuzzy
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Finestra activa"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
#, fuzzy
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "amagau"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "activo"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
#, fuzzy
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "inactivo"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
#, fuzzy
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "~Editar..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr ""
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr ""
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr ""
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr ""
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
#, fuzzy
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Indiz"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
#, fuzzy
msgctxt "STR_FILE"
msgid "File"
msgstr "~Fichero"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr ""
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Texto"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Eliminar"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
#, fuzzy
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Eli~minar"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Selección"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr ""
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
#, fuzzy
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Totz"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
#, fuzzy
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "amagau"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr ""
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr ""
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ""
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr ""
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ""
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ""
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ""
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Pachina"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr ""
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Autor"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
#, fuzzy
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Nota"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr ""
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
#, fuzzy
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Definiu por l'~usuario"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr ""
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr ""
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr ""
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr ""
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr ""
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Titol"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr ""
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr ""
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Comentarios"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr ""
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr ""
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr ""
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr ""
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr ""
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr ""
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr ""
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr ""
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr ""
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr ""
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr ""
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr ""
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr ""
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr ""
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr ""
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr ""
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr ""
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr ""
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr ""
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Definiu por l'~usuario"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Definiu por l'~usuario"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Definiu por l'~usuario"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Definiu por l'~usuario"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Definiu por l'~usuario"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr ""
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Tipo"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Adreza"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr ""
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr ""
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr ""
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Capítol"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr ""
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr ""
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr ""
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr ""
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
#, fuzzy
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "mes"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Numero"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
#, fuzzy
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "NombreOrganización"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr ""
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr ""
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr ""
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr ""
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Titol"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr ""
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr ""
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
#, fuzzy
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "anyo"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr ""
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Definiu por l'~usuario"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Definiu por l'~usuario"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Definiu por l'~usuario"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Definiu por l'~usuario"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Definiu por l'~usuario"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr ""
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr ""
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
#, fuzzy
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Comentario"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
#, fuzzy
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Amostrar comentarios"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr ""
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr ""
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr ""
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr ""
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr ""
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr ""
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr ""
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr ""
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr ""
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr ""
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr ""
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr ""
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr ""
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr ""
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr ""
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr ""
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr ""
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr ""
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr ""
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr ""
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr ""
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr ""
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr ""
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr ""
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr ""
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr ""
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Texto"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr ""
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr ""
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr ""
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr ""
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr ""
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr ""
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr ""
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Totz os fichers"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr ""
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr ""
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr ""
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr ""
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr ""
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr ""
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr ""
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr ""
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr ""
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr ""
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7042,91 +7097,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr ""
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr ""
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr ""
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabla"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Consulta"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr ""
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr ""
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7136,255 +7191,255 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Calendata"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Hora"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
#, fuzzy
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Nombre d'o fichero"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr ""
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Capítol"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
#, fuzzy
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Estatistica"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Autor"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr ""
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr ""
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr ""
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr ""
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr ""
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr ""
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr ""
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr ""
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr ""
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr ""
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr ""
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr ""
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr ""
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr ""
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr ""
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr ""
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr ""
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr ""
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr ""
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr ""
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr ""
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
#, fuzzy
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Rechistro siguient"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr ""
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr ""
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr ""
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr ""
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr ""
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr ""
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr ""
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr ""
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr ""
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
#, fuzzy
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
@@ -7394,89 +7449,89 @@ msgstr "Información"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Calendata"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr ""
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Hora"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr ""
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
#, fuzzy
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tabla"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
#, fuzzy
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Importar"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr ""
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Paragrafos"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Imachen"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Obchectos"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Pachinas"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr ""
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr ""
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7485,103 +7540,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Interpresa"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Nombres"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Apellidos"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr ""
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr ""
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "País"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr ""
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Ciudat"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Titol"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posición"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr ""
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr ""
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr ""
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Estau/Provincia"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr ""
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "o"
@@ -7591,39 +7646,39 @@ msgstr "o"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
#, fuzzy
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Nombre d'o fichero"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr ""
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
#, fuzzy
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Rota/Nombre d'o fichero"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr ""
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
#, fuzzy
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
@@ -7633,25 +7688,25 @@ msgstr "ID Categoría"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr ""
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr ""
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr ""
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr ""
@@ -7660,56 +7715,56 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr ""
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr ""
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr ""
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
#, fuzzy
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Estilo d'a fuella"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Texto"
@@ -7718,13 +7773,13 @@ msgstr "Texto"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Nombre"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr ""
@@ -7733,50 +7788,50 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr ""
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Texto"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Nombre"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Texto"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
#, fuzzy
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "~Formula"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Texto"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Base de datos"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr ""
@@ -7785,19 +7840,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Autor"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Hora"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Calendata"
@@ -7806,80 +7861,80 @@ msgstr "Calendata"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr ""
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Pachina"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Capítol"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr ""
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
#, fuzzy
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "Estilo d'a fuella"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr ""
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr ""
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr ""
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Numero"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr ""
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr ""
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7888,31 +7943,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Texto"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabla"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr ""
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Imachen"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Obchecto"
@@ -7921,1515 +7976,1515 @@ msgstr "Obchecto"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr ""
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr ""
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr ""
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr ""
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr ""
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr ""
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
#, fuzzy
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Importar"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr ""
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Valura"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
#, fuzzy
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "~Formula"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
#, fuzzy
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Personalizau 1"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr ""
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr ""
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr ""
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr ""
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr ""
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr ""
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr ""
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
#, fuzzy
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Columna"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
#, fuzzy
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Ringlera"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr ""
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
#, fuzzy
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "Ringlera"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr ""
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
#, fuzzy
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Brinco de ~pachina"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr ""
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr ""
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr ""
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr ""
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Piet de pachina"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr ""
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Capitero"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr ""
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr ""
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr ""
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr ""
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr ""
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr ""
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr ""
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr ""
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr ""
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr ""
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr ""
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
#, fuzzy
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Columna"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr ""
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
+msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
+msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr ""
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr ""
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Contraste"
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr ""
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
msgctxt "STR_INVERT"
msgid "Invert"
msgstr ""
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr ""
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Estandar"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr ""
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr ""
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabla"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "Pachina"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
#, fuzzy
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "~Debuxo"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr ""
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "Selección"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr ""
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Graficos"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr ""
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Selección"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr ""
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Comentario"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr ""
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr ""
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr ""
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr ""
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr ""
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr ""
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr ""
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr ""
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr ""
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr ""
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr ""
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr ""
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr ""
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr ""
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr ""
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr ""
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Eliminar"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr ""
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr ""
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr ""
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr ""
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr ""
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Comentario"
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr ""
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
#, fuzzy
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Selección"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr ""
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr ""
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr ""
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Pachina "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragrafo"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imachen"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr ""
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr ""
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr ""
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Pachina"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Capitero"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Piet de pachina"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr ""
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titol"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
#, fuzzy
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separadors"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr ""
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr ""
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
#, fuzzy
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "~Tabulacions"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Texto"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9438,263 +9493,263 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr ""
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr ""
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr ""
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr ""
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr ""
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr ""
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Cantos"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Fundo"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr ""
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr ""
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr ""
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr ""
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr ""
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Documento HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Documento de texto"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr ""
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ringlera"
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Columna"
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr ""
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9703,7 +9758,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9712,123 +9767,123 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Tarchetas de pr~esentación"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr ""
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Eliminar"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr ""
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr ""
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr ""
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Conteniu"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr ""
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr ""
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr ""
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
@@ -9960,6 +10015,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr ""
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -20501,291 +20562,291 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Capitero"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Piet de pachina"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr ""
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr ""
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Modo d'arrocegue"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Documento"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Finestra activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr ""
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr ""
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr ""
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr ""
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr ""
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
@@ -20828,181 +20889,181 @@ msgid "~File"
msgstr "~Fichero"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obchecto"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22056,20 +22117,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr ""
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Shows the current saved format names."
msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr ""
+
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
#, fuzzy
msgctxt "numberingnamedialog|label1"
msgid "Format"
@@ -22081,213 +22154,225 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr ""
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr ""
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr ""
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr ""
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr ""
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr ""
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr ""
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr ""
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr ""
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr ""
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr ""
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr ""
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr ""
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
#, fuzzy
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "Nota"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr ""
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr ""
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
+msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr ""
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr ""
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr ""
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr ""
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -28400,10 +28485,10 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr ""
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
+msgid "Specify the character style for the selected part on the Structure line."
msgstr ""
#. 5nWPi
@@ -28661,10 +28746,10 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr ""
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
msgstr ""
#. r33aA
diff --git a/source/an/uui/messages.po b/source/an/uui/messages.po
index 5c64d77852a..cc463aba156 100644
--- a/source/an/uui/messages.po
+++ b/source/an/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2018-03-28 15:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,31 +17,31 @@ msgstr ""
"X-POOTLE-MTIME: 1522251290.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr ""
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr ""
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr ""
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr ""
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -50,7 +50,7 @@ msgid ""
msgstr ""
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -63,289 +63,289 @@ msgid ""
msgstr ""
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr ""
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr ""
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr ""
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr ""
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr ""
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr ""
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr ""
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr ""
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr ""
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr ""
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr ""
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr ""
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr ""
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr ""
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr ""
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr ""
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr ""
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr ""
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr ""
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr ""
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr ""
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr ""
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr ""
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr ""
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr ""
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr ""
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr ""
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr ""
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr ""
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr ""
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr ""
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr ""
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr ""
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr ""
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr ""
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr ""
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr ""
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr ""
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr ""
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr ""
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr ""
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr ""
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr ""
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr ""
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr ""
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr ""
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr ""
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -359,13 +359,13 @@ msgid ""
msgstr ""
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr ""
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -373,7 +373,7 @@ msgid ""
msgstr ""
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -381,13 +381,13 @@ msgid ""
msgstr ""
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr ""
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -395,31 +395,31 @@ msgid ""
msgstr ""
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr ""
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr ""
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr ""
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr ""
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -427,7 +427,7 @@ msgid ""
msgstr ""
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -437,7 +437,7 @@ msgid ""
msgstr ""
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -446,7 +446,7 @@ msgid ""
msgstr ""
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -455,13 +455,13 @@ msgid ""
msgstr ""
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr ""
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -472,13 +472,13 @@ msgid ""
msgstr ""
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr ""
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -487,7 +487,7 @@ msgid ""
msgstr ""
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr ""
@@ -558,55 +558,55 @@ msgid "_Yes"
msgstr ""
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr ""
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr ""
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr ""
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr ""
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr ""
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr ""
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr ""
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr ""
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -615,20 +615,20 @@ msgid ""
msgstr ""
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
#, fuzzy
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Ubrir"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -637,61 +637,61 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr ""
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr ""
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr ""
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr ""
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr ""
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr ""
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -702,7 +702,7 @@ msgid ""
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -710,31 +710,31 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Usuario desconoixiu"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr ""
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -743,19 +743,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr ""
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr ""
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -766,7 +766,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -777,19 +777,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr ""
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr ""
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -797,7 +797,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -805,55 +805,55 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr ""
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr ""
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr ""
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr ""
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr ""
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index deb388ac17d..f718576db92 100644
--- a/source/an/vcl/messages.po
+++ b/source/an/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-01-15 09:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/an/>\n"
@@ -668,58 +668,46 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "Restablir"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr ""
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr ""
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "Aduya"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr ""
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "Amostrar"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "Amagar"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr ""
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr ""
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
#, fuzzy
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
@@ -727,94 +715,94 @@ msgstr "Cancelar"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "D'alcuerdo"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "Cancelar"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr ""
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr ""
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr ""
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~Aduya"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
#, fuzzy
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "Zarrar"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr ""
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr ""
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr ""
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr ""
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr ""
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
#, fuzzy
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "Ubrir"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr ""
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -822,364 +810,364 @@ msgid ""
msgstr ""
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
#, fuzzy
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "Arre~dol de %PRODUCTNAME"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr ""
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr ""
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr ""
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr ""
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr ""
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr ""
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr ""
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
#, fuzzy
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "Ficar como enlaz"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr ""
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
#, fuzzy
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "Reproducir"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr ""
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr ""
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr ""
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr ""
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
#, fuzzy
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "Selección"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr ""
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr ""
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr ""
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr ""
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr ""
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "Ubrir"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr ""
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr ""
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr ""
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr ""
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr ""
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr ""
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr ""
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
#, fuzzy
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Personalizau 1"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr ""
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr ""
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr ""
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr ""
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
#, fuzzy
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "Por defecto"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Información"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "~Alvertencia"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr ""
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
#, fuzzy
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Información"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr ""
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr ""
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr ""
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr ""
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr ""
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/an/writerperfect/messages.po b/source/an/writerperfect/messages.po
index a548c1ee26d..68987446537 100644
--- a/source/an/writerperfect/messages.po
+++ b/source/an/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+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/writerperfectmessages/an/>\n"
@@ -17,49 +17,49 @@ msgstr ""
"X-POOTLE-MTIME: 1525785849.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr ""
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr ""
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr ""
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr ""
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr ""
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr ""
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr ""
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr ""
diff --git a/source/ar/accessibility/messages.po b/source/ar/accessibility/messages.po
index 698810fe13e..4172286f0b4 100644
--- a/source/ar/accessibility/messages.po
+++ b/source/ar/accessibility/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/accessibilitymessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1507237051.000000\n"
#. be4e7
@@ -79,12 +79,12 @@ msgstr "الصّفّ %ROWNUMBER"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -94,37 +94,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -134,9 +134,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/avmedia/messages.po b/source/ar/avmedia/messages.po
index cd3343aa783..67683e1fe81 100644
--- a/source/ar/avmedia/messages.po
+++ b/source/ar/avmedia/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/avmediamessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1518295211.000000\n"
#. FaxGP
@@ -151,12 +151,12 @@ msgstr "معاينة"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -166,37 +166,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -206,9 +206,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/basctl/messages.po b/source/ar/basctl/messages.po
index e78762319c2..1fdeca043c4 100644
--- a/source/ar/basctl/messages.po
+++ b/source/ar/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/basctlmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1563566502.000000\n"
#. fniWp
@@ -578,12 +578,12 @@ msgstr "الامتداد"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -593,37 +593,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -633,12 +633,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. GaJFV
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:26
@@ -974,7 +974,7 @@ msgstr ""
#: basctl/uiconfig/basicide/ui/dockingwatch.ui:139
msgctxt "dockingwatch|RID_STR_WATCHTYPE"
msgid "Type"
-msgstr ""
+msgstr "النوع"
#. worE9
#: basctl/uiconfig/basicide/ui/exportdialog.ui:8
diff --git a/source/ar/basic/messages.po b/source/ar/basic/messages.po
index 853b73d018a..618145790ac 100644
--- a/source/ar/basic/messages.po
+++ b/source/ar/basic/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/basicmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1507237053.000000\n"
#. CacXi
@@ -782,12 +782,12 @@ msgstr "$(ARG1)"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -797,37 +797,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -837,12 +837,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. Vtc9n
#: basic/inc/strings.hrc:24
diff --git a/source/ar/chart2/messages.po b/source/ar/chart2/messages.po
index d41ccc0543d..45a2d9f7f0c 100644
--- a/source/ar/chart2/messages.po
+++ b/source/ar/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1540149325.000000\n"
#. NCRDD
@@ -43,12 +43,12 @@ msgstr "هرم"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -58,37 +58,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -98,12 +98,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. v9sqX
#: chart2/inc/strings.hrc:24
@@ -887,7 +887,7 @@ msgstr "الأس"
#: chart2/inc/strings.hrc:154
msgctxt "STR_REGRESSION_POLYNOMIAL"
msgid "Polynomial"
-msgstr ""
+msgstr "متعددة حدود"
#. FWi4g
#: chart2/inc/strings.hrc:155
diff --git a/source/ar/connectivity/messages.po b/source/ar/connectivity/messages.po
index 4ae35fa8fdc..cf4406d6ca1 100644
--- a/source/ar/connectivity/messages.po
+++ b/source/ar/connectivity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/connectivitymessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1535974879.000000\n"
#. 9KHB8
@@ -421,7 +421,7 @@ msgstr "لا يمكن تغيير الجدول. فهو للقراءة فقط."
#: connectivity/inc/strings.hrc:93
msgctxt "STR_DELETE_ROW"
msgid "The row could not be deleted. The option \"Display inactive records\" is set."
-msgstr "تعذر حذف الصف. تم تعيين الخيار \"عرض تسجيلات غير نشطة\"."
+msgstr "تعذر حذف الصف. تم تعيين الخيار \"عرض سجلات غير نشطة\"."
#. TZTfv
#: connectivity/inc/strings.hrc:94
@@ -615,12 +615,12 @@ msgstr "تعذر عرض محتويات الجدول بالكامل. رجاءً
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -630,37 +630,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -670,9 +670,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index d6c29fbdbb9..428521f8e91 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-18 14:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ar/>\n"
"Language: ar\n"
@@ -85,12 +85,12 @@ msgstr "النص"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -100,37 +100,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -140,12 +140,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. E6GDh
#: cui/inc/strings.hrc:23
@@ -1087,7 +1087,7 @@ msgstr "من الأسفل"
#: cui/inc/strings.hrc:190
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
-msgstr "لا تسجيلات تقابل بياناتك المعثور عليها."
+msgstr "لم يُعثر على سجلات تقابل بياناتك."
#. VkTjA
#: cui/inc/strings.hrc:191
@@ -1808,7 +1808,7 @@ msgstr "تصحيح الاستخدام غير المقصود للمفتاح CAPS
#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
-msgstr "إضافة مسافة غير فاصلة قبل علامات ترقيم محددة في النص الفرنسي"
+msgstr "إضافة مسافة غير فاصلة قبل علامات تنقيط محددة في النص الفرنسي"
#. NDmW9
#: cui/inc/strings.hrc:333
@@ -1875,7 +1875,7 @@ msgstr "إنشاء جدول"
#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
-msgstr "تطبيق أنماط"
+msgstr "طبّق الطُرُز"
#. 6MGUe
#: cui/inc/strings.hrc:345
@@ -1913,248 +1913,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "نهاية الاقتباس"
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "بلا حدود"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "وضع حد خارجي فقط"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "وضع حد خارجي وخطوط أفقية"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "وضع حد خارجي وكل الخطوط الداخلية"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "وضع حد خارجي دون تعديل الخطوط الداخلية"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "تعيين الخطوط المائلة فقط"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "وضع الحدود الأربعة"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "وضع الحدّين الأيمن والأيسر فقط"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "وضع الحدّين العلوي والسفلي فقط"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "وضع الحد الأيسر فقط"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "وضع الحد الأعلى والأسفل، وجميع الخطوط الداخلية"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "وضع الحد الأيسر والأيمن، وجميع الخطوط الداخلية"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "بدون ظل"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "الظل أسفل اليمين"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "الظل أعلى اليمين"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "الظل أسفل اليسار"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "الظل أعلى اليسار"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "وقّعها: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "كل الملفات"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "قواعد البيانات المسجّلة"
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "تعذّر تحويل المسار <%1> إلى مسار نظام ملفات."
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr "الحقوق محفوظة © 2000–2021 لمساهمي ليبر أوفيس."
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "هذه الإصدارة من تقديم %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "بُنِي ليبر أوفيس على أوبن أوفيس.أورغ."
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "‏%PRODUCTNAME مشتقّ من ليبر أوفيس المبني على أوبن أوفيس.أورغ."
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "الواجهة: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "تحرير المسارات: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "اللصيقة"
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "الأمر"
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "التلميحة"
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "المسار (أو النص) طويل جدا لمستوى تصحيح الأخطاء الحالي. قلّل من طول النص أو أنزِل مستوى التصحيح."
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "يمكنك حذف الألوان التي عرّفها المستخدم فقط"
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "من فضلك اختر اللون الذي تريد حذفه"
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "ثبّت"
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "مثبَّت"
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "يثبّت"
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "يبحث..."
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "يحمّل..."
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "الإمتدادات"
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "طبّق على %MODULE"
@@ -2196,7 +2124,7 @@ msgstr "تكتب كتابا؟ المستند الرئيس في %PRODUCTNAME يت
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "يمكنك إنشاء ملفات بي دي أف هجينة باستخدام %PRODUCTNAME."
#. LBkjN
#: cui/inc/tipoftheday.hrc:55
@@ -2331,14 +2259,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2520,1071 +2449,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr "هل كنت تعلم أنك تستطيع إرفاق تعليقات على أجزاء من النص؟ ما عليك إلا استخدام الإختصار %MOD1+%MOD2+C."
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "مزيد من المعلومات"
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
-msgstr ""
+msgstr "شغّل هذا الإجراء الآن..."
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr "تلميحة اليوم: %CURRENT/%TOTAL"
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3595,22 +3518,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3619,16 +3542,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -4705,43 +4628,43 @@ msgstr ""
#: cui/uiconfig/ui/additionsdialog.ui:12
msgctxt "customanimationfragment|90"
msgid "Active version only"
-msgstr ""
+msgstr "الإصدار النشط فقط"
#. 6ZZPG
#: cui/uiconfig/ui/additionsdialog.ui:25
msgctxt "bulletandposition|gallery"
msgid "Sort by"
-msgstr ""
+msgstr "رتّب بحسب"
#. LhkwF
#: cui/uiconfig/ui/additionsdialog.ui:34
msgctxt "menuassignpage|gear_textOnly"
msgid "Voting"
-msgstr ""
+msgstr "التصويت"
#. KsZpM
#: cui/uiconfig/ui/additionsdialog.ui:43
msgctxt "menuassignpage|gear_textOnly"
msgid "Downloads"
-msgstr ""
+msgstr "التحميلات"
#. A4zUt
#: cui/uiconfig/ui/additionsdialog.ui:52
msgctxt "menuassignpage|gear_textOnly"
msgid "Comments"
-msgstr ""
+msgstr "التعليقات"
#. ncCYE
#: cui/uiconfig/ui/additionsdialog.ui:71
msgctxt "menuassignpage|gear_iconAndText"
msgid "Detail view"
-msgstr ""
+msgstr "معاينة تفصيلية"
#. SoASj
#: cui/uiconfig/ui/additionsdialog.ui:82
msgctxt "menuassignpage|gear_iconAndText"
msgid "Condensed list"
-msgstr ""
+msgstr "لائحة متراصة"
#. MdFgz
#: cui/uiconfig/ui/additionsdialog.ui:98
@@ -4790,7 +4713,7 @@ msgstr ""
#: cui/uiconfig/ui/additionsfragment.ui:16
msgctxt "additionsDialog|buttonShowMore"
msgid "Show More Extensions"
-msgstr ""
+msgstr "أظهِر المزيد من الإمتدادات"
#. 2pPGn
#: cui/uiconfig/ui/additionsfragment.ui:21
@@ -4802,13 +4725,13 @@ msgstr ""
#: cui/uiconfig/ui/additionsfragment.ui:22
msgctxt "additionsDialog|buttonShowMore"
msgid "This button shows more extensions."
-msgstr ""
+msgstr "هذا الزر يظهِر المزيد من الإمتدادات."
#. UzjvF
#: cui/uiconfig/ui/additionsfragment.ui:68
msgctxt "additionsEntry|votingLabel"
msgid "Voting:"
-msgstr ""
+msgstr "التصويت:"
#. iMQas
#: cui/uiconfig/ui/additionsfragment.ui:88
@@ -4826,13 +4749,13 @@ msgstr ""
#: cui/uiconfig/ui/additionsfragment.ui:124
msgctxt "additionsEntry|labelComments"
msgid "Comments:"
-msgstr ""
+msgstr "التعليقات:"
#. TkztG
#: cui/uiconfig/ui/additionsfragment.ui:142
msgctxt "additionsEntry|labelComments"
msgid "Downloads:"
-msgstr ""
+msgstr "التحميلات:"
#. JRe5b
#: cui/uiconfig/ui/additionsfragment.ui:356
@@ -8606,7 +8529,7 @@ msgstr ""
#: cui/uiconfig/ui/effectspage.ui:291
msgctxt "effectspage|effectsft2"
msgid "Effects"
-msgstr ""
+msgstr "التأثيرات"
#. FY52V
#: cui/uiconfig/ui/effectspage.ui:323
@@ -13019,10 +12942,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "فاصل"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -13669,25 +13592,25 @@ msgstr "نص _غربي فقط"
#: cui/uiconfig/ui/optasianpage.ui:36
msgctxt "extended_tip|charkerning"
msgid "Specifies that kerning is only applied to western text."
-msgstr ""
+msgstr "يحدد أنّ التقنين يطبَّق فقط على النص الغربي."
#. WEFrz
#: cui/uiconfig/ui/optasianpage.ui:48
msgctxt "optasianpage|charpunctkerning"
msgid "Western _text and Asian punctuation"
-msgstr "_نص غربي و علامات ترقيم آسيوية"
+msgstr "_نص غربي و علامات تنقيط آسيوية"
#. PCrHe
#: cui/uiconfig/ui/optasianpage.ui:57
msgctxt "extended_tip|charpunctkerning"
msgid "Specifies that kerning is applied to both western text and Asian punctuation."
-msgstr ""
+msgstr "يحدد أنّ التقنين يطبَّق على كلّ من النص الغربي والتنقيط الآسيوي."
#. 4wTpB
#: cui/uiconfig/ui/optasianpage.ui:73
msgctxt "optasianpage|label1"
msgid "Kerning"
-msgstr "تقليص المسافات"
+msgstr "التقنين"
#. mboKG
#: cui/uiconfig/ui/optasianpage.ui:101
@@ -13705,25 +13628,25 @@ msgstr ""
#: cui/uiconfig/ui/optasianpage.ui:122
msgctxt "optasianpage|punctcompression"
msgid "_Compress punctuation only"
-msgstr "_ضغط التشكيل فقط"
+msgstr "_ضغط التنقيط فقط"
#. 8FYbX
#: cui/uiconfig/ui/optasianpage.ui:131
msgctxt "extended_tip|punctcompression"
msgid "Specifies that only the punctuation is compressed."
-msgstr ""
+msgstr "يحدد أنّ التنقيط فقط يُضغَط."
#. aGY7H
#: cui/uiconfig/ui/optasianpage.ui:143
msgctxt "optasianpage|punctkanacompression"
msgid "Compress punctuation and Japanese Kana"
-msgstr "ضغط التشكيل والكانا اليابانية"
+msgstr "ضغط التنقيط والكانا اليابانية"
#. k2K9z
#: cui/uiconfig/ui/optasianpage.ui:152
msgctxt "extended_tip|punctkanacompression"
msgid "Specifies that punctuation and Japanese Kana are compressed."
-msgstr ""
+msgstr "يحدد أنّ التنقيط والكانا اليابانية يُضغطان."
#. DAgwH
#: cui/uiconfig/ui/optasianpage.ui:168
@@ -14555,7 +14478,7 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:337
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
-msgstr ""
+msgstr "أرس_ل تقارير الإنهيار إلى مؤسسة The Document Foundation"
#. rS3dG
#: cui/uiconfig/ui/optgeneralpage.ui:357
@@ -14809,22 +14732,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "خيارات"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -16320,7 +16267,7 @@ msgstr "المدينة"
#: cui/uiconfig/ui/optuserpage.ui:240
msgctxt "extended tip | city"
msgid "Type the city where you live."
-msgstr ""
+msgstr "اكتب اسم المدينة التي تعيش فيها."
#. CnJ3K
#: cui/uiconfig/ui/optuserpage.ui:259
@@ -16542,7 +16489,7 @@ msgstr "الشارع"
#: cui/uiconfig/ui/optuserpage.ui:699
msgctxt "extended tips | russrteet"
msgid "Type the name of your street in this field."
-msgstr ""
+msgstr "اكتب اسم شارعك في هذا الحقل."
#. QxpMF
#: cui/uiconfig/ui/optuserpage.ui:718
@@ -16572,7 +16519,7 @@ msgstr "المدينة"
#: cui/uiconfig/ui/optuserpage.ui:766
msgctxt "extended tip | icity"
msgid "Type the city where you live."
-msgstr ""
+msgstr "اكتب اسم المدينة التي تعيش فيها."
#. Hdniz
#: cui/uiconfig/ui/optuserpage.ui:785
@@ -16590,7 +16537,7 @@ msgstr ""
#: cui/uiconfig/ui/optuserpage.ui:817
msgctxt "extended tip | street"
msgid "Type the name of your street in this field."
-msgstr ""
+msgstr "اكتب اسم شارعك في هذا الحقل."
#. As2sL
#: cui/uiconfig/ui/optuserpage.ui:848
@@ -16614,37 +16561,37 @@ msgstr "العنوان"
#: cui/uiconfig/ui/optuserpage.ui:932
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
-msgstr ""
+msgstr "مفتاح توقيع OpenPGP:"
#. 4KEFW
#: cui/uiconfig/ui/optuserpage.ui:946
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
-msgstr ""
+msgstr "مفتاح تعمية OpenPGP:"
#. GCS8p
#: cui/uiconfig/ui/optuserpage.ui:962 cui/uiconfig/ui/optuserpage.ui:981
msgctxt "optuserpage|liststore1"
msgid "No key"
-msgstr ""
+msgstr "لا مفتاح"
#. UJXE4
#: cui/uiconfig/ui/optuserpage.ui:966
msgctxt "extended tip | encryptionkey"
msgid "Select your OpenPGP key from the drop-down list for encrypting ODF documents."
-msgstr ""
+msgstr "حدد مفتاح OpenPGP خاصتك من اللائحة المنسدلة لتعمية مستندات ODF."
#. m27Ub
#: cui/uiconfig/ui/optuserpage.ui:985
msgctxt "extended tip | signingkey"
msgid "Select your OpenPGP key from the drop-down list for signing ODF documents."
-msgstr ""
+msgstr "حدد مفتاح OpenPGP خاصتك من اللائحة المنسدلة لتوقيع مستندات ODF."
#. 8USbk
#: cui/uiconfig/ui/optuserpage.ui:996
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
-msgstr ""
+msgstr "عند تعمية المستندات، دوماً عَمِّ لنفسي"
#. FaxaF
#: cui/uiconfig/ui/optuserpage.ui:1004
@@ -16656,7 +16603,7 @@ msgstr ""
#: cui/uiconfig/ui/optuserpage.ui:1020
msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr ""
+msgstr "التعمية"
#. PjCQu
#: cui/uiconfig/ui/optuserpage.ui:1036
@@ -21038,13 +20985,13 @@ msgid "_Next Tip"
msgstr "التلميحة ال_تالية"
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "هل كنت تعلم؟"
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21056,79 +21003,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr "تنويعات واجهة المستخدم"
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
@@ -21317,7 +21264,7 @@ msgstr "وضع شفافية المنطقة"
#: cui/uiconfig/ui/transparencytabpage.ui:542
msgctxt "transparencytabpage|extended_tip|TransparencyTabPage"
msgid "Set the transparency options for the fill that you apply to the selected object."
-msgstr ""
+msgstr "عيّن خيارات الشفافية للملء الذي تريد تطبيقه على الكائن المحدد."
#. vUHk9
#: cui/uiconfig/ui/tsaurldialog.ui:16
@@ -21402,7 +21349,7 @@ msgstr "فعّل إ_كمال الكلمات"
#: cui/uiconfig/ui/wordcompletionpage.ui:81
msgctxt "wordcompletionpage|extended_tip|enablewordcomplete"
msgid "Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word."
-msgstr ""
+msgstr "يخزن الكلمات متكررة الاستعمال، ويكمل الكلمة تلقائيا بعد أن تطبع ثلاثة حروف تطابق أول ثلاثة حروف من كلمة مخزونة."
#. F6ECQ
#: cui/uiconfig/ui/wordcompletionpage.ui:99
@@ -21414,7 +21361,7 @@ msgstr "ألحِق م_سافة"
#: cui/uiconfig/ui/wordcompletionpage.ui:107
msgctxt "wordcompletionpage|extended_tip|appendspace"
msgid "If you do not add punctuation after the word, %PRODUCTNAME adds a space."
-msgstr ""
+msgstr "إذا لم تضف تنقيطا بعد الكلمة، فإنّ %PRODUCTNAME يضيف مسافة."
#. YyYGC
#: cui/uiconfig/ui/wordcompletionpage.ui:118
@@ -21438,7 +21385,7 @@ msgstr "أ_دنى طول للكلمة:"
#: cui/uiconfig/ui/wordcompletionpage.ui:180
msgctxt "wordcompletionpage|extended_tip|minwordlen"
msgid "Enter the minimum word length for a word to become eligible for the word completion feature."
-msgstr ""
+msgstr "أدخِل أدنى طول كلمة للكلمة كي تصبح مؤهلة لميزة إكمال الكلمة."
#. YAb3D
#: cui/uiconfig/ui/wordcompletionpage.ui:193
@@ -21450,31 +21397,31 @@ msgstr "أ_قصى عدد للمدخلات:"
#: cui/uiconfig/ui/wordcompletionpage.ui:213
msgctxt "wordcompletionpage|extended_tip|maxentries"
msgid "Enter the maximum number of words that you want to store in the Word Completion list."
-msgstr ""
+msgstr "أدخِل أقصى عدد كلمات تريد خزنها في لائحة إكمال الكلمة."
#. SzABn
#: cui/uiconfig/ui/wordcompletionpage.ui:226
msgctxt "wordcompletionpage|label3"
msgid "Acc_ept with:"
-msgstr ""
+msgstr "إ_قبل بـ:"
#. gPj5A
#: cui/uiconfig/ui/wordcompletionpage.ui:242
msgctxt "wordcompletionpage|extended_tip|acceptwith"
msgid "Select the key that you want to use to accept the automatic word completion."
-msgstr ""
+msgstr "حدد المفتاح الذي تريد استخدامه لقبول الإكمال التلقائي للكلمة."
#. iedK3
#: cui/uiconfig/ui/wordcompletionpage.ui:276
msgctxt "acorreplacepage|collectedwords"
msgid "Collected Words"
-msgstr ""
+msgstr "الكلمات المجمَّعة"
#. GCXAm
#: cui/uiconfig/ui/wordcompletionpage.ui:322
msgctxt "wordcompletionpage|extended_tip|entries"
msgid "Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\"."
-msgstr ""
+msgstr "لائحة بالكلمات المجمَّعة. اللائحة صالحة إلى أن تغلق المستند الحالي. لتجعل اللائحة متاحة لمستندات أخرى في الجلسة الحالية، عطّل \"عند إغلاق مستند، أزِل الكلمات المجمَّعة منه من اللائحة\"."
#. Akygd
#: cui/uiconfig/ui/wordcompletionpage.ui:335
diff --git a/source/ar/dbaccess/messages.po b/source/ar/dbaccess/messages.po
index fe55f6fb453..d7966ab7378 100644
--- a/source/ar/dbaccess/messages.po
+++ b/source/ar/dbaccess/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524566341.000000\n"
#. BiN6g
@@ -37,12 +37,12 @@ msgstr "إفادة SQL"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -52,37 +52,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -92,12 +92,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. FAMGa
#: dbaccess/inc/strings.hrc:24
@@ -2993,7 +2993,7 @@ msgstr "تحويل البيانات"
#: dbaccess/uiconfig/ui/dbasepage.ui:91
msgctxt "dbasepage|showDelRowsCheckbutton"
msgid "Display deleted records as well"
-msgstr "اعرض السّجلّات المحذوفة أيضًا"
+msgstr "اعرض السجلات المحذوفة أيضًا"
#. sD2dr
#: dbaccess/uiconfig/ui/dbasepage.ui:108
@@ -3344,13 +3344,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "حدّد نوع قاعدة البيانات الّتي تريد إقامة اتّصال بها."
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "_نوع قاعدة البيانات:"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/ar/desktop/messages.po b/source/ar/desktop/messages.po
index 6cbba56ec1c..fe00aee1e30 100644
--- a/source/ar/desktop/messages.po
+++ b/source/ar/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1535974880.000000\n"
#. v2iwK
@@ -815,12 +815,12 @@ msgstr "خطأ: "
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -830,37 +830,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -870,12 +870,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. Qcv5A
#: desktop/uiconfig/ui/dependenciesdialog.ui:18
diff --git a/source/ar/editeng/messages.po b/source/ar/editeng/messages.po
index 1ac41e06cf9..5140e417a04 100644
--- a/source/ar/editeng/messages.po
+++ b/source/ar/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-18 14:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1524288361.000000\n"
#. BHYB4
@@ -100,12 +100,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -115,37 +115,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -155,12 +155,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. 2Lzx7
#: editeng/uiconfig/ui/spellmenu.ui:12
@@ -1325,7 +1325,7 @@ msgstr "نمط الصفحة: "
#: include/editeng/editrids.hrc:234
msgctxt "RID_SVXITEMS_KERNING_COMPLETE"
msgid "Kerning "
-msgstr "تقنين الأحرف "
+msgstr "التقنين "
#. A7tAE
#: include/editeng/editrids.hrc:235
@@ -1644,7 +1644,7 @@ msgstr "أزِح"
#: include/editeng/editrids.hrc:290
msgctxt "RID_EDITUNDO_SETSTYLE"
msgid "Apply Styles"
-msgstr "طبّق الأنماط"
+msgstr "طبّق الطُرُز"
#. M7ADh
#: include/editeng/editrids.hrc:291
diff --git a/source/ar/extensions/messages.po b/source/ar/extensions/messages.po
index 606e1fbe8b5..13ea846a63a 100644
--- a/source/ar/extensions/messages.po
+++ b/source/ar/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-18 14:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022440.000000\n"
#. cBx8W
@@ -37,12 +37,12 @@ msgstr "أمر SQL"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -52,37 +52,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -92,12 +92,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. hEBQd
#: extensions/inc/showhide.hrc:29
@@ -2874,7 +2874,7 @@ msgstr "مرشد مصدر بيانات دفتر العناوين"
#: extensions/inc/strings.hrc:373
msgctxt "RID_STR_SELECT_ABTYPE"
msgid "Address Book Type"
-msgstr ""
+msgstr "نوع دفتر العناوين"
#. bB7Gx
#: extensions/inc/strings.hrc:374
@@ -2886,7 +2886,7 @@ msgstr "إعدادات الاتصال"
#: extensions/inc/strings.hrc:375
msgctxt "RID_STR_TABLE_SELECTION"
msgid "Table Selection"
-msgstr ""
+msgstr "تحديد الجدول"
#. cwcQa
#: extensions/inc/strings.hrc:376
@@ -3238,6 +3238,11 @@ msgid ""
"\n"
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
+"لتضمّن بيانات العنوان في قوالبك، يجب على %PRODUCTNAME أن يعرف ما البيانات الموجودة في كل حقل.\n"
+"\n"
+"على سبيل المثال، قد تكون خزنت عناوين البريد في حقل اسمه \"email\" أو \"E-mail\" أو \"EM\" - أو شيء مختلف تماما.\n"
+"\n"
+"انقر الزر أدناه لتفتح حواريا آخر يمكنك فيه إدخال إعدادات مصدر بياناتك."
#. RkyNf
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:38
@@ -3249,7 +3254,7 @@ msgstr "تعيين الحقول"
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:46
msgctxt "fieldassignpage|extended_tip|assign"
msgid "Opens the Templates: Address Book Assignment dialog."
-msgstr ""
+msgstr "يفتح القوالب: حواري إسناد دفتر العناوين."
#. CuPoK
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:77
@@ -3512,7 +3517,7 @@ msgstr ""
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:77
msgctxt "selecttablepage|extended_tip|table"
msgid "Specifies the table that is to serve as the address book for the %PRODUCTNAME templates."
-msgstr ""
+msgstr "يحدد الجدول الذي يوفر دفتر العناوين لقوالب %PRODUCTNAME."
#. F6ySC
#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:90
@@ -3620,7 +3625,7 @@ msgstr ""
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:184
msgctxt "selecttypepage|label1"
msgid "Select the type of your external address book:"
-msgstr ""
+msgstr "حدد نوع دفتر العناوين الخارجي خاصّتك:"
#. xdzuR
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:204
diff --git a/source/ar/extras/source/autocorr/emoji.po b/source/ar/extras/source/autocorr/emoji.po
index 5db97cb722d..abfdca10609 100644
--- a/source/ar/extras/source/autocorr/emoji.po
+++ b/source/ar/extras/source/autocorr/emoji.po
@@ -3,20 +3,21 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2017-11-17 17:46+0000\n"
-"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2021-03-14 21:37+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510940810.000000\n"
+"X-Generator: Weblate 4.4.2\n"
+"X-POOTLE-MTIME: 1516029056.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
+#. 6xmho
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -26,6 +27,7 @@ msgid "cent"
msgstr "سنت"
#. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji
+#. 8cRaa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -35,6 +37,7 @@ msgid "pound"
msgstr "جنيه"
#. ¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji
+#. dDHGm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -44,6 +47,7 @@ msgid "yen"
msgstr "ين"
#. § (U+000A7), see http://wiki.documentfoundation.org/Emoji
+#. 2CS6Y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -53,6 +57,7 @@ msgid "section"
msgstr "قسم"
#. © (U+000A9), see http://wiki.documentfoundation.org/Emoji
+#. 8JZew
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -62,6 +67,7 @@ msgid "copyright"
msgstr "حقوق نشر"
#. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji
+#. Kof3U
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -71,6 +77,7 @@ msgid "not"
msgstr "نفي"
#. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji
+#. QtogK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -80,6 +87,7 @@ msgid "registered"
msgstr "مسجلة"
#. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji
+#. KCLL8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -89,6 +97,7 @@ msgid "degree"
msgstr "درجة"
#. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji
+#. rFAFf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -98,6 +107,7 @@ msgid "+-"
msgstr "+-"
#. · (U+000B7), see http://wiki.documentfoundation.org/Emoji
+#. GHgFG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -107,6 +117,7 @@ msgid "middle dot"
msgstr "نقطة متوسطة"
#. × (U+000D7), see http://wiki.documentfoundation.org/Emoji
+#. L8X6v
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -116,6 +127,7 @@ msgid "x"
msgstr "x"
#. Α (U+00391), see http://wiki.documentfoundation.org/Emoji
+#. gs5Aw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -125,6 +137,7 @@ msgid "Alpha"
msgstr "ألفا كبير"
#. Β (U+00392), see http://wiki.documentfoundation.org/Emoji
+#. uuARW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -134,6 +147,7 @@ msgid "Beta"
msgstr "بيتا كبير"
#. Γ (U+00393), see http://wiki.documentfoundation.org/Emoji
+#. BWfEu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -143,6 +157,7 @@ msgid "Gamma"
msgstr "غاما كبير"
#. Δ (U+00394), see http://wiki.documentfoundation.org/Emoji
+#. XThsR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -152,6 +167,7 @@ msgid "Delta"
msgstr "دلتا كبير"
#. Ε (U+00395), see http://wiki.documentfoundation.org/Emoji
+#. 8xpsp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -161,6 +177,7 @@ msgid "Epsilon"
msgstr "إبسلون كبير"
#. Ζ (U+00396), see http://wiki.documentfoundation.org/Emoji
+#. VbdgL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -170,6 +187,7 @@ msgid "Zeta"
msgstr "زيتا كبير"
#. Η (U+00397), see http://wiki.documentfoundation.org/Emoji
+#. H3pQT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -179,6 +197,7 @@ msgid "Eta"
msgstr "إتا كبير"
#. Θ (U+00398), see http://wiki.documentfoundation.org/Emoji
+#. Q45oB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -188,6 +207,7 @@ msgid "Theta"
msgstr "ثيتا كبير"
#. Ι (U+00399), see http://wiki.documentfoundation.org/Emoji
+#. bTxcC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -197,6 +217,7 @@ msgid "Iota"
msgstr "إيوتا كبير"
#. Κ (U+0039A), see http://wiki.documentfoundation.org/Emoji
+#. j5BVA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -206,6 +227,7 @@ msgid "Kappa"
msgstr "كابا كبير"
#. Λ (U+0039B), see http://wiki.documentfoundation.org/Emoji
+#. gGXpA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -215,6 +237,7 @@ msgid "Lambda"
msgstr "لامبدا كبير"
#. Μ (U+0039C), see http://wiki.documentfoundation.org/Emoji
+#. 3GCFv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -224,6 +247,7 @@ msgid "Mu"
msgstr "مو كبير"
#. Ν (U+0039D), see http://wiki.documentfoundation.org/Emoji
+#. zT27g
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -233,6 +257,7 @@ msgid "Nu"
msgstr "نو كبير"
#. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji
+#. GJAnw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -242,6 +267,7 @@ msgid "Xi"
msgstr "ساي كبير"
#. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji
+#. aWg4V
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -251,6 +277,7 @@ msgid "Omicron"
msgstr "أوميكرون كبير"
#. Π (U+003A0), see http://wiki.documentfoundation.org/Emoji
+#. Mohkh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -260,6 +287,7 @@ msgid "Pi"
msgstr "باي كبير"
#. Ρ (U+003A1), see http://wiki.documentfoundation.org/Emoji
+#. TMJmd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -269,6 +297,7 @@ msgid "Rho"
msgstr "رو كير"
#. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji
+#. tY2FG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -278,6 +307,7 @@ msgid "Sigma"
msgstr "سيغما كبير"
#. Τ (U+003A4), see http://wiki.documentfoundation.org/Emoji
+#. VXNwC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -287,6 +317,7 @@ msgid "Tau"
msgstr "تاو كبير"
#. Υ (U+003A5), see http://wiki.documentfoundation.org/Emoji
+#. XYQqL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -296,6 +327,7 @@ msgid "Upsilon"
msgstr "أبسلون كبير"
#. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji
+#. C3riA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -305,6 +337,7 @@ msgid "Phi"
msgstr "فاي كبير"
#. Χ (U+003A7), see http://wiki.documentfoundation.org/Emoji
+#. Gx6Mx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -314,6 +347,7 @@ msgid "Chi"
msgstr "خي كبير"
#. Ψ (U+003A8), see http://wiki.documentfoundation.org/Emoji
+#. tCiRw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -323,6 +357,7 @@ msgid "Psi"
msgstr "بسي كبير"
#. Ω (U+003A9), see http://wiki.documentfoundation.org/Emoji
+#. CJ22A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -332,6 +367,7 @@ msgid "Omega"
msgstr "أوميغا كبير"
#. α (U+003B1), see http://wiki.documentfoundation.org/Emoji
+#. vyYUc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -341,6 +377,7 @@ msgid "alpha"
msgstr "ألفا"
#. β (U+003B2), see http://wiki.documentfoundation.org/Emoji
+#. XsUBy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -350,6 +387,7 @@ msgid "beta"
msgstr "بيتا"
#. γ (U+003B3), see http://wiki.documentfoundation.org/Emoji
+#. JUGYe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -359,6 +397,7 @@ msgid "gamma"
msgstr "غاما"
#. δ (U+003B4), see http://wiki.documentfoundation.org/Emoji
+#. qZEC9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -368,6 +407,7 @@ msgid "delta"
msgstr "دلتا"
#. ε (U+003B5), see http://wiki.documentfoundation.org/Emoji
+#. goVBj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -377,6 +417,7 @@ msgid "epsilon"
msgstr "إبسلون"
#. ζ (U+003B6), see http://wiki.documentfoundation.org/Emoji
+#. wdzS2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -386,6 +427,7 @@ msgid "zeta"
msgstr "زيتا"
#. η (U+003B7), see http://wiki.documentfoundation.org/Emoji
+#. 4ei53
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -395,6 +437,7 @@ msgid "eta"
msgstr "إتا"
#. θ (U+003B8), see http://wiki.documentfoundation.org/Emoji
+#. D6Y8P
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -404,6 +447,7 @@ msgid "theta"
msgstr "ثيتا"
#. ι (U+003B9), see http://wiki.documentfoundation.org/Emoji
+#. qVFWA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -413,6 +457,7 @@ msgid "iota"
msgstr "إيوتا"
#. κ (U+003BA), see http://wiki.documentfoundation.org/Emoji
+#. V3aBQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -422,6 +467,7 @@ msgid "kappa"
msgstr "كابا"
#. λ (U+003BB), see http://wiki.documentfoundation.org/Emoji
+#. hneie
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -431,6 +477,7 @@ msgid "lambda"
msgstr "لامبدا"
#. μ (U+003BC), see http://wiki.documentfoundation.org/Emoji
+#. CgE9e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -440,6 +487,7 @@ msgid "mu"
msgstr "مو"
#. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji
+#. AK8Mx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -449,6 +497,7 @@ msgid "nu"
msgstr "نو"
#. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji
+#. 7SGbf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -458,6 +507,7 @@ msgid "xi"
msgstr "ساي"
#. ο (U+003BF), see http://wiki.documentfoundation.org/Emoji
+#. 2huiW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -467,6 +517,7 @@ msgid "omicron"
msgstr "أوميكرون"
#. π (U+003C0), see http://wiki.documentfoundation.org/Emoji
+#. CEbhy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -476,6 +527,7 @@ msgid "pi"
msgstr "باي"
#. ρ (U+003C1), see http://wiki.documentfoundation.org/Emoji
+#. ooQb9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -485,6 +537,7 @@ msgid "rho"
msgstr "رو"
#. ς (U+003C2), see http://wiki.documentfoundation.org/Emoji
+#. MSvCj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -494,6 +547,7 @@ msgid "sigma2"
msgstr "سيغما2"
#. σ (U+003C3), see http://wiki.documentfoundation.org/Emoji
+#. aSVZ2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -503,6 +557,7 @@ msgid "sigma"
msgstr "سيغما"
#. τ (U+003C4), see http://wiki.documentfoundation.org/Emoji
+#. qCLZj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -512,6 +567,7 @@ msgid "tau"
msgstr "تاو"
#. υ (U+003C5), see http://wiki.documentfoundation.org/Emoji
+#. DfC5P
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -521,6 +577,7 @@ msgid "upsilon"
msgstr "أبسلون"
#. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji
+#. 7excc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -530,6 +587,7 @@ msgid "phi"
msgstr "فاي"
#. χ (U+003C7), see http://wiki.documentfoundation.org/Emoji
+#. MA42P
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -539,6 +597,7 @@ msgid "chi"
msgstr "خي"
#. ψ (U+003C8), see http://wiki.documentfoundation.org/Emoji
+#. gXp6Q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -548,6 +607,7 @@ msgid "psi"
msgstr "بسي"
#. ω (U+003C9), see http://wiki.documentfoundation.org/Emoji
+#. KQVmQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -557,6 +617,7 @@ msgid "omega"
msgstr "أوميغا"
#. ฿ (U+00E3F), see http://wiki.documentfoundation.org/Emoji
+#. ZaCN9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -566,6 +627,7 @@ msgid "baht"
msgstr "بات"
#. – (U+02013), see http://wiki.documentfoundation.org/Emoji
+#. dGEGe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -575,6 +637,7 @@ msgid "--"
msgstr "--"
#. — (U+02014), see http://wiki.documentfoundation.org/Emoji
+#. ZJM6b
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -584,6 +647,7 @@ msgid "---"
msgstr "---"
#. ’ (U+02019), see http://wiki.documentfoundation.org/Emoji
+#. NDiwS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -593,6 +657,7 @@ msgid "'"
msgstr "'"
#. † (U+02020), see http://wiki.documentfoundation.org/Emoji
+#. 6juUB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -602,6 +667,7 @@ msgid "dagger"
msgstr "خنجر"
#. ‡ (U+02021), see http://wiki.documentfoundation.org/Emoji
+#. c56EK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -611,6 +677,7 @@ msgid "dagger2"
msgstr "خنجر2"
#. • (U+02022), see http://wiki.documentfoundation.org/Emoji
+#. mRFAh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -620,6 +687,7 @@ msgid "bullet"
msgstr "رصاصة"
#. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji
+#. cThN2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -629,6 +697,7 @@ msgid "bullet2"
msgstr "رصاصة2"
#. … (U+02026), see http://wiki.documentfoundation.org/Emoji
+#. Wge4r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -638,6 +707,7 @@ msgid "."
msgstr "."
#. ‰ (U+02030), see http://wiki.documentfoundation.org/Emoji
+#. 329ZF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -647,6 +717,7 @@ msgid "per mille"
msgstr "بالألف"
#. ‱ (U+02031), see http://wiki.documentfoundation.org/Emoji
+#. 9QbnT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -656,6 +727,7 @@ msgid "basis point"
msgstr ""
#. ′ (U+02032), see http://wiki.documentfoundation.org/Emoji
+#. Yfy5x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -665,6 +737,7 @@ msgid "prime"
msgstr ""
#. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji
+#. qR3Eg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -674,6 +747,7 @@ msgid "inch"
msgstr "بوصة"
#. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji
+#. yALTE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -683,6 +757,7 @@ msgid "!!"
msgstr "!!"
#. ⁉ (U+02049), see http://wiki.documentfoundation.org/Emoji
+#. YFhmQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -692,6 +767,7 @@ msgid "!?"
msgstr "!؟"
#. ₤ (U+020A4), see http://wiki.documentfoundation.org/Emoji
+#. WxoZ3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -701,6 +777,7 @@ msgid "lira"
msgstr "ليرة"
#. ₩ (U+020A9), see http://wiki.documentfoundation.org/Emoji
+#. MkHc9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -710,6 +787,7 @@ msgid "won"
msgstr "وون"
#. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji
+#. yXiVG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -719,6 +797,7 @@ msgid "shekel"
msgstr "شيكل"
#. € (U+020AC), see http://wiki.documentfoundation.org/Emoji
+#. C5Xz8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -728,6 +807,7 @@ msgid "euro"
msgstr "يورو"
#. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji
+#. RAAbk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -737,6 +817,7 @@ msgid "peso"
msgstr "بيزو"
#. ₴ (U+020B4), see http://wiki.documentfoundation.org/Emoji
+#. nc5ED
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -746,6 +827,7 @@ msgid "hryvnia"
msgstr "هريفنا"
#. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji
+#. Vryoo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -755,6 +837,7 @@ msgid "rupee"
msgstr "روبية"
#. ₺ (U+020BA), see http://wiki.documentfoundation.org/Emoji
+#. DH9a6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -764,6 +847,7 @@ msgid "Turkish lira"
msgstr "ليرة تركية"
#. ™ (U+02122), see http://wiki.documentfoundation.org/Emoji
+#. mHDtt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -773,6 +857,7 @@ msgid "tm"
msgstr "علامة مسجلة"
#. ℹ (U+02139), see http://wiki.documentfoundation.org/Emoji
+#. 8a4FF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -782,6 +867,7 @@ msgid "information"
msgstr "معلومات"
#. ← (U+02190), see http://wiki.documentfoundation.org/Emoji
+#. jERBH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -791,6 +877,7 @@ msgid "W"
msgstr ""
#. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji
+#. oCunh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -800,6 +887,7 @@ msgid "N"
msgstr ""
#. → (U+02192), see http://wiki.documentfoundation.org/Emoji
+#. qXYvd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -809,6 +897,7 @@ msgid "E"
msgstr ""
#. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji
+#. 8Riz5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -818,6 +907,7 @@ msgid "S"
msgstr ""
#. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji
+#. dtgFb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -827,6 +917,7 @@ msgid "EW"
msgstr ""
#. ↕ (U+02195), see http://wiki.documentfoundation.org/Emoji
+#. R6B9o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -836,6 +927,7 @@ msgid "NS"
msgstr ""
#. ↖ (U+02196), see http://wiki.documentfoundation.org/Emoji
+#. CvbGW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -845,6 +937,7 @@ msgid "NW"
msgstr ""
#. ↗ (U+02197), see http://wiki.documentfoundation.org/Emoji
+#. 8CiGM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -854,6 +947,7 @@ msgid "NE"
msgstr ""
#. ↘ (U+02198), see http://wiki.documentfoundation.org/Emoji
+#. srbAr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -863,6 +957,7 @@ msgid "SE"
msgstr ""
#. ↙ (U+02199), see http://wiki.documentfoundation.org/Emoji
+#. eGiA8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -872,6 +967,7 @@ msgid "SW"
msgstr ""
#. ⇐ (U+021D0), see http://wiki.documentfoundation.org/Emoji
+#. peETz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -881,6 +977,7 @@ msgid "W2"
msgstr ""
#. ⇑ (U+021D1), see http://wiki.documentfoundation.org/Emoji
+#. GS2Tv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -890,6 +987,7 @@ msgid "N2"
msgstr ""
#. ⇒ (U+021D2), see http://wiki.documentfoundation.org/Emoji
+#. sfFjB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -899,6 +997,7 @@ msgid "E2"
msgstr ""
#. ⇓ (U+021D3), see http://wiki.documentfoundation.org/Emoji
+#. axJEV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -908,6 +1007,7 @@ msgid "S2"
msgstr ""
#. ⇔ (U+021D4), see http://wiki.documentfoundation.org/Emoji
+#. xCA5h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -917,6 +1017,7 @@ msgid "EW2"
msgstr ""
#. ⇕ (U+021D5), see http://wiki.documentfoundation.org/Emoji
+#. ooqFJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -926,6 +1027,7 @@ msgid "NS2"
msgstr ""
#. ⇖ (U+021D6), see http://wiki.documentfoundation.org/Emoji
+#. 9XEKB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -935,6 +1037,7 @@ msgid "NW2"
msgstr ""
#. ⇗ (U+021D7), see http://wiki.documentfoundation.org/Emoji
+#. kBBLu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -944,6 +1047,7 @@ msgid "NE2"
msgstr ""
#. ⇘ (U+021D8), see http://wiki.documentfoundation.org/Emoji
+#. kZFfR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -953,6 +1057,7 @@ msgid "SE2"
msgstr ""
#. ⇙ (U+021D9), see http://wiki.documentfoundation.org/Emoji
+#. 99Cgg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -962,6 +1067,7 @@ msgid "SW2"
msgstr ""
#. ∀ (U+02200), see http://wiki.documentfoundation.org/Emoji
+#. BMXif
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -971,6 +1077,7 @@ msgid "for all"
msgstr "لكل"
#. ∂ (U+02202), see http://wiki.documentfoundation.org/Emoji
+#. 3erep
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -980,6 +1087,7 @@ msgid "partial"
msgstr "جزئي"
#. ∃ (U+02203), see http://wiki.documentfoundation.org/Emoji
+#. 4DtLF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -989,6 +1097,7 @@ msgid "exists"
msgstr "يوجد"
#. ∄ (U+02204), see http://wiki.documentfoundation.org/Emoji
+#. AgmBJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -998,6 +1107,7 @@ msgid "not exists"
msgstr "لا يوجد"
#. ∅ (U+02205), see http://wiki.documentfoundation.org/Emoji
+#. B2jLu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1007,6 +1117,7 @@ msgid "empty set"
msgstr "مجموعة خالية"
#. ∈ (U+02208), see http://wiki.documentfoundation.org/Emoji
+#. FJ3rt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1016,6 +1127,7 @@ msgid "in"
msgstr "ينتمي"
#. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji
+#. BEMCd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1025,6 +1137,7 @@ msgid "not in"
msgstr "لا ينتمي"
#. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji
+#. 4eyex
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1034,6 +1147,7 @@ msgid "small in"
msgstr "ينتمي صغيرة"
#. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji
+#. E33bc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1043,6 +1157,7 @@ msgid "ni"
msgstr ""
#. ∌ (U+0220C), see http://wiki.documentfoundation.org/Emoji
+#. i8AAQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1052,6 +1167,7 @@ msgid "not ni"
msgstr ""
#. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji
+#. ACf4U
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -1062,6 +1178,7 @@ msgid "small ni"
msgstr "ينتمي صغيرة"
#. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji
+#. xexAk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1071,6 +1188,7 @@ msgid "end of proof"
msgstr "نهاية الإثبات"
#. ∏ (U+0220F), see http://wiki.documentfoundation.org/Emoji
+#. KWECz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1080,6 +1198,7 @@ msgid "product"
msgstr "جداء"
#. ∑ (U+02211), see http://wiki.documentfoundation.org/Emoji
+#. UVdh3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1089,6 +1208,7 @@ msgid "sum"
msgstr "مجموع"
#. − (U+02212), see http://wiki.documentfoundation.org/Emoji
+#. 5NBVJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1098,6 +1218,7 @@ msgid "-"
msgstr "-"
#. ∓ (U+02213), see http://wiki.documentfoundation.org/Emoji
+#. TdiGF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1107,6 +1228,7 @@ msgid "-+"
msgstr "-+"
#. ∕ (U+02215), see http://wiki.documentfoundation.org/Emoji
+#. zLnUp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1116,6 +1238,7 @@ msgid "/"
msgstr "/"
#. ∖ (U+02216), see http://wiki.documentfoundation.org/Emoji
+#. WZvbU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1125,6 +1248,7 @@ msgid "\\"
msgstr "\\"
#. √ (U+0221A), see http://wiki.documentfoundation.org/Emoji
+#. MfxE9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1134,6 +1258,7 @@ msgid "sqrt"
msgstr "جذر تربيعي"
#. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji
+#. 3JZoB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1143,6 +1268,7 @@ msgid "cube root"
msgstr "جذر تكعيبي"
#. ∜ (U+0221C), see http://wiki.documentfoundation.org/Emoji
+#. imnuC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1152,6 +1278,7 @@ msgid "fourth root"
msgstr "جذر رابع"
#. ∞ (U+0221E), see http://wiki.documentfoundation.org/Emoji
+#. 4CYyH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1161,6 +1288,7 @@ msgid "infinity"
msgstr "لانهاية"
#. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji
+#. mwyod
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1170,6 +1298,7 @@ msgid "angle"
msgstr "زاوية"
#. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji
+#. 4qqsg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1179,6 +1308,7 @@ msgid "angle2"
msgstr "زاوية2"
#. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji
+#. CtcwF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1188,6 +1318,7 @@ msgid "divides"
msgstr "يقسم"
#. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji
+#. L2Eh8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1197,6 +1328,7 @@ msgid "not divides"
msgstr "لا يقسم"
#. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji
+#. BfccK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1206,6 +1338,7 @@ msgid "parallel"
msgstr "يوازي"
#. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji
+#. sDuNZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1215,6 +1348,7 @@ msgid "nparallel"
msgstr "لا يوازي"
#. ∧ (U+02227), see http://wiki.documentfoundation.org/Emoji
+#. DTtod
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1224,6 +1358,7 @@ msgid "and"
msgstr "و"
#. ∨ (U+02228), see http://wiki.documentfoundation.org/Emoji
+#. sE8Hr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1233,6 +1368,7 @@ msgid "or"
msgstr "أو"
#. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji
+#. 6C6CC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1242,6 +1378,7 @@ msgid "intersection"
msgstr "تقاطع"
#. ∪ (U+0222A), see http://wiki.documentfoundation.org/Emoji
+#. hHXFt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1251,6 +1388,7 @@ msgid "union"
msgstr "اتحاد"
#. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji
+#. xvC96
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1260,6 +1398,7 @@ msgid "integral"
msgstr "تكامل"
#. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji
+#. oht6X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1269,6 +1408,7 @@ msgid "integral2"
msgstr "تكامل2"
#. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji
+#. WdFpx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1278,6 +1418,7 @@ msgid "integral3"
msgstr "تكامل3"
#. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji
+#. qNHWc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1287,6 +1428,7 @@ msgid "integral4"
msgstr "تكامل4"
#. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji
+#. 6cv3C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1296,6 +1438,7 @@ msgid "integral5"
msgstr "تكامل5"
#. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji
+#. mijSG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1305,6 +1448,7 @@ msgid "~"
msgstr "~"
#. ≠ (U+02260), see http://wiki.documentfoundation.org/Emoji
+#. gK9ZL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1314,6 +1458,7 @@ msgid "not equal"
msgstr "لا يساوي"
#. ≤ (U+02264), see http://wiki.documentfoundation.org/Emoji
+#. jEWTt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1323,6 +1468,7 @@ msgid "<="
msgstr "<="
#. ≥ (U+02265), see http://wiki.documentfoundation.org/Emoji
+#. Ak74B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1332,6 +1478,7 @@ msgid ">="
msgstr ">="
#. ≪ (U+0226A), see http://wiki.documentfoundation.org/Emoji
+#. FzAJY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1341,6 +1488,7 @@ msgid "<<"
msgstr "<<"
#. ≫ (U+0226B), see http://wiki.documentfoundation.org/Emoji
+#. uDGD2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1350,6 +1498,7 @@ msgid ">>"
msgstr ">>"
#. ⊂ (U+02282), see http://wiki.documentfoundation.org/Emoji
+#. j3BAn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1359,6 +1508,7 @@ msgid "subset"
msgstr "مجموعة جزئية"
#. ⊃ (U+02283), see http://wiki.documentfoundation.org/Emoji
+#. DDtiS
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -1369,6 +1519,7 @@ msgid "superset"
msgstr "مجموعة فائقة"
#. ⊄ (U+02284), see http://wiki.documentfoundation.org/Emoji
+#. Cu7Uj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1378,6 +1529,7 @@ msgid "not subset"
msgstr "ليس مجموعة جزئية"
#. ⊅ (U+02285), see http://wiki.documentfoundation.org/Emoji
+#. apBbH
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -1388,6 +1540,7 @@ msgid "not superset"
msgstr "ليس مجموعة جزئية"
#. ⊿ (U+022BF), see http://wiki.documentfoundation.org/Emoji
+#. zPtvC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1397,6 +1550,7 @@ msgid "right triangle"
msgstr "مثلث قائم"
#. ⌚ (U+0231A), see http://wiki.documentfoundation.org/Emoji
+#. E3KP2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1406,6 +1560,7 @@ msgid "watch"
msgstr "ساعة"
#. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji
+#. 3VpUE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1415,6 +1570,7 @@ msgid "hourglass"
msgstr "ساعة رملية"
#. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji
+#. jrRFT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1424,6 +1580,7 @@ msgid "keyboard"
msgstr "لوحة مفاتيح"
#. ⏢ (U+023E2), see http://wiki.documentfoundation.org/Emoji
+#. MwTaz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1433,6 +1590,7 @@ msgid "trapezium"
msgstr "شبه منحرف"
#. ⏰ (U+023F0), see http://wiki.documentfoundation.org/Emoji
+#. PV9xg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1442,6 +1600,7 @@ msgid "alarm clock"
msgstr "منبه"
#. ⏱ (U+023F1), see http://wiki.documentfoundation.org/Emoji
+#. EbWLg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1451,6 +1610,7 @@ msgid "stopwatch"
msgstr "مؤقت"
#. ⏲ (U+023F2), see http://wiki.documentfoundation.org/Emoji
+#. 9sxN9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1460,6 +1620,7 @@ msgid "timer clock"
msgstr "ساعة وقتية"
#. ⏳ (U+023F3), see http://wiki.documentfoundation.org/Emoji
+#. edBNy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1469,6 +1630,7 @@ msgid "hourglass2"
msgstr "ساعة رملية2"
#. ■ (U+025A0), see http://wiki.documentfoundation.org/Emoji
+#. VdDNs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1478,6 +1640,7 @@ msgid "square2"
msgstr "مربع2"
#. □ (U+025A1), see http://wiki.documentfoundation.org/Emoji
+#. BAvfy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1487,6 +1650,7 @@ msgid "square"
msgstr "مربع"
#. ▪ (U+025AA), see http://wiki.documentfoundation.org/Emoji
+#. bYMxf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1496,6 +1660,7 @@ msgid "small square2"
msgstr "مربع صغير2"
#. ▫ (U+025AB), see http://wiki.documentfoundation.org/Emoji
+#. 4LWyj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1505,6 +1670,7 @@ msgid "small square"
msgstr "مربع صغير"
#. ▬ (U+025AC), see http://wiki.documentfoundation.org/Emoji
+#. E9UCs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1514,6 +1680,7 @@ msgid "rectangle2"
msgstr "مستطيل2"
#. ▭ (U+025AD), see http://wiki.documentfoundation.org/Emoji
+#. dCXPA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1523,6 +1690,7 @@ msgid "rectangle"
msgstr "مستطيل"
#. ▰ (U+025B0), see http://wiki.documentfoundation.org/Emoji
+#. ETzJE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1532,6 +1700,7 @@ msgid "parallelogram2"
msgstr "متوازي أضلاع2"
#. ▱ (U+025B1), see http://wiki.documentfoundation.org/Emoji
+#. JC7i2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1541,6 +1710,7 @@ msgid "parallelogram"
msgstr "متوازي أضلاع"
#. ▲ (U+025B2), see http://wiki.documentfoundation.org/Emoji
+#. yfgb2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1550,6 +1720,7 @@ msgid "triangle2"
msgstr "مثلث2"
#. △ (U+025B3), see http://wiki.documentfoundation.org/Emoji
+#. xFfmk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1559,6 +1730,7 @@ msgid "triangle"
msgstr "مثلث"
#. ◊ (U+025CA), see http://wiki.documentfoundation.org/Emoji
+#. PvWst
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1568,6 +1740,7 @@ msgid "lozenge"
msgstr "معين"
#. ○ (U+025CB), see http://wiki.documentfoundation.org/Emoji
+#. fUfvU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1577,6 +1750,7 @@ msgid "circle"
msgstr "دائرة"
#. ● (U+025CF), see http://wiki.documentfoundation.org/Emoji
+#. 7DAcp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1586,6 +1760,7 @@ msgid "circle2"
msgstr "دائرة2"
#. ◦ (U+025E6), see http://wiki.documentfoundation.org/Emoji
+#. gGBsw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1595,6 +1770,7 @@ msgid "bullet3"
msgstr "رصاصة3"
#. ◯ (U+025EF), see http://wiki.documentfoundation.org/Emoji
+#. RQ8e6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1604,6 +1780,7 @@ msgid "large circle"
msgstr "دائرة كبيرة"
#. ◻ (U+025FB), see http://wiki.documentfoundation.org/Emoji
+#. YyTqp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1613,6 +1790,7 @@ msgid "medium square"
msgstr "مربع متوسط"
#. ◼ (U+025FC), see http://wiki.documentfoundation.org/Emoji
+#. Uf3gH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1622,6 +1800,7 @@ msgid "medium square2"
msgstr "مربع متوسط2"
#. ◽ (U+025FD), see http://wiki.documentfoundation.org/Emoji
+#. k9E4v
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1631,6 +1810,7 @@ msgid "smaller square"
msgstr "مربع أصغر"
#. ◾ (U+025FE), see http://wiki.documentfoundation.org/Emoji
+#. ovChE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1640,6 +1820,7 @@ msgid "smaller square2"
msgstr "مربع أصغر2"
#. ☀ (U+02600), see http://wiki.documentfoundation.org/Emoji
+#. M2FkQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1649,6 +1830,7 @@ msgid "sunny"
msgstr "مشمس"
#. ☁ (U+02601), see http://wiki.documentfoundation.org/Emoji
+#. 5vNMi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1658,6 +1840,7 @@ msgid "cloud"
msgstr "غائم"
#. ☂ (U+02602), see http://wiki.documentfoundation.org/Emoji
+#. NH9jD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1667,6 +1850,7 @@ msgid "umbrella"
msgstr "مظلة"
#. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji
+#. RA9bd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1676,6 +1860,7 @@ msgid "snowman"
msgstr "رجل ثلج"
#. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji
+#. W63n6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1685,6 +1870,7 @@ msgid "comet"
msgstr "مذنب"
#. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji
+#. AnBmJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1694,6 +1880,7 @@ msgid "star"
msgstr "نجمة"
#. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji
+#. WERW8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1703,6 +1890,7 @@ msgid "star2"
msgstr "نجمة2"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
+#. KiEUc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1712,6 +1900,7 @@ msgid "lightning3"
msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
+#. Bd27c
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1721,6 +1910,7 @@ msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
+#. TJJbm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1730,6 +1920,7 @@ msgid "Sun"
msgstr "الشمس"
#. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji
+#. dgVDD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1739,6 +1930,7 @@ msgid "phone"
msgstr "هاتف"
#. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji
+#. gLfBj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1748,6 +1940,7 @@ msgid "phone2"
msgstr "هاتف2"
#. ☐ (U+02610), see http://wiki.documentfoundation.org/Emoji
+#. Pwd6y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1757,6 +1950,7 @@ msgid "checkbox"
msgstr "مربع تأشير"
#. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji
+#. g5A4j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1766,6 +1960,7 @@ msgid "checkbox2"
msgstr "مربع تأشير2"
#. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji
+#. WCu8C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1775,6 +1970,7 @@ msgid "checkbox3"
msgstr "مربع تأشير3"
#. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji
+#. XgRVb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1784,6 +1980,7 @@ msgid "saltire"
msgstr ""
#. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji
+#. tAK2C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1793,6 +1990,7 @@ msgid "rain"
msgstr "مطر"
#. ☕ (U+02615), see http://wiki.documentfoundation.org/Emoji
+#. aPUY3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1802,6 +2000,7 @@ msgid "coffee"
msgstr "قهوة"
#. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji
+#. HCAHj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1811,6 +2010,7 @@ msgid "left3"
msgstr "يسار3"
#. ☛ (U+0261B), see http://wiki.documentfoundation.org/Emoji
+#. Joh5w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1820,6 +2020,7 @@ msgid "right3"
msgstr "يمين3"
#. ☜ (U+0261C), see http://wiki.documentfoundation.org/Emoji
+#. GVrVz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1829,6 +2030,7 @@ msgid "left"
msgstr "يسار"
#. ☝ (U+0261D), see http://wiki.documentfoundation.org/Emoji
+#. gqhNE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1838,6 +2040,7 @@ msgid "up"
msgstr "أعلى"
#. ☞ (U+0261E), see http://wiki.documentfoundation.org/Emoji
+#. ht3yv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1847,6 +2050,7 @@ msgid "right"
msgstr "يمين"
#. ☟ (U+0261F), see http://wiki.documentfoundation.org/Emoji
+#. x8Gff
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1856,6 +2060,7 @@ msgid "down"
msgstr "أسفل"
#. ☠ (U+02620), see http://wiki.documentfoundation.org/Emoji
+#. 5vDqS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1865,6 +2070,7 @@ msgid "poison"
msgstr "سم"
#. ☡ (U+02621), see http://wiki.documentfoundation.org/Emoji
+#. oC9id
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1874,6 +2080,7 @@ msgid "caution"
msgstr "احترس"
#. ☢ (U+02622), see http://wiki.documentfoundation.org/Emoji
+#. SjHNN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1883,6 +2090,7 @@ msgid "radioactive"
msgstr "نشاط إشعاعي"
#. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji
+#. FEuBp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1892,6 +2100,7 @@ msgid "biohazard"
msgstr "خطر بيولوجي"
#. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji
+#. chcF5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1901,6 +2110,7 @@ msgid "caduceus"
msgstr "عصا هرمس"
#. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji
+#. 4aqGx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1910,6 +2120,7 @@ msgid "ankh"
msgstr ""
#. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji
+#. Hp2AS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1919,6 +2130,7 @@ msgid "orthodox cross"
msgstr "صليب أرثوذكسي"
#. ☧ (U+02627), see http://wiki.documentfoundation.org/Emoji
+#. PfA83
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1928,6 +2140,7 @@ msgid "chi rho"
msgstr "كاي رو"
#. ☨ (U+02628), see http://wiki.documentfoundation.org/Emoji
+#. L8ArM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1937,6 +2150,7 @@ msgid "cross of Lorraine"
msgstr "صليب لورين"
#. ☩ (U+02629), see http://wiki.documentfoundation.org/Emoji
+#. WorYC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1946,6 +2160,7 @@ msgid "cross of Jerusalem"
msgstr "صليب القدس"
#. ☪ (U+0262A), see http://wiki.documentfoundation.org/Emoji
+#. PCbQx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1955,6 +2170,7 @@ msgid "star and crescent"
msgstr "هلال ونجمة"
#. ☫ (U+0262B), see http://wiki.documentfoundation.org/Emoji
+#. hJ8zc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1964,6 +2180,7 @@ msgid "Farsi"
msgstr "فارسي"
#. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji
+#. n8fgp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1973,6 +2190,7 @@ msgid "Adi Shakti"
msgstr ""
#. ☭ (U+0262D), see http://wiki.documentfoundation.org/Emoji
+#. Ekcos
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1982,6 +2200,7 @@ msgid "hammer and sickle"
msgstr "المطرقة والسندان"
#. ☮ (U+0262E), see http://wiki.documentfoundation.org/Emoji
+#. FGBij
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1991,6 +2210,7 @@ msgid "peace"
msgstr "السلام"
#. ☯ (U+0262F), see http://wiki.documentfoundation.org/Emoji
+#. 4h4sG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2000,6 +2220,7 @@ msgid "yin yang"
msgstr "ين يانغ"
#. ☹ (U+02639), see http://wiki.documentfoundation.org/Emoji
+#. kyxBs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2009,6 +2230,7 @@ msgid "frown"
msgstr "عبسة"
#. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji
+#. XFcMJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2018,6 +2240,7 @@ msgid "smiling"
msgstr "تبسم"
#. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji
+#. HjhDU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2027,6 +2250,7 @@ msgid "smiling2"
msgstr "تبسم2"
#. ☼ (U+0263C), see http://wiki.documentfoundation.org/Emoji
+#. TpjzA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2036,6 +2260,7 @@ msgid "Sun2"
msgstr "الشمس2"
#. ☽ (U+0263D), see http://wiki.documentfoundation.org/Emoji
+#. d9iEk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2045,6 +2270,7 @@ msgid "Moon"
msgstr "القمر"
#. ☾ (U+0263E), see http://wiki.documentfoundation.org/Emoji
+#. 8Lq2B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2054,6 +2280,7 @@ msgid "Moon2"
msgstr "القمر2"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
+#. vyXwC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2063,6 +2290,7 @@ msgid "mercury"
msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
+#. 3qTne
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2072,6 +2300,7 @@ msgid "female"
msgstr "أنثى"
#. ♁ (U+02641), see http://wiki.documentfoundation.org/Emoji
+#. hxxDJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2081,6 +2310,7 @@ msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
+#. UnfqG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2090,6 +2320,7 @@ msgid "male"
msgstr "ذكر"
#. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji
+#. BctwY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2099,6 +2330,7 @@ msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
+#. 2paAD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2108,6 +2340,7 @@ msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
+#. LEDYc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2117,6 +2350,7 @@ msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
+#. 7YHnR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2126,6 +2360,7 @@ msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
+#. DbKfF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2135,6 +2370,7 @@ msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
+#. 3N5E9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2144,6 +2380,7 @@ msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
+#. qpNpL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2153,6 +2390,7 @@ msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
+#. zjpz4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2162,6 +2400,7 @@ msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
+#. L33Eb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2171,6 +2410,7 @@ msgid "cancer"
msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
+#. rQ5fy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2180,6 +2420,7 @@ msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
+#. LjdEF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2189,6 +2430,7 @@ msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
+#. Smwbc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2198,6 +2440,7 @@ msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
+#. E2zBz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2207,6 +2450,7 @@ msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
+#. nAeJN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2216,6 +2460,7 @@ msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
+#. dGRFg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2225,6 +2470,7 @@ msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
+#. 6EsoM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2234,6 +2480,7 @@ msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
+#. eAGFG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2243,6 +2490,7 @@ msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
+#. JcAnb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2252,6 +2500,7 @@ msgid "white king"
msgstr "ملك أبيض"
#. ♕ (U+02655), see http://wiki.documentfoundation.org/Emoji
+#. TM7js
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2261,6 +2510,7 @@ msgid "white queen"
msgstr "وزير أبيض"
#. ♖ (U+02656), see http://wiki.documentfoundation.org/Emoji
+#. GRqXg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2270,6 +2520,7 @@ msgid "white rook"
msgstr "قلعة بيضاء"
#. ♗ (U+02657), see http://wiki.documentfoundation.org/Emoji
+#. p8wfC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2279,6 +2530,7 @@ msgid "white bishop"
msgstr "فيل أبيض"
#. ♘ (U+02658), see http://wiki.documentfoundation.org/Emoji
+#. tWL7E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2288,6 +2540,7 @@ msgid "white knight"
msgstr "حصان أبيض"
#. ♙ (U+02659), see http://wiki.documentfoundation.org/Emoji
+#. mhhoR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2297,6 +2550,7 @@ msgid "white pawn"
msgstr "جندي أبيض"
#. ♚ (U+0265A), see http://wiki.documentfoundation.org/Emoji
+#. Dp6YG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2306,6 +2560,7 @@ msgid "black king"
msgstr "ملك أسود"
#. ♛ (U+0265B), see http://wiki.documentfoundation.org/Emoji
+#. qbeAi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2315,6 +2570,7 @@ msgid "black queen"
msgstr "وزير أسود"
#. ♜ (U+0265C), see http://wiki.documentfoundation.org/Emoji
+#. P4uqB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2324,6 +2580,7 @@ msgid "black rook"
msgstr "قلعة سوداء"
#. ♝ (U+0265D), see http://wiki.documentfoundation.org/Emoji
+#. uCgny
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2333,6 +2590,7 @@ msgid "black bishop"
msgstr "فيل أسود"
#. ♞ (U+0265E), see http://wiki.documentfoundation.org/Emoji
+#. qjARs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2342,6 +2600,7 @@ msgid "black knight"
msgstr "حصان أسود"
#. ♟ (U+0265F), see http://wiki.documentfoundation.org/Emoji
+#. rmVZS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2351,6 +2610,7 @@ msgid "black pawn"
msgstr "جندي أسود"
#. ♠ (U+02660), see http://wiki.documentfoundation.org/Emoji
+#. uvboC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2360,6 +2620,7 @@ msgid "spades"
msgstr "البستوني"
#. ♡ (U+02661), see http://wiki.documentfoundation.org/Emoji
+#. t43iF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2369,6 +2630,7 @@ msgid "hearts2"
msgstr "الكبة2"
#. ♢ (U+02662), see http://wiki.documentfoundation.org/Emoji
+#. GeSFL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2378,6 +2640,7 @@ msgid "diamonds2"
msgstr "الديناري2"
#. ♣ (U+02663), see http://wiki.documentfoundation.org/Emoji
+#. pYFJB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2387,6 +2650,7 @@ msgid "clubs"
msgstr "السباتي"
#. ♤ (U+02664), see http://wiki.documentfoundation.org/Emoji
+#. dajk8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2396,6 +2660,7 @@ msgid "spades2"
msgstr "البستوني2"
#. ♥ (U+02665), see http://wiki.documentfoundation.org/Emoji
+#. qE59E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2405,6 +2670,7 @@ msgid "hearts"
msgstr "الكبة"
#. ♦ (U+02666), see http://wiki.documentfoundation.org/Emoji
+#. gKSGj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2414,6 +2680,7 @@ msgid "diamonds"
msgstr "الديناري"
#. ♧ (U+02667), see http://wiki.documentfoundation.org/Emoji
+#. wRCzA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2423,6 +2690,7 @@ msgid "clubs2"
msgstr "السباتي2"
#. ♨ (U+02668), see http://wiki.documentfoundation.org/Emoji
+#. vEME9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2432,6 +2700,7 @@ msgid "hot springs"
msgstr "ينابيع حارة"
#. ♩ (U+02669), see http://wiki.documentfoundation.org/Emoji
+#. 3Epzr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2441,6 +2710,7 @@ msgid "note"
msgstr "نغمة"
#. ♪ (U+0266A), see http://wiki.documentfoundation.org/Emoji
+#. wFCxA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2450,6 +2720,7 @@ msgid "note2"
msgstr "نغمة2"
#. ♫ (U+0266B), see http://wiki.documentfoundation.org/Emoji
+#. Zkjwm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2459,6 +2730,7 @@ msgid "notes"
msgstr "نغمات"
#. ♬ (U+0266C), see http://wiki.documentfoundation.org/Emoji
+#. MHiAq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2468,6 +2740,7 @@ msgid "notes2"
msgstr "نغمات2"
#. ♭ (U+0266D), see http://wiki.documentfoundation.org/Emoji
+#. hDksD
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2478,6 +2751,7 @@ msgid "flat"
msgstr "علم"
#. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji
+#. 2wECE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2487,6 +2761,7 @@ msgid "natural"
msgstr "طبيعي"
#. ♯ (U+0266F), see http://wiki.documentfoundation.org/Emoji
+#. gr9EM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2496,6 +2771,7 @@ msgid "sharp"
msgstr ""
#. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji
+#. VWtWv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2505,6 +2781,7 @@ msgid "recycling"
msgstr "إعادة تدوير"
#. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji
+#. SWE9X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2514,6 +2791,7 @@ msgid "recycling2"
msgstr "إعادة تدوير2"
#. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji
+#. 9FCXo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2523,6 +2801,7 @@ msgid "recycled paper"
msgstr "ورقة معاد تدويرها"
#. ♾ (U+0267E), see http://wiki.documentfoundation.org/Emoji
+#. eH5KB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2532,6 +2811,7 @@ msgid "permanent paper"
msgstr "ورقة دائمة"
#. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji
+#. RqE6D
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2541,6 +2821,7 @@ msgid "wheelchair"
msgstr "كرسي بعجلات"
#. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji
+#. BcbKe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2550,6 +2831,7 @@ msgid "dice1"
msgstr "نرد1"
#. ⚁ (U+02681), see http://wiki.documentfoundation.org/Emoji
+#. QytA9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2559,6 +2841,7 @@ msgid "dice2"
msgstr "نرد2"
#. ⚂ (U+02682), see http://wiki.documentfoundation.org/Emoji
+#. fM5fU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2568,6 +2851,7 @@ msgid "dice3"
msgstr "نرد3"
#. ⚃ (U+02683), see http://wiki.documentfoundation.org/Emoji
+#. pEPa2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2577,6 +2861,7 @@ msgid "dice4"
msgstr "نرد4"
#. ⚄ (U+02684), see http://wiki.documentfoundation.org/Emoji
+#. 6iVDd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2586,6 +2871,7 @@ msgid "dice5"
msgstr "نرد5"
#. ⚅ (U+02685), see http://wiki.documentfoundation.org/Emoji
+#. BXiNG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2595,6 +2881,7 @@ msgid "dice6"
msgstr "نرد6"
#. ⚐ (U+02690), see http://wiki.documentfoundation.org/Emoji
+#. FAqot
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2604,6 +2891,7 @@ msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
+#. fc3Gb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2613,6 +2901,7 @@ msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
+#. BTmxe
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2623,6 +2912,7 @@ msgid "hammer and pick"
msgstr "المطرقة والإزميل"
#. ⚓ (U+02693), see http://wiki.documentfoundation.org/Emoji
+#. GMsHG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2632,6 +2922,7 @@ msgid "anchor"
msgstr "مرساة"
#. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji
+#. Wx5rd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2641,6 +2932,7 @@ msgid "swords"
msgstr "سيوف"
#. ⚕ (U+02695), see http://wiki.documentfoundation.org/Emoji
+#. YYDuu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2650,6 +2942,7 @@ msgid "medical"
msgstr "طبي"
#. ⚖ (U+02696), see http://wiki.documentfoundation.org/Emoji
+#. eFRLH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2659,6 +2952,7 @@ msgid "scales"
msgstr "ميزان"
#. ⚗ (U+02697), see http://wiki.documentfoundation.org/Emoji
+#. bwJmD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2668,6 +2962,7 @@ msgid "alembic"
msgstr "إمبيق"
#. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji
+#. LAQtt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2677,6 +2972,7 @@ msgid "flower"
msgstr "زهرة"
#. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji
+#. cw6G2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2686,6 +2982,7 @@ msgid "gear"
msgstr "ترس"
#. ⚚ (U+0269A), see http://wiki.documentfoundation.org/Emoji
+#. gMDNC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2695,6 +2992,7 @@ msgid "staff"
msgstr ""
#. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji
+#. B96CG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2704,6 +3002,7 @@ msgid "atom"
msgstr "ذرّة"
#. ⚜ (U+0269C), see http://wiki.documentfoundation.org/Emoji
+#. 4BEEo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2713,6 +3012,7 @@ msgid "fleur de lis"
msgstr "زهرة زنبق"
#. ⚠ (U+026A0), see http://wiki.documentfoundation.org/Emoji
+#. QjFwh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2722,6 +3022,7 @@ msgid "warning"
msgstr "تحذير"
#. ⚡ (U+026A1), see http://wiki.documentfoundation.org/Emoji
+#. fXBh2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2731,6 +3032,7 @@ msgid "zap"
msgstr ""
#. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji
+#. 9FWWA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2740,6 +3042,7 @@ msgid "white circle"
msgstr "دائرة بيضاء"
#. ⚫ (U+026AB), see http://wiki.documentfoundation.org/Emoji
+#. jQGGR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2749,6 +3052,7 @@ msgid "black circle"
msgstr "دائرة سوداء"
#. ⚭ (U+026AD), see http://wiki.documentfoundation.org/Emoji
+#. o9oHP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2758,6 +3062,7 @@ msgid "marriage"
msgstr "زواج"
#. ⚮ (U+026AE), see http://wiki.documentfoundation.org/Emoji
+#. jXs4X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2767,6 +3072,7 @@ msgid "divorce"
msgstr "طلاق"
#. ⚰ (U+026B0), see http://wiki.documentfoundation.org/Emoji
+#. JDx7T
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2776,6 +3082,7 @@ msgid "coffin"
msgstr "تابوت"
#. ⚱ (U+026B1), see http://wiki.documentfoundation.org/Emoji
+#. huKvE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2785,6 +3092,7 @@ msgid "urn"
msgstr "جرة"
#. ⚽ (U+026BD), see http://wiki.documentfoundation.org/Emoji
+#. JTA8e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2794,6 +3102,7 @@ msgid "soccer"
msgstr "كرة قدم"
#. ⚾ (U+026BE), see http://wiki.documentfoundation.org/Emoji
+#. xFBA5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2803,6 +3112,7 @@ msgid "baseball"
msgstr "كرة القاعدة"
#. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji
+#. CCTQA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2812,6 +3122,7 @@ msgid "snowman2"
msgstr "رجل ثلج2"
#. ⛅ (U+026C5), see http://wiki.documentfoundation.org/Emoji
+#. xw3m7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2821,6 +3132,7 @@ msgid "cloud2"
msgstr "غائم2"
#. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji
+#. A5yxX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2830,6 +3142,7 @@ msgid "rain2"
msgstr "مطر2"
#. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji
+#. nBeDn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2839,6 +3152,7 @@ msgid "cloud3"
msgstr "غائم3"
#. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji
+#. RmxAt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2848,6 +3162,7 @@ msgid "ophiuchus"
msgstr ""
#. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji
+#. ESYDq
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2858,6 +3173,7 @@ msgid "pick"
msgstr "اختر"
#. ⛐ (U+026D0), see http://wiki.documentfoundation.org/Emoji
+#. e5D4p
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2867,6 +3183,7 @@ msgid "sliding car"
msgstr "سيارة منزلقة"
#. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji
+#. BoTPo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2876,6 +3193,7 @@ msgid "helmet"
msgstr "خوذة"
#. ⛓ (U+026D3), see http://wiki.documentfoundation.org/Emoji
+#. BUgLe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2885,6 +3203,7 @@ msgid "chains"
msgstr "سلاسل"
#. ⛔ (U+026D4), see http://wiki.documentfoundation.org/Emoji
+#. 2MaDN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2894,6 +3213,7 @@ msgid "no entry"
msgstr "ممنوع الدخول"
#. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji
+#. NBJ9F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2903,6 +3223,7 @@ msgid "truck"
msgstr "شاحنة"
#. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji
+#. ScAbG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2912,6 +3233,7 @@ msgid "pentagram"
msgstr "نجمة خماسية"
#. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji
+#. M7ovy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2921,6 +3243,7 @@ msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
+#. gFz3j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2930,6 +3253,7 @@ msgid "church"
msgstr "كنيسة"
#. ⛰ (U+026F0), see http://wiki.documentfoundation.org/Emoji
+#. An5FF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2939,6 +3263,7 @@ msgid "mountain"
msgstr "جبل"
#. ⛱ (U+026F1), see http://wiki.documentfoundation.org/Emoji
+#. 6HqeN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2948,6 +3273,7 @@ msgid "umbrella3"
msgstr "مظلة3"
#. ⛲ (U+026F2), see http://wiki.documentfoundation.org/Emoji
+#. 5EUJX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2957,6 +3283,7 @@ msgid "fountain"
msgstr "نافورة"
#. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji
+#. GkdBn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2966,6 +3293,7 @@ msgid "golf2"
msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
+#. GLtJt
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2976,6 +3304,7 @@ msgid "ferry"
msgstr "عبارة"
#. ⛵ (U+026F5), see http://wiki.documentfoundation.org/Emoji
+#. H6AR2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2985,6 +3314,7 @@ msgid "sailboat"
msgstr "مركب شراعي"
#. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji
+#. 3DsFA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2994,6 +3324,7 @@ msgid "tent"
msgstr "خيمة"
#. ⛷ (U+026F7), see http://wiki.documentfoundation.org/Emoji
+#. vDnif
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3003,6 +3334,7 @@ msgid "skier"
msgstr "متزحلق"
#. ⛸ (U+026F8), see http://wiki.documentfoundation.org/Emoji
+#. jsVHG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3012,6 +3344,7 @@ msgid "skate"
msgstr "متزلج"
#. ⛹ (U+026F9), see http://wiki.documentfoundation.org/Emoji
+#. FRKEE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3021,6 +3354,7 @@ msgid "ball"
msgstr "كرة"
#. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji
+#. aJYuZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3030,6 +3364,7 @@ msgid "fuelpump"
msgstr "مضخة وقود"
#. ✁ (U+02701), see http://wiki.documentfoundation.org/Emoji
+#. cfZQA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3039,6 +3374,7 @@ msgid "scissors3"
msgstr "مقص3"
#. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji
+#. xEcJE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3048,6 +3384,7 @@ msgid "scissors"
msgstr "مقص"
#. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji
+#. ssfwc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3057,6 +3394,7 @@ msgid "scissors4"
msgstr "مقص4"
#. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji
+#. xc6qH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3066,6 +3404,7 @@ msgid "scissors2"
msgstr "مقص2"
#. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji
+#. jBAFG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3075,6 +3414,7 @@ msgid "check mark3"
msgstr "علامة تأشير3"
#. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji
+#. E8J8A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3084,6 +3424,7 @@ msgid "telephone"
msgstr "مكالمة"
#. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji
+#. FEQAH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3093,6 +3434,7 @@ msgid "airplane"
msgstr "طائرة"
#. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji
+#. MSzMa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3102,6 +3444,7 @@ msgid "envelope"
msgstr "ظرف"
#. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji
+#. 387gN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3111,6 +3454,7 @@ msgid "fist"
msgstr "قبضة"
#. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji
+#. crTfj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3120,6 +3464,7 @@ msgid "hand"
msgstr "يد"
#. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji
+#. rxEfQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3129,6 +3474,7 @@ msgid "victory"
msgstr "النصر"
#. ✍ (U+0270D), see http://wiki.documentfoundation.org/Emoji
+#. peWuK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3138,6 +3484,7 @@ msgid "writing"
msgstr "كتابة"
#. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji
+#. Be5Dk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3147,6 +3494,7 @@ msgid "pencil"
msgstr "قلم رصاص"
#. ✏ (U+0270F), see http://wiki.documentfoundation.org/Emoji
+#. g9bBy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3156,6 +3504,7 @@ msgid "pencil2"
msgstr "قلم رصاص2"
#. ✐ (U+02710), see http://wiki.documentfoundation.org/Emoji
+#. LuQwT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3165,6 +3514,7 @@ msgid "pencil3"
msgstr "قلم رصاص3"
#. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji
+#. sS5kP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3174,6 +3524,7 @@ msgid "nib"
msgstr "ريشة كتابة"
#. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji
+#. vbpZB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3183,6 +3534,7 @@ msgid "nib2"
msgstr "ريشة كتابة2"
#. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji
+#. CjjoU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3192,6 +3544,7 @@ msgid "check mark"
msgstr "علامة تأشير"
#. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji
+#. ECpTG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3201,6 +3554,7 @@ msgid "check mark2"
msgstr "علامة تأشير2"
#. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji
+#. krEhs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3210,6 +3564,7 @@ msgid "times2"
msgstr "ضرب2"
#. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji
+#. 8dNKN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3219,6 +3574,7 @@ msgid "Greek cross2"
msgstr "صليب يوناني2"
#. ✚ (U+0271A), see http://wiki.documentfoundation.org/Emoji
+#. BtCjS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3228,6 +3584,7 @@ msgid "Greek cross"
msgstr "صليب يوناني"
#. ✝ (U+0271D), see http://wiki.documentfoundation.org/Emoji
+#. dX9La
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3237,6 +3594,7 @@ msgid "Latin cross"
msgstr "صليب لاتيني"
#. ✠ (U+02720), see http://wiki.documentfoundation.org/Emoji
+#. SRNJ4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3246,6 +3604,7 @@ msgid "Maltese cross"
msgstr "صليب مالطي"
#. ✡ (U+02721), see http://wiki.documentfoundation.org/Emoji
+#. HqQC5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3255,6 +3614,7 @@ msgid "star of David"
msgstr "نجمة داوود"
#. ✨ (U+02728), see http://wiki.documentfoundation.org/Emoji
+#. 8jFfg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3264,6 +3624,7 @@ msgid "sparkles"
msgstr "بريق"
#. ❄ (U+02744), see http://wiki.documentfoundation.org/Emoji
+#. cfDE7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3273,6 +3634,7 @@ msgid "snowflake"
msgstr "ندفة ثلج"
#. ❇ (U+02747), see http://wiki.documentfoundation.org/Emoji
+#. eKCo6
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3283,6 +3645,7 @@ msgid "sparkle"
msgstr "بريق"
#. ❌ (U+0274C), see http://wiki.documentfoundation.org/Emoji
+#. Winhg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3292,6 +3655,7 @@ msgid "x2"
msgstr "x2"
#. ❎ (U+0274E), see http://wiki.documentfoundation.org/Emoji
+#. 5mbLT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3301,6 +3665,7 @@ msgid "x3"
msgstr "x3"
#. ❓ (U+02753), see http://wiki.documentfoundation.org/Emoji
+#. KpGSR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3310,6 +3675,7 @@ msgid "?"
msgstr "؟"
#. ❔ (U+02754), see http://wiki.documentfoundation.org/Emoji
+#. E372z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3319,6 +3685,7 @@ msgid "?2"
msgstr "؟2"
#. ❕ (U+02755), see http://wiki.documentfoundation.org/Emoji
+#. CUfKq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3328,6 +3695,7 @@ msgid "!"
msgstr "!"
#. ❗ (U+02757), see http://wiki.documentfoundation.org/Emoji
+#. WvFdp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3337,6 +3705,7 @@ msgid "!2"
msgstr "!2"
#. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji
+#. jEJbE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3346,6 +3715,7 @@ msgid "heart"
msgstr "قلب"
#. ➰ (U+027B0), see http://wiki.documentfoundation.org/Emoji
+#. 9L5EP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3355,6 +3725,7 @@ msgid "loop"
msgstr "حلقة"
#. ➿ (U+027BF), see http://wiki.documentfoundation.org/Emoji
+#. DSXDM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3364,6 +3735,7 @@ msgid "loop2"
msgstr "حلقة2"
#. ⬛ (U+02B1B), see http://wiki.documentfoundation.org/Emoji
+#. WwYcT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3373,6 +3745,7 @@ msgid "large square2"
msgstr "مربع كبير2"
#. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji
+#. HrBFD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3382,6 +3755,7 @@ msgid "large square"
msgstr "مربع كبير"
#. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji
+#. hRTAZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3391,6 +3765,7 @@ msgid "pentagon2"
msgstr "خماسي2"
#. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji
+#. g2gFC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3400,6 +3775,7 @@ msgid "pentagon"
msgstr "خماسي"
#. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji
+#. 2UACw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3409,6 +3785,7 @@ msgid "hexagon"
msgstr "سداسي"
#. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji
+#. uqRGB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3418,6 +3795,7 @@ msgid "hexagon2"
msgstr "سداسي2"
#. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji
+#. 4BwK8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3427,6 +3805,7 @@ msgid "large circle2"
msgstr "دائرة كبيرة2"
#. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji
+#. gVrZC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3436,6 +3815,7 @@ msgid "ellipse"
msgstr "بيضوي"
#. ⭐ (U+02B50), see http://wiki.documentfoundation.org/Emoji
+#. L5Q2X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3445,6 +3825,7 @@ msgid "medium star"
msgstr "نجمة متوسطة"
#. ⭑ (U+02B51), see http://wiki.documentfoundation.org/Emoji
+#. TSBfG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3454,6 +3835,7 @@ msgid "small star2"
msgstr "نجمة صغيرة2"
#. ⭒ (U+02B52), see http://wiki.documentfoundation.org/Emoji
+#. tqdLm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3463,6 +3845,7 @@ msgid "small star"
msgstr "نجمة صغيرة"
#. ff (U+0FB00), see http://wiki.documentfoundation.org/Emoji
+#. 9ER38
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3472,6 +3855,7 @@ msgid "ff"
msgstr ""
#. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji
+#. neMhY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3481,6 +3865,7 @@ msgid "fi"
msgstr ""
#. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji
+#. ym9RA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3490,6 +3875,7 @@ msgid "fl"
msgstr ""
#. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji
+#. HA2oJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3499,6 +3885,7 @@ msgid "ffi"
msgstr ""
#. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji
+#. LcntK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3508,6 +3895,7 @@ msgid "ffl"
msgstr ""
#. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji
+#. 6CVtL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3517,6 +3905,7 @@ msgid "clef"
msgstr "مفتاح موسيقي"
#. 𝄪 (U+1D12A), see http://wiki.documentfoundation.org/Emoji
+#. FJAMw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3526,6 +3915,7 @@ msgid "double sharp"
msgstr ""
#. 𝄫 (U+1D12B), see http://wiki.documentfoundation.org/Emoji
+#. 7ADGW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3535,6 +3925,7 @@ msgid "double flat"
msgstr ""
#. 𝄻 (U+1D13B), see http://wiki.documentfoundation.org/Emoji
+#. DdcM2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3544,6 +3935,7 @@ msgid "whole rest"
msgstr ""
#. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji
+#. BUYwU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3553,6 +3945,7 @@ msgid "half rest"
msgstr ""
#. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji
+#. gqJAB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3562,6 +3955,7 @@ msgid "quarter rest"
msgstr ""
#. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji
+#. ktK5s
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3571,6 +3965,7 @@ msgid "eighth rest"
msgstr ""
#. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji
+#. bbrCH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3580,6 +3975,7 @@ msgid "whole note"
msgstr ""
#. 𝅗𝅥 (U+1D15E), see http://wiki.documentfoundation.org/Emoji
+#. RBhrQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3589,6 +3985,7 @@ msgid "half note"
msgstr ""
#. 𝅘𝅥 (U+1D15F), see http://wiki.documentfoundation.org/Emoji
+#. ysAGf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3598,6 +3995,7 @@ msgid "quarter note"
msgstr ""
#. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji
+#. VPWEh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3607,6 +4005,7 @@ msgid "eighth note"
msgstr ""
#. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji
+#. i3m8B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3616,6 +4015,7 @@ msgid "sixteenth note"
msgstr ""
#. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji
+#. txbRc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3625,6 +4025,7 @@ msgid "mahjong"
msgstr "ماجونغ"
#. 🁠 (U+1F060), see http://wiki.documentfoundation.org/Emoji
+#. vkYJP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3634,6 +4035,7 @@ msgid "domino"
msgstr "دومينو"
#. 🂡 (U+1F0A1), see http://wiki.documentfoundation.org/Emoji
+#. FWHRC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3643,6 +4045,7 @@ msgid "ace"
msgstr "أص"
#. 🂫 (U+1F0AB), see http://wiki.documentfoundation.org/Emoji
+#. TQAX3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3652,6 +4055,7 @@ msgid "jack"
msgstr "وزير"
#. 🂭 (U+1F0AD), see http://wiki.documentfoundation.org/Emoji
+#. 5xGEk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3661,6 +4065,7 @@ msgid "queen"
msgstr "ملكة"
#. 🂮 (U+1F0AE), see http://wiki.documentfoundation.org/Emoji
+#. CdrE2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3670,6 +4075,7 @@ msgid "king"
msgstr "ملك"
#. 🃏 (U+1F0CF), see http://wiki.documentfoundation.org/Emoji
+#. 2CYz7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3679,6 +4085,7 @@ msgid "joker"
msgstr "جوكر"
#. 🌀 (U+1F300), see http://wiki.documentfoundation.org/Emoji
+#. eNZwQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3688,6 +4095,7 @@ msgid "cyclone"
msgstr "إعصار"
#. 🌁 (U+1F301), see http://wiki.documentfoundation.org/Emoji
+#. E3AiK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3697,6 +4105,7 @@ msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
+#. LFEnJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3706,6 +4115,7 @@ msgid "umbrella2"
msgstr "مظلة2"
#. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji
+#. VGPCt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3715,6 +4125,7 @@ msgid "night"
msgstr "ليل"
#. 🌄 (U+1F304), see http://wiki.documentfoundation.org/Emoji
+#. xwX5z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3724,6 +4135,7 @@ msgid "sunrise2"
msgstr "شروق شمس2"
#. 🌅 (U+1F305), see http://wiki.documentfoundation.org/Emoji
+#. DFQNE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3733,6 +4145,7 @@ msgid "sunrise"
msgstr "شروق شمس"
#. 🌆 (U+1F306), see http://wiki.documentfoundation.org/Emoji
+#. EjsTC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3742,6 +4155,7 @@ msgid "sunset"
msgstr "غروب"
#. 🌇 (U+1F307), see http://wiki.documentfoundation.org/Emoji
+#. 8BthL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3751,6 +4165,7 @@ msgid "sunrise3"
msgstr "شروق شمس3"
#. 🌈 (U+1F308), see http://wiki.documentfoundation.org/Emoji
+#. ygxkm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3760,6 +4175,7 @@ msgid "rainbow"
msgstr "قوس المطر"
#. 🌉 (U+1F309), see http://wiki.documentfoundation.org/Emoji
+#. V7CPB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3769,6 +4185,7 @@ msgid "bridge"
msgstr "جسر"
#. 🌊 (U+1F30A), see http://wiki.documentfoundation.org/Emoji
+#. DEJFX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3778,6 +4195,7 @@ msgid "ocean"
msgstr "محيط"
#. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji
+#. GbZVy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3787,6 +4205,7 @@ msgid "volcano"
msgstr "بركان"
#. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji
+#. yZBGc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3796,6 +4215,7 @@ msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
+#. f53Lu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3805,6 +4225,7 @@ msgid "globe"
msgstr "كرة أرضية"
#. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji
+#. AutYx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3814,6 +4235,7 @@ msgid "globe2"
msgstr "كرة أرضية2"
#. 🌏 (U+1F30F), see http://wiki.documentfoundation.org/Emoji
+#. ACoLQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3823,6 +4245,7 @@ msgid "globe3"
msgstr "كرة أرضية3"
#. 🌐 (U+1F310), see http://wiki.documentfoundation.org/Emoji
+#. JjMAs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3832,6 +4255,7 @@ msgid "globe4"
msgstr "كرة أرضية4"
#. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji
+#. WAFzy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3841,6 +4265,7 @@ msgid "new moon"
msgstr "محاق"
#. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji
+#. F8LCD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3850,6 +4275,7 @@ msgid "waxing crescent moon"
msgstr "هلال"
#. 🌓 (U+1F313), see http://wiki.documentfoundation.org/Emoji
+#. pTNhc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3859,6 +4285,7 @@ msgid "first quarter"
msgstr "تربيع أول"
#. 🌔 (U+1F314), see http://wiki.documentfoundation.org/Emoji
+#. AFBZw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3868,6 +4295,7 @@ msgid "waxing gibbous moon"
msgstr "أحدب متزايد"
#. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji
+#. MLLvK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3877,6 +4305,7 @@ msgid "full moon"
msgstr "بدر"
#. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji
+#. 6ZfWf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3886,6 +4315,7 @@ msgid "waning gibbous moon"
msgstr "أحدب متناقص"
#. 🌗 (U+1F317), see http://wiki.documentfoundation.org/Emoji
+#. hfGRx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3895,6 +4325,7 @@ msgid "last quarter"
msgstr "تربيع ثاني"
#. 🌘 (U+1F318), see http://wiki.documentfoundation.org/Emoji
+#. b3snp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3904,6 +4335,7 @@ msgid "waning crescent moon"
msgstr "هلال آخر الشهر"
#. 🌙 (U+1F319), see http://wiki.documentfoundation.org/Emoji
+#. tsvS2
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3914,6 +4346,7 @@ msgid "crescent moon"
msgstr "قمر مظلم"
#. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji
+#. qCTQy
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3924,6 +4357,7 @@ msgid "new moon2"
msgstr "محاق2"
#. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji
+#. WdRzU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3933,6 +4367,7 @@ msgid "moon"
msgstr "قمر"
#. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji
+#. FhGWY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3942,6 +4377,7 @@ msgid "moon2"
msgstr "قمر2"
#. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji
+#. 2W3Lv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3951,6 +4387,7 @@ msgid "full moon2"
msgstr "بدر2"
#. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji
+#. Gkxfx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3960,6 +4397,7 @@ msgid "sun"
msgstr "شمس"
#. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji
+#. eF8ur
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3969,6 +4407,7 @@ msgid "star3"
msgstr "نجمة3"
#. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji
+#. XRohW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3978,6 +4417,7 @@ msgid "star4"
msgstr "نجمة4"
#. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji
+#. AcuuY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3987,6 +4427,7 @@ msgid "chestnut"
msgstr "كستناء"
#. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji
+#. uF4tA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3996,6 +4437,7 @@ msgid "seedling"
msgstr ""
#. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji
+#. 3pyDD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4005,6 +4447,7 @@ msgid "pine"
msgstr "صنوبر"
#. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji
+#. vgFCL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4014,6 +4457,7 @@ msgid "tree"
msgstr "شجرة"
#. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji
+#. tY3EA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4023,6 +4467,7 @@ msgid "palm"
msgstr "نخلة"
#. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji
+#. okHRh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4032,6 +4477,7 @@ msgid "cactus"
msgstr "صبار"
#. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji
+#. JHZDE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4041,6 +4487,7 @@ msgid "tulip"
msgstr "خزامى"
#. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji
+#. eFy7r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4050,6 +4497,7 @@ msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
+#. JCYis
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4059,6 +4507,7 @@ msgid "rose"
msgstr "وردة"
#. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji
+#. EGSrt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4068,6 +4517,7 @@ msgid "hibiscus"
msgstr "خبازى"
#. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji
+#. z4cHB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4077,6 +4527,7 @@ msgid "sunflower"
msgstr "دوار الشمس"
#. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji
+#. pBBjC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4086,6 +4537,7 @@ msgid "blossom"
msgstr "إزهار"
#. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji
+#. wCgXh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4095,6 +4547,7 @@ msgid "corn"
msgstr "ذرة"
#. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji
+#. NSDcY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4104,6 +4557,7 @@ msgid "grass"
msgstr "كلأ"
#. 🌿 (U+1F33F), see http://wiki.documentfoundation.org/Emoji
+#. RBhpE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4113,6 +4567,7 @@ msgid "herb"
msgstr "عشبة"
#. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji
+#. YF8TS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4122,6 +4577,7 @@ msgid "clover"
msgstr "برسيم"
#. 🍁 (U+1F341), see http://wiki.documentfoundation.org/Emoji
+#. ZtqRt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4131,6 +4587,7 @@ msgid "leaf"
msgstr ""
#. 🍂 (U+1F342), see http://wiki.documentfoundation.org/Emoji
+#. wBuCQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4140,6 +4597,7 @@ msgid "leaf2"
msgstr ""
#. 🍃 (U+1F343), see http://wiki.documentfoundation.org/Emoji
+#. mLSzg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4149,6 +4607,7 @@ msgid "leaf3"
msgstr ""
#. 🍄 (U+1F344), see http://wiki.documentfoundation.org/Emoji
+#. eEVDC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4158,6 +4617,7 @@ msgid "mushroom"
msgstr "فطر"
#. 🍅 (U+1F345), see http://wiki.documentfoundation.org/Emoji
+#. FAESj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4167,6 +4627,7 @@ msgid "tomato"
msgstr "طماطم"
#. 🍆 (U+1F346), see http://wiki.documentfoundation.org/Emoji
+#. rGgaS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4176,6 +4637,7 @@ msgid "eggplant"
msgstr "باذنجان"
#. 🍇 (U+1F347), see http://wiki.documentfoundation.org/Emoji
+#. zsYDw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4185,6 +4647,7 @@ msgid "grapes"
msgstr "عنب"
#. 🍈 (U+1F348), see http://wiki.documentfoundation.org/Emoji
+#. mxrW4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4194,6 +4657,7 @@ msgid "melon"
msgstr "شمام"
#. 🍉 (U+1F349), see http://wiki.documentfoundation.org/Emoji
+#. EDtCM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4203,6 +4667,7 @@ msgid "watermelon"
msgstr "بطيخ"
#. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji
+#. pgRuc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4212,6 +4677,7 @@ msgid "tangerine"
msgstr ""
#. 🍋 (U+1F34B), see http://wiki.documentfoundation.org/Emoji
+#. Rkfu2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4221,6 +4687,7 @@ msgid "lemon"
msgstr "ليمون"
#. 🍌 (U+1F34C), see http://wiki.documentfoundation.org/Emoji
+#. pnLAk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4230,6 +4697,7 @@ msgid "banana"
msgstr "موز"
#. 🍍 (U+1F34D), see http://wiki.documentfoundation.org/Emoji
+#. Ek9Kz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4239,6 +4707,7 @@ msgid "pineapple"
msgstr "أناناس"
#. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji
+#. VGJDv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4248,6 +4717,7 @@ msgid "apple"
msgstr "تفاح"
#. 🍏 (U+1F34F), see http://wiki.documentfoundation.org/Emoji
+#. QGk2r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4257,6 +4727,7 @@ msgid "green apple"
msgstr "تفاح أخضر"
#. 🍐 (U+1F350), see http://wiki.documentfoundation.org/Emoji
+#. sStWm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4266,6 +4737,7 @@ msgid "pear"
msgstr "كمثرى"
#. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji
+#. sfc8X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4275,6 +4747,7 @@ msgid "peach"
msgstr "خوخ"
#. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji
+#. 8AKA8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4284,6 +4757,7 @@ msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
+#. yfRzG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4293,6 +4767,7 @@ msgid "strawberry"
msgstr "فراولة"
#. 🍔 (U+1F354), see http://wiki.documentfoundation.org/Emoji
+#. WpJbe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4302,6 +4777,7 @@ msgid "hamburger"
msgstr "همبرغر"
#. 🍕 (U+1F355), see http://wiki.documentfoundation.org/Emoji
+#. 9vBsx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4311,6 +4787,7 @@ msgid "pizza"
msgstr "بيتزا"
#. 🍖 (U+1F356), see http://wiki.documentfoundation.org/Emoji
+#. YbRN8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4320,6 +4797,7 @@ msgid "meat"
msgstr "لحم"
#. 🍗 (U+1F357), see http://wiki.documentfoundation.org/Emoji
+#. 4384H
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4329,6 +4807,7 @@ msgid "poultry leg"
msgstr "فخذ دجاج"
#. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji
+#. fzFgY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4338,6 +4817,7 @@ msgid "rice cracker"
msgstr ""
#. 🍙 (U+1F359), see http://wiki.documentfoundation.org/Emoji
+#. L3Jga
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4347,6 +4827,7 @@ msgid "rice ball"
msgstr "كرة أرز"
#. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji
+#. ZxyBw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4356,6 +4837,7 @@ msgid "rice"
msgstr "أرز"
#. 🍛 (U+1F35B), see http://wiki.documentfoundation.org/Emoji
+#. akxPB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4365,6 +4847,7 @@ msgid "curry"
msgstr "كاري"
#. 🍜 (U+1F35C), see http://wiki.documentfoundation.org/Emoji
+#. KsGja
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4374,6 +4857,7 @@ msgid "ramen"
msgstr "رامن"
#. 🍝 (U+1F35D), see http://wiki.documentfoundation.org/Emoji
+#. dKTwC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4383,6 +4867,7 @@ msgid "spaghetti"
msgstr "معكرونة"
#. 🍞 (U+1F35E), see http://wiki.documentfoundation.org/Emoji
+#. D7XrZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4392,6 +4877,7 @@ msgid "bread"
msgstr "خبز"
#. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji
+#. tfYnE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4402,6 +4888,7 @@ msgid "fries"
msgstr "الحمل"
#. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji
+#. AZXBc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4411,6 +4898,7 @@ msgid "sweet potato"
msgstr "بطاطا حلوة"
#. 🍡 (U+1F361), see http://wiki.documentfoundation.org/Emoji
+#. P9LwF
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4421,6 +4909,7 @@ msgid "dango"
msgstr "سانجو"
#. 🍢 (U+1F362), see http://wiki.documentfoundation.org/Emoji
+#. VhY3g
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4430,6 +4919,7 @@ msgid "oden"
msgstr ""
#. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji
+#. K8uzC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4439,6 +4929,7 @@ msgid "sushi"
msgstr "سوشي"
#. 🍤 (U+1F364), see http://wiki.documentfoundation.org/Emoji
+#. bpAX7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4448,6 +4939,7 @@ msgid "fried shrimp"
msgstr "روبيان مقلي"
#. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji
+#. GucZQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4457,6 +4949,7 @@ msgid "fish cake"
msgstr ""
#. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji
+#. JF2mU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4466,6 +4959,7 @@ msgid "icecream"
msgstr "مثلجات"
#. 🍧 (U+1F367), see http://wiki.documentfoundation.org/Emoji
+#. B8btb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4475,6 +4969,7 @@ msgid "shaved ice"
msgstr ""
#. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji
+#. EqFKK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4484,6 +4979,7 @@ msgid "ice cream"
msgstr "مثلجات2"
#. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji
+#. DZanS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4493,6 +4989,7 @@ msgid "doughnut"
msgstr "دونت"
#. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji
+#. zeBHW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4502,6 +4999,7 @@ msgid "cookie"
msgstr "بسكويتة"
#. 🍫 (U+1F36B), see http://wiki.documentfoundation.org/Emoji
+#. qHPED
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4511,6 +5009,7 @@ msgid "chocolate"
msgstr "شوكلاته"
#. 🍬 (U+1F36C), see http://wiki.documentfoundation.org/Emoji
+#. aSMhd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4520,6 +5019,7 @@ msgid "candy"
msgstr "حلوى"
#. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji
+#. bGtHd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4529,6 +5029,7 @@ msgid "lollipop"
msgstr "مصاصة"
#. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji
+#. KGCkZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4538,6 +5039,7 @@ msgid "custard"
msgstr "كاسترد"
#. 🍯 (U+1F36F), see http://wiki.documentfoundation.org/Emoji
+#. z9jVN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4547,6 +5049,7 @@ msgid "honey"
msgstr "عسل"
#. 🍰 (U+1F370), see http://wiki.documentfoundation.org/Emoji
+#. erDDv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4556,6 +5059,7 @@ msgid "cake"
msgstr "كيك"
#. 🍱 (U+1F371), see http://wiki.documentfoundation.org/Emoji
+#. rv9sh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4565,6 +5069,7 @@ msgid "bento"
msgstr ""
#. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji
+#. wuJ4w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4574,6 +5079,7 @@ msgid "stew"
msgstr ""
#. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji
+#. YDqMD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4583,6 +5089,7 @@ msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
+#. GBfCD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4592,6 +5099,7 @@ msgid "restaurant"
msgstr "مطعم"
#. 🍵 (U+1F375), see http://wiki.documentfoundation.org/Emoji
+#. Gf4Av
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4601,6 +5109,7 @@ msgid "tea"
msgstr "شاي"
#. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji
+#. YncQr
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4611,6 +5120,7 @@ msgid "sake"
msgstr "أفعى"
#. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji
+#. xnqbf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4620,6 +5130,7 @@ msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
+#. Ngp7g
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4629,6 +5140,7 @@ msgid "cocktail"
msgstr "كوكتيل"
#. 🍹 (U+1F379), see http://wiki.documentfoundation.org/Emoji
+#. sdBze
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4638,6 +5150,7 @@ msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
+#. F2TpK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4647,6 +5160,7 @@ msgid "beer"
msgstr "بيرة"
#. 🍻 (U+1F37B), see http://wiki.documentfoundation.org/Emoji
+#. 3DADC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4656,6 +5170,7 @@ msgid "beer2"
msgstr "بيرة2"
#. 🍼 (U+1F37C), see http://wiki.documentfoundation.org/Emoji
+#. BcurL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4665,6 +5180,7 @@ msgid "baby bottle"
msgstr "ببرونة"
#. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji
+#. RhPDQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4674,6 +5190,7 @@ msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
+#. MADiL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4683,6 +5200,7 @@ msgid "gift"
msgstr "هدية"
#. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji
+#. tuDzb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4692,6 +5210,7 @@ msgid "birthday"
msgstr "عيد ميلاد"
#. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji
+#. f26Bk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4701,6 +5220,7 @@ msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
+#. WvFGT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4710,6 +5230,7 @@ msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
+#. cVHdd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4719,6 +5240,7 @@ msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
+#. saFdp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4728,6 +5250,7 @@ msgid "fireworks"
msgstr "ألعاب نارية"
#. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji
+#. ikoAR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4737,6 +5260,7 @@ msgid "sparkler"
msgstr "عصا الألعاب النارية"
#. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji
+#. xmwGc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4746,6 +5270,7 @@ msgid "balloon"
msgstr "بالون"
#. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji
+#. 6j7qo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4755,6 +5280,7 @@ msgid "party"
msgstr "حفلة"
#. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji
+#. 3eXZe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4764,6 +5290,7 @@ msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
+#. nNzUK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4773,6 +5300,7 @@ msgid "tanabata tree"
msgstr ""
#. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji
+#. 4VRMn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4782,6 +5310,7 @@ msgid "flags"
msgstr "أعلام"
#. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji
+#. nShwB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4791,6 +5320,7 @@ msgid "bamboo"
msgstr "بامبو"
#. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji
+#. HyNqD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4800,6 +5330,7 @@ msgid "dolls"
msgstr "دمية"
#. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji
+#. MZnGF
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4810,6 +5341,7 @@ msgid "flags2"
msgstr "علم2"
#. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji
+#. Fe2aF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4819,6 +5351,7 @@ msgid "wind chime"
msgstr ""
#. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji
+#. zfHjE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4828,6 +5361,7 @@ msgid "rice scene"
msgstr ""
#. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji
+#. nNCBc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4837,6 +5371,7 @@ msgid "school satchel"
msgstr ""
#. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji
+#. 6PMMH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4846,6 +5381,7 @@ msgid "graduation"
msgstr "تخرج"
#. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji
+#. xaH5B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4855,6 +5391,7 @@ msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
+#. 3x8hW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4864,6 +5401,7 @@ msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
+#. PD7Cb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4873,6 +5411,7 @@ msgid "roller coaster"
msgstr "أفعوانية"
#. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji
+#. pMccJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4882,6 +5421,7 @@ msgid "fishing"
msgstr "صيد السمك"
#. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji
+#. mZABw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4891,6 +5431,7 @@ msgid "microphone"
msgstr "ميكروفون"
#. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji
+#. cJB24
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4900,6 +5441,7 @@ msgid "movie camera"
msgstr "كاميرا أفلام"
#. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji
+#. 8MDEz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4909,6 +5451,7 @@ msgid "cinema"
msgstr "سينما"
#. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji
+#. 2tBD3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4918,6 +5461,7 @@ msgid "headphone"
msgstr "سماعة رأس"
#. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji
+#. ocRfQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4927,6 +5471,7 @@ msgid "art"
msgstr "فن"
#. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji
+#. FHPnG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4936,6 +5481,7 @@ msgid "top hat"
msgstr "قبعة رسمية"
#. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji
+#. NmrUH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4945,6 +5491,7 @@ msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
+#. gCBD6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4954,6 +5501,7 @@ msgid "ticket"
msgstr ""
#. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji
+#. EQhDu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4963,6 +5511,7 @@ msgid "clapper"
msgstr ""
#. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji
+#. BwNeG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4972,6 +5521,7 @@ msgid "theatre"
msgstr "مسرح"
#. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji
+#. yxoXg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4981,6 +5531,7 @@ msgid "video game"
msgstr "لعبة فيديو"
#. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji
+#. 8GZTZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4990,6 +5541,7 @@ msgid "hit"
msgstr "إصابة"
#. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji
+#. qnZGG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4999,6 +5551,7 @@ msgid "slot machine"
msgstr ""
#. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji
+#. b5uif
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5008,6 +5561,7 @@ msgid "billiards"
msgstr "بليارد"
#. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji
+#. zYVZW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5017,6 +5571,7 @@ msgid "dice"
msgstr "نرد"
#. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji
+#. wDVCN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5026,6 +5581,7 @@ msgid "bowling"
msgstr "بولنغ"
#. 🎴 (U+1F3B4), see http://wiki.documentfoundation.org/Emoji
+#. 5m8DQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5035,6 +5591,7 @@ msgid "cards"
msgstr "بطاقات"
#. 🎵 (U+1F3B5), see http://wiki.documentfoundation.org/Emoji
+#. DDCkg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5044,6 +5601,7 @@ msgid "music2"
msgstr "موسيقى2"
#. 🎶 (U+1F3B6), see http://wiki.documentfoundation.org/Emoji
+#. PsVfD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5053,6 +5611,7 @@ msgid "music"
msgstr "موسيقى"
#. 🎷 (U+1F3B7), see http://wiki.documentfoundation.org/Emoji
+#. Unw73
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5062,6 +5621,7 @@ msgid "saxophone"
msgstr "ساكسفون"
#. 🎸 (U+1F3B8), see http://wiki.documentfoundation.org/Emoji
+#. sB5jL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5071,6 +5631,7 @@ msgid "guitar"
msgstr "غيتار"
#. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji
+#. wGKYB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5080,6 +5641,7 @@ msgid "piano"
msgstr "بيانو"
#. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji
+#. tWZBJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5089,6 +5651,7 @@ msgid "trumpet"
msgstr "بوق"
#. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji
+#. ae8uM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5098,6 +5661,7 @@ msgid "violin"
msgstr "كمان"
#. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji
+#. QCnPx
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5108,6 +5672,7 @@ msgid "score"
msgstr "مخزن"
#. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji
+#. 8zBQp
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5118,6 +5683,7 @@ msgid "shirt2"
msgstr "قميص"
#. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji
+#. WfH8R
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5127,6 +5693,7 @@ msgid "tennis"
msgstr "تنس"
#. 🎿 (U+1F3BF), see http://wiki.documentfoundation.org/Emoji
+#. FrDyH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5136,6 +5703,7 @@ msgid "ski"
msgstr "تزحلق"
#. 🏀 (U+1F3C0), see http://wiki.documentfoundation.org/Emoji
+#. ih5rC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5145,6 +5713,7 @@ msgid "basketball"
msgstr "كرة سلة"
#. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji
+#. E4zAL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5154,6 +5723,7 @@ msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
+#. b4bAo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5163,6 +5733,7 @@ msgid "snowboarder"
msgstr ""
#. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji
+#. z7CKn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5172,6 +5743,7 @@ msgid "runner"
msgstr "عداء"
#. 🏄 (U+1F3C4), see http://wiki.documentfoundation.org/Emoji
+#. 2pLHf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5181,6 +5753,7 @@ msgid "surfer"
msgstr "راكب أمواج"
#. 🏆 (U+1F3C6), see http://wiki.documentfoundation.org/Emoji
+#. Hgj9C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5190,6 +5763,7 @@ msgid "trophy"
msgstr ""
#. 🏇 (U+1F3C7), see http://wiki.documentfoundation.org/Emoji
+#. qjAKh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5199,6 +5773,7 @@ msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
+#. FRTc8
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5209,6 +5784,7 @@ msgid "football"
msgstr "كرة قدم أمريكية"
#. 🏉 (U+1F3C9), see http://wiki.documentfoundation.org/Emoji
+#. eLmcj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5218,6 +5794,7 @@ msgid "rugby football"
msgstr "روكبي"
#. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji
+#. 6acEV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5227,6 +5804,7 @@ msgid "swimmer"
msgstr "سباح"
#. 🏠 (U+1F3E0), see http://wiki.documentfoundation.org/Emoji
+#. RfTAe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5236,6 +5814,7 @@ msgid "house"
msgstr "منزل"
#. 🏡 (U+1F3E1), see http://wiki.documentfoundation.org/Emoji
+#. GB6nn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5245,6 +5824,7 @@ msgid "house2"
msgstr "منزل2"
#. 🏢 (U+1F3E2), see http://wiki.documentfoundation.org/Emoji
+#. dRsEi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5254,6 +5834,7 @@ msgid "office"
msgstr "مكتب"
#. 🏣 (U+1F3E3), see http://wiki.documentfoundation.org/Emoji
+#. Gf8La
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5263,6 +5844,7 @@ msgid "post office2"
msgstr "مكتب بريد2"
#. 🏤 (U+1F3E4), see http://wiki.documentfoundation.org/Emoji
+#. 9qhN4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5272,6 +5854,7 @@ msgid "post office"
msgstr "مكتب بريد"
#. 🏥 (U+1F3E5), see http://wiki.documentfoundation.org/Emoji
+#. ttEpB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5281,6 +5864,7 @@ msgid "hospital"
msgstr "مستشفى"
#. 🏦 (U+1F3E6), see http://wiki.documentfoundation.org/Emoji
+#. 4TaNF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5290,6 +5874,7 @@ msgid "bank"
msgstr "مصرف"
#. 🏧 (U+1F3E7), see http://wiki.documentfoundation.org/Emoji
+#. EkGmC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5299,6 +5884,7 @@ msgid "atm"
msgstr "صرافة"
#. 🏨 (U+1F3E8), see http://wiki.documentfoundation.org/Emoji
+#. jXyTu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5308,6 +5894,7 @@ msgid "hotel"
msgstr "فندق"
#. 🏩 (U+1F3E9), see http://wiki.documentfoundation.org/Emoji
+#. BoiNG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5317,6 +5904,7 @@ msgid "hotel2"
msgstr "فندق2"
#. 🏪 (U+1F3EA), see http://wiki.documentfoundation.org/Emoji
+#. AcmZT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5326,6 +5914,7 @@ msgid "store"
msgstr "مخزن"
#. 🏫 (U+1F3EB), see http://wiki.documentfoundation.org/Emoji
+#. VBk6S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5335,6 +5924,7 @@ msgid "school"
msgstr "مدرسة"
#. 🏬 (U+1F3EC), see http://wiki.documentfoundation.org/Emoji
+#. 7DA7Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5344,6 +5934,7 @@ msgid "store2"
msgstr "مخزن2"
#. 🏭 (U+1F3ED), see http://wiki.documentfoundation.org/Emoji
+#. 5FZmf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5353,6 +5944,7 @@ msgid "factory"
msgstr "مصنع"
#. 🏮 (U+1F3EE), see http://wiki.documentfoundation.org/Emoji
+#. E7g2q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5362,6 +5954,7 @@ msgid "lantern"
msgstr "فانوس"
#. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji
+#. ZwF6E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5371,6 +5964,7 @@ msgid "castle2"
msgstr "قلعة2"
#. 🏰 (U+1F3F0), see http://wiki.documentfoundation.org/Emoji
+#. AVnym
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5380,6 +5974,7 @@ msgid "castle"
msgstr "قلعة"
#. 🐀 (U+1F400), see http://wiki.documentfoundation.org/Emoji
+#. iQjEZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5389,6 +5984,7 @@ msgid "rat"
msgstr "جرذ"
#. 🐁 (U+1F401), see http://wiki.documentfoundation.org/Emoji
+#. DeFnV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5398,6 +5994,7 @@ msgid "mouse"
msgstr "فأر"
#. 🐂 (U+1F402), see http://wiki.documentfoundation.org/Emoji
+#. XiFTi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5407,6 +6004,7 @@ msgid "ox"
msgstr "ثور"
#. 🐃 (U+1F403), see http://wiki.documentfoundation.org/Emoji
+#. zNaJS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5416,6 +6014,7 @@ msgid "water buffalo"
msgstr "جاموس ماء"
#. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji
+#. V3p7W
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5425,6 +6024,7 @@ msgid "cow"
msgstr "بقرة"
#. 🐅 (U+1F405), see http://wiki.documentfoundation.org/Emoji
+#. ihDfF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5434,6 +6034,7 @@ msgid "tiger"
msgstr "نمر"
#. 🐆 (U+1F406), see http://wiki.documentfoundation.org/Emoji
+#. RbGoe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5443,6 +6044,7 @@ msgid "leopard"
msgstr "فهد"
#. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji
+#. CMGYf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5452,6 +6054,7 @@ msgid "rabbit"
msgstr "أرنب"
#. 🐈 (U+1F408), see http://wiki.documentfoundation.org/Emoji
+#. 9YBim
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5461,6 +6064,7 @@ msgid "cat"
msgstr "قطة"
#. 🐉 (U+1F409), see http://wiki.documentfoundation.org/Emoji
+#. dio6o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5470,6 +6074,7 @@ msgid "dragon"
msgstr "تنين"
#. 🐊 (U+1F40A), see http://wiki.documentfoundation.org/Emoji
+#. uTR4G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5479,6 +6084,7 @@ msgid "crocodile"
msgstr "تمساح"
#. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji
+#. h77co
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5488,6 +6094,7 @@ msgid "whale2"
msgstr "حوت2"
#. 🐌 (U+1F40C), see http://wiki.documentfoundation.org/Emoji
+#. hadNm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5497,6 +6104,7 @@ msgid "snail"
msgstr "حلزون"
#. 🐍 (U+1F40D), see http://wiki.documentfoundation.org/Emoji
+#. DKLJQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5506,6 +6114,7 @@ msgid "snake"
msgstr "أفعى"
#. 🐎 (U+1F40E), see http://wiki.documentfoundation.org/Emoji
+#. i6Cn2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5515,6 +6124,7 @@ msgid "horse"
msgstr "حصان"
#. 🐏 (U+1F40F), see http://wiki.documentfoundation.org/Emoji
+#. xEnKp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5524,6 +6134,7 @@ msgid "ram"
msgstr "كبش"
#. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji
+#. CVSAr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5533,6 +6144,7 @@ msgid "goat"
msgstr "عنزة"
#. 🐑 (U+1F411), see http://wiki.documentfoundation.org/Emoji
+#. ZDwSn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5542,6 +6154,7 @@ msgid "sheep"
msgstr "خروف"
#. 🐒 (U+1F412), see http://wiki.documentfoundation.org/Emoji
+#. YvEf5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5551,6 +6164,7 @@ msgid "monkey"
msgstr "قرد"
#. 🐓 (U+1F413), see http://wiki.documentfoundation.org/Emoji
+#. ycN9J
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5560,6 +6174,7 @@ msgid "rooster"
msgstr "ديك"
#. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji
+#. Ag9Mg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5569,6 +6184,7 @@ msgid "chicken"
msgstr "دجاجة"
#. 🐕 (U+1F415), see http://wiki.documentfoundation.org/Emoji
+#. jmBsh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5578,6 +6194,7 @@ msgid "dog"
msgstr "كلب"
#. 🐖 (U+1F416), see http://wiki.documentfoundation.org/Emoji
+#. q6YWK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5587,6 +6204,7 @@ msgid "pig"
msgstr "خنزير"
#. 🐗 (U+1F417), see http://wiki.documentfoundation.org/Emoji
+#. xtnBt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5596,6 +6214,7 @@ msgid "boar"
msgstr "خنزير بري"
#. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji
+#. yxkbk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5605,6 +6224,7 @@ msgid "elephant"
msgstr "فيل"
#. 🐙 (U+1F419), see http://wiki.documentfoundation.org/Emoji
+#. vpPJb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5614,6 +6234,7 @@ msgid "octopus"
msgstr "أخطبوط"
#. 🐚 (U+1F41A), see http://wiki.documentfoundation.org/Emoji
+#. SXEMR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5623,6 +6244,7 @@ msgid "shell"
msgstr "صدفة"
#. 🐛 (U+1F41B), see http://wiki.documentfoundation.org/Emoji
+#. JVh4w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5632,6 +6254,7 @@ msgid "bug"
msgstr "حشرة"
#. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji
+#. me5X6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5641,6 +6264,7 @@ msgid "ant"
msgstr "نملة"
#. 🐝 (U+1F41D), see http://wiki.documentfoundation.org/Emoji
+#. aCWCQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5650,6 +6274,7 @@ msgid "bee"
msgstr "نحلة"
#. 🐞 (U+1F41E), see http://wiki.documentfoundation.org/Emoji
+#. JnJG6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5659,6 +6284,7 @@ msgid "ladybug"
msgstr "دعسوقة"
#. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji
+#. CATwn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5668,6 +6294,7 @@ msgid "fish"
msgstr "سمكة"
#. 🐠 (U+1F420), see http://wiki.documentfoundation.org/Emoji
+#. qK3hz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5677,6 +6304,7 @@ msgid "fish2"
msgstr "سمكة2"
#. 🐡 (U+1F421), see http://wiki.documentfoundation.org/Emoji
+#. mkAVd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5686,6 +6314,7 @@ msgid "fish3"
msgstr "سمكة3"
#. 🐢 (U+1F422), see http://wiki.documentfoundation.org/Emoji
+#. vHvHV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5695,6 +6324,7 @@ msgid "turtle"
msgstr "سلحفاة"
#. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji
+#. Fi7Lg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5704,6 +6334,7 @@ msgid "chick"
msgstr "كتكوت"
#. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji
+#. zAaYQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5713,6 +6344,7 @@ msgid "chick2"
msgstr "كتكوت2"
#. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji
+#. GyVtY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5722,6 +6354,7 @@ msgid "chick3"
msgstr "كتكوت3"
#. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji
+#. jwips
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5731,6 +6364,7 @@ msgid "bird"
msgstr "طير"
#. 🐧 (U+1F427), see http://wiki.documentfoundation.org/Emoji
+#. KDxrF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5740,6 +6374,7 @@ msgid "penguin"
msgstr "بطريق"
#. 🐨 (U+1F428), see http://wiki.documentfoundation.org/Emoji
+#. i3ehW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5749,6 +6384,7 @@ msgid "koala"
msgstr "كوالا"
#. 🐩 (U+1F429), see http://wiki.documentfoundation.org/Emoji
+#. yBMDt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5758,6 +6394,7 @@ msgid "poodle"
msgstr ""
#. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji
+#. A3ng3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5767,6 +6404,7 @@ msgid "camel"
msgstr "جمل"
#. 🐫 (U+1F42B), see http://wiki.documentfoundation.org/Emoji
+#. NDefQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5776,6 +6414,7 @@ msgid "camel2"
msgstr "جمل2"
#. 🐬 (U+1F42C), see http://wiki.documentfoundation.org/Emoji
+#. extjn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5785,6 +6424,7 @@ msgid "dolphin"
msgstr "دولفين"
#. 🐭 (U+1F42D), see http://wiki.documentfoundation.org/Emoji
+#. FDRH4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5794,6 +6434,7 @@ msgid "mouse2"
msgstr "فأر2"
#. 🐮 (U+1F42E), see http://wiki.documentfoundation.org/Emoji
+#. yDmAf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5803,6 +6444,7 @@ msgid "cow2"
msgstr "بقرة2"
#. 🐯 (U+1F42F), see http://wiki.documentfoundation.org/Emoji
+#. V7ZVF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5812,6 +6454,7 @@ msgid "tiger2"
msgstr "نمر2"
#. 🐰 (U+1F430), see http://wiki.documentfoundation.org/Emoji
+#. 8XA6y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5821,6 +6464,7 @@ msgid "rabbit2"
msgstr "أرنب2"
#. 🐱 (U+1F431), see http://wiki.documentfoundation.org/Emoji
+#. umi97
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5830,6 +6474,7 @@ msgid "cat2"
msgstr "قطة2"
#. 🐲 (U+1F432), see http://wiki.documentfoundation.org/Emoji
+#. A8jhC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5839,6 +6484,7 @@ msgid "dragon2"
msgstr "تنين2"
#. 🐳 (U+1F433), see http://wiki.documentfoundation.org/Emoji
+#. EC4yH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5848,6 +6494,7 @@ msgid "whale"
msgstr "حوت"
#. 🐴 (U+1F434), see http://wiki.documentfoundation.org/Emoji
+#. uvs4N
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5857,6 +6504,7 @@ msgid "horse2"
msgstr "حصان2"
#. 🐵 (U+1F435), see http://wiki.documentfoundation.org/Emoji
+#. JACu8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5866,6 +6514,7 @@ msgid "monkey2"
msgstr "قرد2"
#. 🐶 (U+1F436), see http://wiki.documentfoundation.org/Emoji
+#. 2hAqZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5875,6 +6524,7 @@ msgid "dog2"
msgstr "كلب2"
#. 🐷 (U+1F437), see http://wiki.documentfoundation.org/Emoji
+#. pHDR9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5884,6 +6534,7 @@ msgid "pig2"
msgstr "خنزير2"
#. 🐸 (U+1F438), see http://wiki.documentfoundation.org/Emoji
+#. ByQoB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5893,6 +6544,7 @@ msgid "frog"
msgstr "ضفدع"
#. 🐹 (U+1F439), see http://wiki.documentfoundation.org/Emoji
+#. 7KVBf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5902,6 +6554,7 @@ msgid "hamster"
msgstr "همستر"
#. 🐺 (U+1F43A), see http://wiki.documentfoundation.org/Emoji
+#. BWcDY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5911,6 +6564,7 @@ msgid "wolf"
msgstr "ذئب"
#. 🐻 (U+1F43B), see http://wiki.documentfoundation.org/Emoji
+#. p2mi3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5920,6 +6574,7 @@ msgid "bear"
msgstr "دب"
#. 🐼 (U+1F43C), see http://wiki.documentfoundation.org/Emoji
+#. bm9VZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5929,6 +6584,7 @@ msgid "panda"
msgstr "باندا"
#. 🐽 (U+1F43D), see http://wiki.documentfoundation.org/Emoji
+#. U4cLM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5938,6 +6594,7 @@ msgid "pig nose"
msgstr "أنف خنزير"
#. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji
+#. cZa9W
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5947,6 +6604,7 @@ msgid "feet"
msgstr "قدم"
#. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji
+#. FbAhk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5956,6 +6614,7 @@ msgid "eyes"
msgstr "عينان"
#. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji
+#. jpYRG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5965,6 +6624,7 @@ msgid "ear"
msgstr "أذن"
#. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji
+#. E9d73
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5974,6 +6634,7 @@ msgid "nose"
msgstr "أنف"
#. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji
+#. HhZiA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5983,6 +6644,7 @@ msgid "mouth"
msgstr "فم"
#. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji
+#. xiZeo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5992,6 +6654,7 @@ msgid "tongue"
msgstr "لسان"
#. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji
+#. Do9RZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6001,6 +6664,7 @@ msgid "up2"
msgstr "أعلى2"
#. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji
+#. 38UHH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6010,6 +6674,7 @@ msgid "down2"
msgstr "أسفل2"
#. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji
+#. gRtnZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6019,6 +6684,7 @@ msgid "left2"
msgstr "يسار2"
#. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji
+#. VjyBV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6028,6 +6694,7 @@ msgid "right2"
msgstr "يمين2"
#. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji
+#. ipCGp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6037,6 +6704,7 @@ msgid "fist2"
msgstr "قبضة2"
#. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji
+#. Gh9mT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6046,6 +6714,7 @@ msgid "wave"
msgstr "موجة"
#. 👌 (U+1F44C), see http://wiki.documentfoundation.org/Emoji
+#. AHXXZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6055,6 +6724,7 @@ msgid "ok"
msgstr "موافقة"
#. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji
+#. QP5Gt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6064,6 +6734,7 @@ msgid "yes"
msgstr "نعم"
#. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji
+#. mGjpD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6073,6 +6744,7 @@ msgid "no"
msgstr "لا"
#. 👏 (U+1F44F), see http://wiki.documentfoundation.org/Emoji
+#. UzrjV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6082,6 +6754,7 @@ msgid "clap"
msgstr "تصفيق"
#. 👐 (U+1F450), see http://wiki.documentfoundation.org/Emoji
+#. xJ53h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6091,6 +6764,7 @@ msgid "open hands"
msgstr "يدان مفتوحتان"
#. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji
+#. BtSqh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6100,6 +6774,7 @@ msgid "crown"
msgstr "إكليل"
#. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji
+#. BzRy3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6109,6 +6784,7 @@ msgid "hat"
msgstr "قبعة"
#. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji
+#. yGAJR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6118,6 +6794,7 @@ msgid "eyeglasses"
msgstr "نظارات"
#. 👔 (U+1F454), see http://wiki.documentfoundation.org/Emoji
+#. 9WoyD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6127,6 +6804,7 @@ msgid "necktie"
msgstr "ربطة عنق"
#. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji
+#. FYDTc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6136,6 +6814,7 @@ msgid "shirt"
msgstr "قميص"
#. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji
+#. wDCDB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6145,6 +6824,7 @@ msgid "jeans"
msgstr "جينز"
#. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji
+#. DKuYL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6154,6 +6834,7 @@ msgid "dress"
msgstr "فستان"
#. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji
+#. 3gfhC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6163,6 +6844,7 @@ msgid "kimono"
msgstr "كيمون"
#. 👙 (U+1F459), see http://wiki.documentfoundation.org/Emoji
+#. pkz5G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6172,6 +6854,7 @@ msgid "bikini"
msgstr ""
#. 👚 (U+1F45A), see http://wiki.documentfoundation.org/Emoji
+#. kPMZm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6181,6 +6864,7 @@ msgid "clothes"
msgstr "ملابس"
#. 👛 (U+1F45B), see http://wiki.documentfoundation.org/Emoji
+#. KUTeE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6190,6 +6874,7 @@ msgid "purse"
msgstr "محفظة"
#. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji
+#. 7jBBJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6199,6 +6884,7 @@ msgid "handbag"
msgstr "حقيبة يد"
#. 👝 (U+1F45D), see http://wiki.documentfoundation.org/Emoji
+#. j3i9d
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6208,6 +6894,7 @@ msgid "pouch"
msgstr ""
#. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji
+#. TJEkr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6217,6 +6904,7 @@ msgid "shoe"
msgstr "حذاء"
#. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji
+#. E6RYu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6226,6 +6914,7 @@ msgid "shoe2"
msgstr "حذاء2"
#. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji
+#. wzPLw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6235,6 +6924,7 @@ msgid "shoe3"
msgstr "حذاء3"
#. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji
+#. FpWvw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6244,6 +6934,7 @@ msgid "sandal"
msgstr "صندل"
#. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji
+#. AyaZm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6253,6 +6944,7 @@ msgid "boot"
msgstr "جزمة"
#. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji
+#. GgfEm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6262,6 +6954,7 @@ msgid "footprints"
msgstr "آثار أقدام"
#. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji
+#. hs8C7
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6272,6 +6965,7 @@ msgid "bust"
msgstr "حافلة"
#. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji
+#. UETgU
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6282,6 +6976,7 @@ msgid "busts"
msgstr "حافلة"
#. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji
+#. inPSE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6291,6 +6986,7 @@ msgid "boy"
msgstr "فتى"
#. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji
+#. WvMFo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6300,6 +6996,7 @@ msgid "girl"
msgstr "فتاة"
#. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji
+#. 8EQzk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6309,6 +7006,7 @@ msgid "man"
msgstr "رجل"
#. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji
+#. EEPWL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6318,6 +7016,7 @@ msgid "woman"
msgstr ""
#. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji
+#. SXd9z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6327,6 +7026,7 @@ msgid "family"
msgstr "عائلة"
#. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji
+#. 5zFTn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6336,6 +7036,7 @@ msgid "couple"
msgstr "زوجان"
#. 👬 (U+1F46C), see http://wiki.documentfoundation.org/Emoji
+#. npiBG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6345,6 +7046,7 @@ msgid "couple2"
msgstr "زوجان2"
#. 👭 (U+1F46D), see http://wiki.documentfoundation.org/Emoji
+#. cFL88
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6354,6 +7056,7 @@ msgid "couple3"
msgstr "زوجان3"
#. 👮 (U+1F46E), see http://wiki.documentfoundation.org/Emoji
+#. z2SZf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6363,6 +7066,7 @@ msgid "cop"
msgstr "شرطي"
#. 👯 (U+1F46F), see http://wiki.documentfoundation.org/Emoji
+#. GshDr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6372,6 +7076,7 @@ msgid "bunny ears"
msgstr "أذنا أرنب"
#. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji
+#. jCsRv
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6382,6 +7087,7 @@ msgid "bride"
msgstr "جسر"
#. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji
+#. Ejnwy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6391,6 +7097,7 @@ msgid "blond hair"
msgstr ""
#. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji
+#. CEjP9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6400,6 +7107,7 @@ msgid "hat2"
msgstr "قبعة2"
#. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji
+#. PT4BP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6409,6 +7117,7 @@ msgid "turban"
msgstr "عمامة"
#. 👴 (U+1F474), see http://wiki.documentfoundation.org/Emoji
+#. 5JKdn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6418,6 +7127,7 @@ msgid "older man"
msgstr ""
#. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji
+#. cFK28
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6427,6 +7137,7 @@ msgid "older woman"
msgstr ""
#. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji
+#. yCHsd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6436,6 +7147,7 @@ msgid "baby"
msgstr "طفل"
#. 👷 (U+1F477), see http://wiki.documentfoundation.org/Emoji
+#. 3GDrA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6445,6 +7157,7 @@ msgid "worker"
msgstr "عامل"
#. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji
+#. DVotZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6454,6 +7167,7 @@ msgid "princess"
msgstr "أميرة"
#. 👹 (U+1F479), see http://wiki.documentfoundation.org/Emoji
+#. uXbDv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6463,6 +7177,7 @@ msgid "ogre"
msgstr "غول"
#. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji
+#. 9mnCF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6472,6 +7187,7 @@ msgid "goblin"
msgstr "عفريت"
#. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji
+#. owD8B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6481,6 +7197,7 @@ msgid "ghost"
msgstr "شبح"
#. 👼 (U+1F47C), see http://wiki.documentfoundation.org/Emoji
+#. JBpcF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6490,6 +7207,7 @@ msgid "angel"
msgstr "ملاك"
#. 👽 (U+1F47D), see http://wiki.documentfoundation.org/Emoji
+#. CtaFh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6499,6 +7217,7 @@ msgid "alien"
msgstr "فضائي"
#. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji
+#. hTENb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6508,6 +7227,7 @@ msgid "alien2"
msgstr "فضائي2"
#. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji
+#. gPRSL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6517,6 +7237,7 @@ msgid "imp"
msgstr ""
#. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji
+#. VCGWC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6526,6 +7247,7 @@ msgid "skull"
msgstr "جمجمة"
#. 💁 (U+1F481), see http://wiki.documentfoundation.org/Emoji
+#. cE5EN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6535,6 +7257,7 @@ msgid "information2"
msgstr "معلومات2"
#. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji
+#. 8TW65
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6544,6 +7267,7 @@ msgid "guard"
msgstr "حارس"
#. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji
+#. AfK4Q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6553,6 +7277,7 @@ msgid "dancer"
msgstr "راقصة"
#. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji
+#. cWNXz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6562,6 +7287,7 @@ msgid "lipstick"
msgstr "أحمر شفاه"
#. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji
+#. UCBCc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6571,6 +7297,7 @@ msgid "nail care"
msgstr ""
#. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji
+#. G8fqM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6580,6 +7307,7 @@ msgid "massage"
msgstr "رسالة"
#. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji
+#. mej3x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6589,6 +7317,7 @@ msgid "haircut"
msgstr "قص شعر"
#. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji
+#. Uh3iE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6598,6 +7327,7 @@ msgid "barber"
msgstr "حلاق"
#. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji
+#. r6qXk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6607,6 +7337,7 @@ msgid "syringe"
msgstr "محقنة"
#. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji
+#. UHfGw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6616,6 +7347,7 @@ msgid "pill"
msgstr "حبة دواء"
#. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji
+#. mEEda
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6625,6 +7357,7 @@ msgid "kiss mark"
msgstr ""
#. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji
+#. 26cKP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6634,6 +7367,7 @@ msgid "love letter"
msgstr "خطاب حب"
#. 💍 (U+1F48D), see http://wiki.documentfoundation.org/Emoji
+#. HLAyd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6643,6 +7377,7 @@ msgid "ring"
msgstr "خاتم"
#. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji
+#. 2B9Gg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6652,6 +7387,7 @@ msgid "gem"
msgstr "جوهرة"
#. 💏 (U+1F48F), see http://wiki.documentfoundation.org/Emoji
+#. 5umRf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6661,6 +7397,7 @@ msgid "kiss"
msgstr "قبلة"
#. 💐 (U+1F490), see http://wiki.documentfoundation.org/Emoji
+#. uTbGC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6670,6 +7407,7 @@ msgid "bouquet"
msgstr ""
#. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji
+#. PdyCD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6679,6 +7417,7 @@ msgid "couple4"
msgstr "زوجان4"
#. 💒 (U+1F492), see http://wiki.documentfoundation.org/Emoji
+#. HN5FN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6688,6 +7427,7 @@ msgid "wedding"
msgstr "حفل زفاف"
#. 💓 (U+1F493), see http://wiki.documentfoundation.org/Emoji
+#. nCuz6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6697,6 +7437,7 @@ msgid "heartbeat"
msgstr "قلب نابض"
#. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji
+#. s5RCB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6706,6 +7447,7 @@ msgid "broken heart"
msgstr "قلب مجروح"
#. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji
+#. ZKnAA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6715,6 +7457,7 @@ msgid "two hearts"
msgstr "قلبان"
#. 💖 (U+1F496), see http://wiki.documentfoundation.org/Emoji
+#. T6fPR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6724,6 +7467,7 @@ msgid "sparkling heart"
msgstr ""
#. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji
+#. Hnpy2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6733,6 +7477,7 @@ msgid "heartpulse"
msgstr "نبضة قلب"
#. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji
+#. EoDEC
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6743,6 +7488,7 @@ msgid "love"
msgstr "انقل"
#. 💝 (U+1F49D), see http://wiki.documentfoundation.org/Emoji
+#. ZvRzq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6752,6 +7498,7 @@ msgid "gift heart"
msgstr ""
#. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji
+#. mNAJQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6761,6 +7508,7 @@ msgid "revolving hearts"
msgstr ""
#. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji
+#. jWmvQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6770,6 +7518,7 @@ msgid "heart decoration"
msgstr ""
#. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji
+#. UjSJU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6779,6 +7528,7 @@ msgid "cuteness"
msgstr ""
#. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji
+#. FgTp9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6788,6 +7538,7 @@ msgid "bulb"
msgstr ""
#. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji
+#. 5uyY8
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6798,6 +7549,7 @@ msgid "anger"
msgstr "ملاك"
#. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji
+#. BHnsP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6807,6 +7559,7 @@ msgid "bomb"
msgstr "قنبلة"
#. 💤 (U+1F4A4), see http://wiki.documentfoundation.org/Emoji
+#. DxdJx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6816,6 +7569,7 @@ msgid "zzz"
msgstr "شخير"
#. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji
+#. DSa3b
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6826,6 +7580,7 @@ msgid "boom"
msgstr "جزمة"
#. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji
+#. nFoAX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6835,6 +7590,7 @@ msgid "sweat drops"
msgstr ""
#. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji
+#. eRxPJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6844,6 +7600,7 @@ msgid "droplet"
msgstr "قطرة"
#. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji
+#. HDTEE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6854,6 +7611,7 @@ msgid "dash"
msgstr "شَرطة"
#. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji
+#. FyCtU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6863,6 +7621,7 @@ msgid "poo"
msgstr ""
#. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji
+#. tkQEc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6872,6 +7631,7 @@ msgid "muscle"
msgstr "عضلة"
#. 💫 (U+1F4AB), see http://wiki.documentfoundation.org/Emoji
+#. oV6Re
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6881,6 +7641,7 @@ msgid "dizzy"
msgstr "دوار"
#. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji
+#. Ja8Zt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6890,6 +7651,7 @@ msgid "speech balloon"
msgstr "بالون حديث"
#. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji
+#. Hqstd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6899,6 +7661,7 @@ msgid "thought balloon"
msgstr "بالون تفكير"
#. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji
+#. TFLQ3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6908,6 +7671,7 @@ msgid "white flower"
msgstr "زهرة بيضاء"
#. 💯 (U+1F4AF), see http://wiki.documentfoundation.org/Emoji
+#. NVEJ6
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6918,6 +7682,7 @@ msgid "100"
msgstr "١٠٠٪"
#. 💰 (U+1F4B0), see http://wiki.documentfoundation.org/Emoji
+#. 44CJ2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6927,6 +7692,7 @@ msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
+#. WJBFr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6936,6 +7702,7 @@ msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
+#. gEQqV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6945,6 +7712,7 @@ msgid "heavy dollar sign"
msgstr ""
#. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji
+#. BvG4w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6954,6 +7722,7 @@ msgid "credit card"
msgstr "بطاقة ائتمان"
#. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji
+#. XPTnu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6963,6 +7732,7 @@ msgid "yen2"
msgstr "ين2"
#. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji
+#. 9tknk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6972,6 +7742,7 @@ msgid "dollar2"
msgstr "دولار2"
#. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji
+#. m4oKV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6981,6 +7752,7 @@ msgid "euro2"
msgstr "يورو2"
#. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji
+#. 8n3ij
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6990,6 +7762,7 @@ msgid "pound2"
msgstr "جنيه2"
#. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji
+#. CbXWk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6999,6 +7772,7 @@ msgid "money"
msgstr "مال"
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
+#. HxDaW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7008,6 +7782,7 @@ msgid "chart4"
msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
+#. uFG2p
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7017,6 +7792,7 @@ msgid "seat"
msgstr "مقعد"
#. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji
+#. A72Gd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7026,6 +7802,7 @@ msgid "computer"
msgstr "حاسوب"
#. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji
+#. dLWEH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7035,6 +7812,7 @@ msgid "briefcase"
msgstr ""
#. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji
+#. 39dHP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7044,6 +7822,7 @@ msgid "md"
msgstr ""
#. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji
+#. Kc5xJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7053,6 +7832,7 @@ msgid "floppy"
msgstr "قرص مرن"
#. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji
+#. 6qMwM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7062,6 +7842,7 @@ msgid "cd"
msgstr "قرص ليزري"
#. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji
+#. yEgGX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7071,6 +7852,7 @@ msgid "dvd"
msgstr ""
#. 📁 (U+1F4C1), see http://wiki.documentfoundation.org/Emoji
+#. kDfvB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7080,6 +7862,7 @@ msgid "folder"
msgstr "مجلد"
#. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji
+#. wAyrP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7089,6 +7872,7 @@ msgid "folder2"
msgstr "مجلد2"
#. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji
+#. XwFzf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7098,6 +7882,7 @@ msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
+#. nHJbH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7107,6 +7892,7 @@ msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
+#. 3357F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7116,6 +7902,7 @@ msgid "calendar"
msgstr "تقويم"
#. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji
+#. 2T65Q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7125,6 +7912,7 @@ msgid "calendar2"
msgstr "تقويم2"
#. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji
+#. DNhZt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7134,6 +7922,7 @@ msgid "card index"
msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
+#. fDBef
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7143,6 +7932,7 @@ msgid "chart"
msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
+#. n2X5h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7152,6 +7942,7 @@ msgid "chart2"
msgstr "رسم بياني2"
#. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji
+#. A2YxF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7161,6 +7952,7 @@ msgid "chart3"
msgstr "رسم بياني3"
#. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji
+#. rd9qJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7170,6 +7962,7 @@ msgid "clipboard"
msgstr "حافظة"
#. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji
+#. rvk5G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7179,6 +7972,7 @@ msgid "pushpin"
msgstr "دبوس"
#. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji
+#. qvHXp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7188,6 +7982,7 @@ msgid "round pushpin"
msgstr ""
#. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji
+#. QnxVB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7197,6 +7992,7 @@ msgid "paperclip"
msgstr "مشبك ورق"
#. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji
+#. 7zWG5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7206,6 +8002,7 @@ msgid "ruler"
msgstr "مسطرة"
#. 📐 (U+1F4D0), see http://wiki.documentfoundation.org/Emoji
+#. AFfRY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7215,6 +8012,7 @@ msgid "ruler2"
msgstr "مسطرة2"
#. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji
+#. 8kKn2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7224,6 +8022,7 @@ msgid "bookmark"
msgstr "علامة"
#. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji
+#. 2JByd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7233,6 +8032,7 @@ msgid "ledger"
msgstr ""
#. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji
+#. CPCYE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7242,6 +8042,7 @@ msgid "notebook"
msgstr ""
#. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji
+#. ktHAV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7251,6 +8052,7 @@ msgid "notebook2"
msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
+#. DYit7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7260,6 +8062,7 @@ msgid "book2"
msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
+#. LjMCp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7269,6 +8072,7 @@ msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
+#. wGEYU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7278,6 +8082,7 @@ msgid "books"
msgstr "كتب"
#. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji
+#. AHKqs
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7288,6 +8093,7 @@ msgid "name"
msgstr "الاسم"
#. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji
+#. 7dFZz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7297,6 +8103,7 @@ msgid "scroll"
msgstr ""
#. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji
+#. WACDF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7306,6 +8113,7 @@ msgid "memo"
msgstr ""
#. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji
+#. w7Sqx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7315,6 +8123,7 @@ msgid "receiver"
msgstr ""
#. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji
+#. RFzY6
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7325,6 +8134,7 @@ msgid "pager"
msgstr "صفحة"
#. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji
+#. G6o5r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7334,6 +8144,7 @@ msgid "fax"
msgstr "فاكس"
#. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji
+#. jUz5C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7343,6 +8154,7 @@ msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
+#. P5xbh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7352,6 +8164,7 @@ msgid "loudspeaker"
msgstr ""
#. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji
+#. eJHQG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7362,6 +8175,7 @@ msgid "mega"
msgstr "أوميغا كبير"
#. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji
+#. YcCHy
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7372,6 +8186,7 @@ msgid "tray"
msgstr "سجود"
#. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji
+#. f8tnA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7382,6 +8197,7 @@ msgid "tray2"
msgstr "ترام2"
#. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji
+#. 8uDGB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7391,6 +8207,7 @@ msgid "package"
msgstr "حزمة"
#. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji
+#. tLYTu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7400,6 +8217,7 @@ msgid "e-mail"
msgstr "بريد إلكتروني"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
+#. qKRip
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7409,6 +8227,7 @@ msgid "envelope7"
msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
+#. HGe9s
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7418,6 +8237,7 @@ msgid "envelope8"
msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
+#. MiuAq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7427,6 +8247,7 @@ msgid "mailbox"
msgstr "صندوق بريد"
#. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji
+#. zyZUF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7436,6 +8257,7 @@ msgid "mailbox2"
msgstr "صندوق بريد2"
#. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji
+#. Sf5YJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7445,6 +8267,7 @@ msgid "mailbox3"
msgstr "صندوق بريد3"
#. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji
+#. fCEgu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7454,6 +8277,7 @@ msgid "mailbox4"
msgstr "صندوق بريد4"
#. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji
+#. TManz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7463,6 +8287,7 @@ msgid "postbox"
msgstr ""
#. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji
+#. u2ynR
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7473,6 +8298,7 @@ msgid "horn"
msgstr "ذرة"
#. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji
+#. gZmY9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7482,6 +8308,7 @@ msgid "newspaper"
msgstr "جريدة"
#. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji
+#. C22hA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7491,6 +8318,7 @@ msgid "mobile"
msgstr "هاتف جوال"
#. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji
+#. wLbiN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7500,6 +8328,7 @@ msgid "calling"
msgstr "اتصال"
#. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji
+#. d3uys
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7509,6 +8338,7 @@ msgid "vibration mode"
msgstr "وضع الاهتزاز"
#. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji
+#. SB2ZA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7518,6 +8348,7 @@ msgid "mobile phone off"
msgstr "إغلاق الهاتف المحمول"
#. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji
+#. s4cxU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7527,6 +8358,7 @@ msgid "no mobile"
msgstr "الهواتف المحمولة ممنوعة"
#. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji
+#. CjdGu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7536,6 +8368,7 @@ msgid "signal strength"
msgstr "قوة الإشارة"
#. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji
+#. eEaUM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7545,6 +8378,7 @@ msgid "camera"
msgstr "كاميرا"
#. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji
+#. iUoYo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7554,6 +8388,7 @@ msgid "video camera"
msgstr "كاميرا فيديو"
#. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji
+#. hDmEX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7563,6 +8398,7 @@ msgid "tv"
msgstr "تلفاز"
#. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji
+#. WLYDg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7572,6 +8408,7 @@ msgid "radio"
msgstr "راديو"
#. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji
+#. SRaWt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7581,6 +8418,7 @@ msgid "vhs"
msgstr ""
#. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji
+#. j6gBG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7590,6 +8428,7 @@ msgid "brightness"
msgstr "سطوع"
#. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji
+#. Kk8CH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7599,6 +8438,7 @@ msgid "brightness2"
msgstr "سطوع2"
#. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji
+#. gCXWY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7608,6 +8448,7 @@ msgid "mute"
msgstr "كتم"
#. 🔈 (U+1F508), see http://wiki.documentfoundation.org/Emoji
+#. zBDGG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7617,6 +8458,7 @@ msgid "speaker"
msgstr ""
#. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji
+#. q6Ccp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7626,6 +8468,7 @@ msgid "sound"
msgstr "صوت"
#. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji
+#. APeWX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7635,6 +8478,7 @@ msgid "loud sound"
msgstr "صوت عال"
#. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji
+#. ACRRR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7644,6 +8488,7 @@ msgid "battery"
msgstr "بطارية"
#. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji
+#. BG2mN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7653,6 +8498,7 @@ msgid "plug"
msgstr ""
#. 🔍 (U+1F50D), see http://wiki.documentfoundation.org/Emoji
+#. jY8rv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7662,6 +8508,7 @@ msgid "mag"
msgstr ""
#. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji
+#. ruAUv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7671,6 +8518,7 @@ msgid "mag2"
msgstr ""
#. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji
+#. 8ZUNE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7680,6 +8528,7 @@ msgid "lock2"
msgstr "قفل2"
#. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji
+#. 4g77k
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7689,6 +8538,7 @@ msgid "lock3"
msgstr "قفل3"
#. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji
+#. vkQ8o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7698,6 +8548,7 @@ msgid "key"
msgstr "مفتاح"
#. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji
+#. N7rGA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7707,6 +8558,7 @@ msgid "lock"
msgstr "قفل"
#. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji
+#. vRAcY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7716,6 +8568,7 @@ msgid "unlock"
msgstr "إلغاء قفل"
#. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji
+#. TjiAa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7725,6 +8578,7 @@ msgid "bell"
msgstr "جرس"
#. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji
+#. KQzBP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7734,6 +8588,7 @@ msgid "no bell"
msgstr "لا جرس"
#. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji
+#. R7oDp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7743,6 +8598,7 @@ msgid "bookmark2"
msgstr "علامة2"
#. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji
+#. jF6rA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7752,6 +8608,7 @@ msgid "link"
msgstr "وصلة"
#. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji
+#. kLzCC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7761,6 +8618,7 @@ msgid "radio button"
msgstr "زر راديو"
#. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji
+#. omtTU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7770,6 +8628,7 @@ msgid "underage"
msgstr "قاصر"
#. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji
+#. 63uY8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7779,6 +8638,7 @@ msgid "abc"
msgstr "ألفباء"
#. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji
+#. vYrKA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7788,6 +8648,7 @@ msgid "fire"
msgstr "نار"
#. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji
+#. BXCDZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7797,6 +8658,7 @@ msgid "flashlight"
msgstr "وميض"
#. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji
+#. yiTrG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7807,6 +8669,7 @@ msgid "wrench"
msgstr "الفرنسية"
#. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji
+#. xkGE3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7816,6 +8679,7 @@ msgid "hammer"
msgstr "مطرقة"
#. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji
+#. p4ctN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7825,6 +8689,7 @@ msgid "nut and bolt"
msgstr ""
#. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji
+#. SEuBH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7834,6 +8699,7 @@ msgid "knife"
msgstr "سكين"
#. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji
+#. 2RSdn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7843,6 +8709,7 @@ msgid "pistol"
msgstr "مسدس"
#. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji
+#. n3FVK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7852,6 +8719,7 @@ msgid "microscope"
msgstr "مايكروسكوب"
#. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji
+#. 79jnu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7861,6 +8729,7 @@ msgid "telescope"
msgstr "تيليسكوب"
#. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji
+#. cFgDU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7870,6 +8739,7 @@ msgid "crystal ball"
msgstr "كرة كريستالية"
#. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji
+#. 6mztF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7879,6 +8749,7 @@ msgid "beginner"
msgstr "مبتدئ"
#. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji
+#. w7pSw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7888,6 +8759,7 @@ msgid "trident"
msgstr ""
#. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji
+#. EmJnV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7897,6 +8769,7 @@ msgid "button2"
msgstr "زر2"
#. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji
+#. WRBMQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7906,6 +8779,7 @@ msgid "button"
msgstr "زر"
#. 🕐 (U+1F550), see http://wiki.documentfoundation.org/Emoji
+#. e52Dc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7915,6 +8789,7 @@ msgid "1 h"
msgstr ""
#. 🕑 (U+1F551), see http://wiki.documentfoundation.org/Emoji
+#. ABhgX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7924,6 +8799,7 @@ msgid "2 h"
msgstr ""
#. 🕒 (U+1F552), see http://wiki.documentfoundation.org/Emoji
+#. gMDo3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7933,6 +8809,7 @@ msgid "3 h"
msgstr ""
#. 🕓 (U+1F553), see http://wiki.documentfoundation.org/Emoji
+#. uQYrA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7942,6 +8819,7 @@ msgid "4 h"
msgstr ""
#. 🕔 (U+1F554), see http://wiki.documentfoundation.org/Emoji
+#. eU5ps
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7951,6 +8829,7 @@ msgid "5 h"
msgstr ""
#. 🕕 (U+1F555), see http://wiki.documentfoundation.org/Emoji
+#. yZrjC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7960,6 +8839,7 @@ msgid "6 h"
msgstr ""
#. 🕖 (U+1F556), see http://wiki.documentfoundation.org/Emoji
+#. pJEuM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7969,6 +8849,7 @@ msgid "7 h"
msgstr ""
#. 🕗 (U+1F557), see http://wiki.documentfoundation.org/Emoji
+#. eHaWk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7978,6 +8859,7 @@ msgid "8 h"
msgstr ""
#. 🕘 (U+1F558), see http://wiki.documentfoundation.org/Emoji
+#. BJKnh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7987,6 +8869,7 @@ msgid "9 h"
msgstr ""
#. 🕙 (U+1F559), see http://wiki.documentfoundation.org/Emoji
+#. ouBxv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7996,6 +8879,7 @@ msgid "10 h"
msgstr ""
#. 🕚 (U+1F55A), see http://wiki.documentfoundation.org/Emoji
+#. DA8M8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8005,6 +8889,7 @@ msgid "11 h"
msgstr ""
#. 🕛 (U+1F55B), see http://wiki.documentfoundation.org/Emoji
+#. NF5SV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8014,6 +8899,7 @@ msgid "12 h"
msgstr ""
#. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji
+#. t7XEN
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8024,6 +8910,7 @@ msgid "1.30"
msgstr "1:30"
#. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji
+#. ac4Kx
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8034,6 +8921,7 @@ msgid "2.30"
msgstr "2:30"
#. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji
+#. sd7EA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8044,6 +8932,7 @@ msgid "3.30"
msgstr "3:30"
#. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji
+#. CZwtb
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8054,6 +8943,7 @@ msgid "4.30"
msgstr "4:30"
#. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji
+#. VunGj
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8064,6 +8954,7 @@ msgid "5.30"
msgstr "5:30"
#. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji
+#. WgH9r
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8074,6 +8965,7 @@ msgid "6.30"
msgstr "6:30"
#. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji
+#. HfCBL
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8084,6 +8976,7 @@ msgid "7.30"
msgstr "7:30"
#. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji
+#. GGeBZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8094,6 +8987,7 @@ msgid "8.30"
msgstr "8:30"
#. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji
+#. DCtfy
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8104,6 +8998,7 @@ msgid "9.30"
msgstr "9:30"
#. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji
+#. tJG5J
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8114,6 +9009,7 @@ msgid "10.30"
msgstr "10:30"
#. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji
+#. g55YB
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8124,6 +9020,7 @@ msgid "11.30"
msgstr "11:30"
#. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji
+#. PGjbq
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8134,6 +9031,7 @@ msgid "12.30"
msgstr "12:30"
#. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji
+#. yzedv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8143,6 +9041,7 @@ msgid "Fuji"
msgstr "فوجي"
#. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji
+#. zoL5S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8152,6 +9051,7 @@ msgid "tower"
msgstr "برج"
#. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji
+#. T5ixq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8161,6 +9061,7 @@ msgid "liberty"
msgstr "حرية"
#. 🗾 (U+1F5FE), see http://wiki.documentfoundation.org/Emoji
+#. vtyHr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8170,6 +9071,7 @@ msgid "Japan"
msgstr "اليابان"
#. 🗿 (U+1F5FF), see http://wiki.documentfoundation.org/Emoji
+#. rdfcs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8179,6 +9081,7 @@ msgid "statue"
msgstr "تمثال"
#. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji
+#. pJXUT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8188,6 +9091,7 @@ msgid "grinning"
msgstr "ابتسامة عريضة"
#. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji
+#. aTARh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8197,6 +9101,7 @@ msgid "grin"
msgstr "ابتسامة"
#. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji
+#. DRNjV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8206,6 +9111,7 @@ msgid "joy"
msgstr "مرح"
#. 😃 (U+1F603), see http://wiki.documentfoundation.org/Emoji
+#. Gcdda
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8215,6 +9121,7 @@ msgid "smiley"
msgstr "ضحك"
#. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji
+#. QBnjZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8224,6 +9131,7 @@ msgid "smile"
msgstr "ضحكة"
#. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji
+#. xmY3d
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8233,6 +9141,7 @@ msgid "sweat smile"
msgstr "ضحكة مع قطرة"
#. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji
+#. RLsCo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8242,6 +9151,7 @@ msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
+#. pFuaT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8251,6 +9161,7 @@ msgid "innocent"
msgstr "بريء"
#. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji
+#. j4szE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8260,6 +9171,7 @@ msgid "smiling imp"
msgstr "عفريت مبتسم"
#. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji
+#. k4AZW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8269,6 +9181,7 @@ msgid "wink"
msgstr "غمزة"
#. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji
+#. xPZW8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8278,6 +9191,7 @@ msgid "blush"
msgstr "استحياء"
#. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji
+#. d5q9X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8287,6 +9201,7 @@ msgid "yum"
msgstr "تلذذ"
#. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji
+#. PHXAL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8296,6 +9211,7 @@ msgid "relieved"
msgstr "ارتياح"
#. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji
+#. BhNrx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8305,6 +9221,7 @@ msgid "heart eyes"
msgstr "عينان بشكل القلب"
#. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji
+#. ybcju
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8314,6 +9231,7 @@ msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
+#. GDHDY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8323,6 +9241,7 @@ msgid "smirk"
msgstr "ابتسام بتكلف"
#. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji
+#. KsfGz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8332,6 +9251,7 @@ msgid "neutral face"
msgstr "وجه محايد"
#. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji
+#. w7cU8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8341,6 +9261,7 @@ msgid "expressionless"
msgstr "لا تعليق"
#. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji
+#. teWUy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8350,6 +9271,7 @@ msgid "unamused"
msgstr "مستاء"
#. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji
+#. sPBAF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8359,6 +9281,7 @@ msgid "sweat"
msgstr "تعرق"
#. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji
+#. AEuYX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8368,6 +9291,7 @@ msgid "pensive"
msgstr "تأمل"
#. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji
+#. ZB5DT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8377,6 +9301,7 @@ msgid "confused"
msgstr "ارتباك"
#. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji
+#. gFEjA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8386,6 +9311,7 @@ msgid "confounded"
msgstr "احتيار"
#. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji
+#. Wu9JJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8395,6 +9321,7 @@ msgid "kissing"
msgstr "تقبيل"
#. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji
+#. BzWbz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8404,6 +9331,7 @@ msgid "kiss2"
msgstr "قبلة2"
#. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji
+#. 2sYft
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8413,6 +9341,7 @@ msgid "kiss3"
msgstr "قبلة3"
#. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji
+#. D7GhD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8422,6 +9351,7 @@ msgid "kiss4"
msgstr "قبلة4"
#. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji
+#. ryiUu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8431,6 +9361,7 @@ msgid "tongue2"
msgstr "لسان2"
#. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji
+#. JuA5S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8440,6 +9371,7 @@ msgid "tongue3"
msgstr "لسان3"
#. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji
+#. CjnZ6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8449,6 +9381,7 @@ msgid "tongue4"
msgstr "لسان4"
#. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji
+#. DzqHp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8458,6 +9391,7 @@ msgid "disappointed"
msgstr "احباط"
#. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji
+#. H4sAW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8467,6 +9401,7 @@ msgid "worried"
msgstr "قلق"
#. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji
+#. oCCny
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8476,6 +9411,7 @@ msgid "angry"
msgstr "غضب"
#. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji
+#. 6wuDY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8485,6 +9421,7 @@ msgid "rage"
msgstr "حنق"
#. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji
+#. x27LD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8494,6 +9431,7 @@ msgid "cry"
msgstr "بكاء"
#. 😣 (U+1F623), see http://wiki.documentfoundation.org/Emoji
+#. DngFr
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8504,6 +9442,7 @@ msgid "persevere"
msgstr "مثابرة"
#. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji
+#. gBDzZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8513,6 +9452,7 @@ msgid "triumph"
msgstr ""
#. 😥 (U+1F625), see http://wiki.documentfoundation.org/Emoji
+#. 5hFMz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8522,6 +9462,7 @@ msgid "disappointed relieved"
msgstr ""
#. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji
+#. Kerje
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8531,6 +9472,7 @@ msgid "frowning"
msgstr ""
#. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji
+#. kZYF3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8540,6 +9482,7 @@ msgid "anguished"
msgstr "مكروب"
#. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji
+#. bu62A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8549,6 +9492,7 @@ msgid "fearful"
msgstr "خويف"
#. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji
+#. 6HkfU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8558,6 +9502,7 @@ msgid "weary"
msgstr "ضجران"
#. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji
+#. XDpxA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8567,6 +9512,7 @@ msgid "sleepy"
msgstr "نعس"
#. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji
+#. RwKrG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8576,6 +9522,7 @@ msgid "tired face"
msgstr "وجه تعب"
#. 😬 (U+1F62C), see http://wiki.documentfoundation.org/Emoji
+#. x9ZFy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8585,6 +9532,7 @@ msgid "grimacing"
msgstr "تكشير"
#. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji
+#. BrbFb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8594,6 +9542,7 @@ msgid "sob"
msgstr "نشج"
#. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji
+#. D6iTF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8603,6 +9552,7 @@ msgid "open mouth"
msgstr "فم مفتوح"
#. 😯 (U+1F62F), see http://wiki.documentfoundation.org/Emoji
+#. uMReg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8612,6 +9562,7 @@ msgid "hushed"
msgstr "خامد"
#. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji
+#. tavtt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8621,6 +9572,7 @@ msgid "cold sweat"
msgstr "تعرق بارد"
#. 😱 (U+1F631), see http://wiki.documentfoundation.org/Emoji
+#. JpoSb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8630,6 +9582,7 @@ msgid "scream"
msgstr "صراخ"
#. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji
+#. vDqqP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8639,6 +9592,7 @@ msgid "astonished"
msgstr "مذهول"
#. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji
+#. QtFif
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8648,6 +9602,7 @@ msgid "flushed"
msgstr "محمر"
#. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji
+#. MFwtr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8657,6 +9612,7 @@ msgid "sleeping"
msgstr "نائم"
#. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji
+#. MAD5T
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8666,6 +9622,7 @@ msgid "dizzy face"
msgstr "وجه دائخ"
#. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji
+#. NYdBC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8675,6 +9632,7 @@ msgid "no mouth"
msgstr "بلا فم"
#. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji
+#. 9E7g6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8684,6 +9642,7 @@ msgid "mask"
msgstr "قناع"
#. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji
+#. vHxL5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8693,6 +9652,7 @@ msgid "smile cat"
msgstr "قطة تضحك"
#. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji
+#. GXKzF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8702,6 +9662,7 @@ msgid "joy cat"
msgstr "قطة مرحة"
#. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji
+#. vAbxV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8711,6 +9672,7 @@ msgid "smiley cat"
msgstr "قطة ضاحكة"
#. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji
+#. hzzjE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8720,6 +9682,7 @@ msgid "heart eyes cat"
msgstr "عينا قطة بشكل القلب"
#. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji
+#. FuB4S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8729,6 +9692,7 @@ msgid "smirk cat"
msgstr "قطة تبتسم بتكلف"
#. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji
+#. cGEsx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8738,6 +9702,7 @@ msgid "kissing cat"
msgstr "قطة تقبل"
#. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji
+#. NyFCw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8747,6 +9712,7 @@ msgid "pouting cat"
msgstr "قطة متجهمة"
#. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji
+#. Aoh9Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8756,6 +9722,7 @@ msgid "crying cat"
msgstr "قطة تبكي"
#. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji
+#. W4tZy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8765,6 +9732,7 @@ msgid "scream cat"
msgstr "قطة تصرخ"
#. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji
+#. F5Acu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8774,6 +9742,7 @@ msgid "no good"
msgstr ""
#. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji
+#. zMSZd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8783,6 +9752,7 @@ msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
+#. 4BtEr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8792,6 +9762,7 @@ msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
+#. fB5uj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8801,6 +9772,7 @@ msgid "see no evil"
msgstr ""
#. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji
+#. Ja8yE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8810,6 +9782,7 @@ msgid "hear no evil"
msgstr ""
#. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji
+#. e3zGe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8819,6 +9792,7 @@ msgid "speak no evil"
msgstr ""
#. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji
+#. Pwpxw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8828,6 +9802,7 @@ msgid "happiness"
msgstr "سعادة"
#. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji
+#. hTJ9z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8837,6 +9812,7 @@ msgid "celebration"
msgstr "احتفال"
#. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji
+#. xhTBV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8846,6 +9822,7 @@ msgid "person frowning"
msgstr ""
#. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji
+#. entX5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8855,6 +9832,7 @@ msgid "person pouting"
msgstr ""
#. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji
+#. KtK2c
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8864,6 +9842,7 @@ msgid "pray"
msgstr "سجود"
#. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji
+#. 6GdwG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8873,6 +9852,7 @@ msgid "rocket"
msgstr "صاروخ"
#. 🚁 (U+1F681), see http://wiki.documentfoundation.org/Emoji
+#. hADct
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8882,6 +9862,7 @@ msgid "helicopter"
msgstr "مروحية"
#. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji
+#. CEBY6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8891,6 +9872,7 @@ msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
+#. uiu74
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8900,6 +9882,7 @@ msgid "railway car"
msgstr ""
#. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji
+#. 6gdPP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8909,6 +9892,7 @@ msgid "train2"
msgstr "قطار2"
#. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji
+#. KWFVc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8918,6 +9902,7 @@ msgid "train3"
msgstr "قطار3"
#. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji
+#. UfDGn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8927,6 +9912,7 @@ msgid "train"
msgstr "قطار"
#. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji
+#. dQgQx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8936,6 +9922,7 @@ msgid "metro"
msgstr "مترو"
#. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji
+#. jL5UD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8945,6 +9932,7 @@ msgid "light rail"
msgstr ""
#. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji
+#. nU3jZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8954,6 +9942,7 @@ msgid "station"
msgstr "محطة"
#. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji
+#. Dri8R
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8963,6 +9952,7 @@ msgid "tram"
msgstr "ترام"
#. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji
+#. 9YAFb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8972,6 +9962,7 @@ msgid "tram2"
msgstr "ترام2"
#. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji
+#. DhKQs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8981,6 +9972,7 @@ msgid "bus"
msgstr "حافلة"
#. 🚍 (U+1F68D), see http://wiki.documentfoundation.org/Emoji
+#. fTFJN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8990,6 +9982,7 @@ msgid "bus2"
msgstr "حافلة2"
#. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji
+#. tBeU2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8999,6 +9992,7 @@ msgid "trolleybus"
msgstr "ترولي"
#. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji
+#. YFFGE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9008,6 +10002,7 @@ msgid "busstop"
msgstr "موقف حافلة"
#. 🚐 (U+1F690), see http://wiki.documentfoundation.org/Emoji
+#. AiqLy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9017,6 +10012,7 @@ msgid "minibus"
msgstr "حافلة صغيرة"
#. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji
+#. UjeDu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9026,6 +10022,7 @@ msgid "ambulance"
msgstr "سيارة إسعاف"
#. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji
+#. fHERr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9035,6 +10032,7 @@ msgid "fire engine"
msgstr "سيارة إطفاء"
#. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji
+#. bgbGa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9044,6 +10042,7 @@ msgid "police car"
msgstr "سيارة شرطة"
#. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji
+#. wMPG9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9053,6 +10052,7 @@ msgid "police car2"
msgstr "سيارة شرطة2"
#. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji
+#. xVRoq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9062,6 +10062,7 @@ msgid "taxi"
msgstr "سيارة أجرة"
#. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji
+#. hvAxP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9071,6 +10072,7 @@ msgid "taxi2"
msgstr "سيارة أجرة2"
#. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji
+#. 7EjBh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9080,6 +10082,7 @@ msgid "car"
msgstr "سيارة"
#. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji
+#. VAENQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9089,6 +10092,7 @@ msgid "car2"
msgstr "سيارة2"
#. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji
+#. F53eT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9098,6 +10102,7 @@ msgid "car3"
msgstr "سيارة3"
#. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji
+#. Ky66X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9107,6 +10112,7 @@ msgid "truck2"
msgstr "شاحنة2"
#. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji
+#. 8soAF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9116,6 +10122,7 @@ msgid "lorry"
msgstr ""
#. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji
+#. Jwdgy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9125,6 +10132,7 @@ msgid "tractor"
msgstr "جرارة"
#. 🚝 (U+1F69D), see http://wiki.documentfoundation.org/Emoji
+#. xBCEM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9134,6 +10142,7 @@ msgid "monorail"
msgstr ""
#. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji
+#. YF5em
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9143,6 +10152,7 @@ msgid "mountain railway"
msgstr ""
#. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji
+#. BFS7w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9152,6 +10162,7 @@ msgid "suspension railway"
msgstr ""
#. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji
+#. xw2kG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9161,6 +10172,7 @@ msgid "mountain cableway"
msgstr ""
#. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji
+#. D6Kee
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9170,6 +10182,7 @@ msgid "aerial tramway"
msgstr ""
#. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji
+#. iT3XR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9179,6 +10192,7 @@ msgid "ship"
msgstr "سفينة"
#. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji
+#. UGEtk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9188,6 +10202,7 @@ msgid "rowboat"
msgstr "زورق"
#. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji
+#. eBgos
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9197,6 +10212,7 @@ msgid "speedboat"
msgstr "زورق بخاري"
#. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji
+#. hFcdF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9206,6 +10222,7 @@ msgid "traffic light"
msgstr "إشارة مرور"
#. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji
+#. nV9zL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9215,6 +10232,7 @@ msgid "traffic light2"
msgstr "إشارة مرور٢"
#. 🚧 (U+1F6A7), see http://wiki.documentfoundation.org/Emoji
+#. JaFGo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9224,6 +10242,7 @@ msgid "construction"
msgstr "تشييد"
#. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji
+#. oixqW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9233,6 +10252,7 @@ msgid "rotating light"
msgstr ""
#. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji
+#. AGDmx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9242,6 +10262,7 @@ msgid "triangular flag"
msgstr "علم مثلث"
#. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji
+#. FCxDK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9251,6 +10272,7 @@ msgid "door"
msgstr "باب"
#. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji
+#. dAJJp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9260,6 +10282,7 @@ msgid "no entry sign"
msgstr "إشارة ممنوع الدخول"
#. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji
+#. H2dFa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9269,6 +10292,7 @@ msgid "smoking"
msgstr "تدخين"
#. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji
+#. ReEtE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9278,6 +10302,7 @@ msgid "no smoking"
msgstr "ممنوع التدخين"
#. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji
+#. owPyG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9287,6 +10312,7 @@ msgid "litter"
msgstr ""
#. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji
+#. 4qXxK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9296,6 +10322,7 @@ msgid "do not litter"
msgstr ""
#. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji
+#. ZjTkh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9305,6 +10332,7 @@ msgid "potable water"
msgstr ""
#. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji
+#. sbTAA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9314,6 +10342,7 @@ msgid "non-potable water"
msgstr ""
#. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji
+#. KZmCA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9324,6 +10353,7 @@ msgid "bike"
msgstr "يشابه"
#. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji
+#. RECxo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9333,6 +10363,7 @@ msgid "no bicycles"
msgstr "الدراجات ممنوعة"
#. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji
+#. FGCMF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9342,6 +10373,7 @@ msgid "bicyclist"
msgstr "راكب دراجة"
#. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji
+#. P3F9z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9351,6 +10383,7 @@ msgid "bicyclist2"
msgstr "راكب دراجة2"
#. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji
+#. 4Jk7j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9360,6 +10393,7 @@ msgid "walking"
msgstr "مشي"
#. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji
+#. wMwUM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9369,6 +10403,7 @@ msgid "no pedestrians"
msgstr ""
#. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji
+#. tfRvX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9378,6 +10413,7 @@ msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
+#. 5bTta
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9387,6 +10423,7 @@ msgid "mens"
msgstr "رجال"
#. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji
+#. DkTJE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9396,6 +10433,7 @@ msgid "womens"
msgstr "نساء"
#. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji
+#. fyZ5J
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9405,6 +10443,7 @@ msgid "restroom"
msgstr "غرفة راحة"
#. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji
+#. waXZA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9414,6 +10453,7 @@ msgid "baby2"
msgstr "طفل2"
#. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji
+#. 7j9FT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9423,6 +10463,7 @@ msgid "toilet"
msgstr "مرحاض"
#. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji
+#. 2GY7E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9432,6 +10473,7 @@ msgid "toilet2"
msgstr "مرحاض2"
#. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji
+#. WrCWt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9441,6 +10483,7 @@ msgid "shower"
msgstr "دش"
#. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji
+#. g545x
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9451,6 +10494,7 @@ msgid "bath"
msgstr "سباحة"
#. 🛁 (U+1F6C1), see http://wiki.documentfoundation.org/Emoji
+#. miVDJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9460,6 +10504,7 @@ msgid "bathtub"
msgstr "حوض استحمام"
#. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji
+#. BXMUC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9469,6 +10514,7 @@ msgid "passport"
msgstr "جواز سفر"
#. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji
+#. EcdFo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9478,6 +10524,7 @@ msgid "customs"
msgstr "جمرك"
#. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji
+#. rR2Xw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9487,6 +10534,7 @@ msgid "baggage"
msgstr "أمتعة"
#. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji
+#. pxsMt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9496,6 +10544,7 @@ msgid "left luggage"
msgstr "ترك الأمتعة"
#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#. LZEAD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9505,6 +10554,7 @@ msgid "feast"
msgstr ""
#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#. PWmbQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9514,6 +10564,7 @@ msgid "smiling3"
msgstr ""
#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#. CeamS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9523,6 +10574,7 @@ msgid "frowning2"
msgstr ""
#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#. vhzbs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9532,6 +10584,7 @@ msgid "detective"
msgstr ""
#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#. Ae2cr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9541,6 +10594,7 @@ msgid "sleep"
msgstr ""
#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#. Xuc2A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9550,6 +10604,7 @@ msgid "suit"
msgstr ""
#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#. AkeBV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9559,6 +10614,7 @@ msgid "head"
msgstr ""
#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#. cf525
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9568,6 +10624,7 @@ msgid "golf"
msgstr ""
#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#. As3GE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9577,6 +10634,7 @@ msgid "weight lifter"
msgstr ""
#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#. bDCyA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9586,6 +10644,7 @@ msgid "car4"
msgstr ""
#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#. 2MoqD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9595,6 +10654,7 @@ msgid "motorcycle"
msgstr ""
#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#. gNBn5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9604,6 +10664,7 @@ msgid "finger"
msgstr ""
#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#. AHWD9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9613,6 +10674,7 @@ msgid "spock"
msgstr ""
#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#. Ati77
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9622,6 +10684,7 @@ msgid "hand2"
msgstr ""
#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#. 6ADML
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9631,6 +10694,7 @@ msgid "eye"
msgstr ""
#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#. z7WCd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9640,6 +10704,7 @@ msgid "bubble"
msgstr ""
#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#. 7FoF3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9649,6 +10714,7 @@ msgid "bubble4"
msgstr ""
#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#. djWbu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9658,6 +10724,7 @@ msgid "hole"
msgstr ""
#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#. AGMoo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9667,6 +10734,7 @@ msgid "sunglasses"
msgstr ""
#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#. fq7Cq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9676,6 +10744,7 @@ msgid "shop"
msgstr ""
#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#. eQaW4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9685,6 +10754,7 @@ msgid "chipmunk"
msgstr ""
#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#. Yoo9T
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9694,6 +10764,7 @@ msgid "dove"
msgstr ""
#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#. Uyg9S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9703,6 +10774,7 @@ msgid "spider"
msgstr ""
#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#. DPtYj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9712,6 +10784,7 @@ msgid "web"
msgstr ""
#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#. UaQDN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9721,6 +10794,7 @@ msgid "rosette"
msgstr ""
#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#. SAxJc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9730,6 +10804,7 @@ msgid "pepper"
msgstr ""
#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#. 3WpkF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9739,6 +10814,7 @@ msgid "plate"
msgstr ""
#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#. zvA3Y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9748,6 +10824,7 @@ msgid "map"
msgstr ""
#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#. PU3q7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9757,6 +10834,7 @@ msgid "mountain2"
msgstr ""
#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#. 9CR2B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9766,6 +10844,7 @@ msgid "camping"
msgstr ""
#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#. QQU86
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9775,6 +10854,7 @@ msgid "beach"
msgstr ""
#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#. E3dKM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9784,6 +10864,7 @@ msgid "desert"
msgstr ""
#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#. uFHXi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9793,6 +10874,7 @@ msgid "island"
msgstr ""
#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#. rB6rV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9802,6 +10884,7 @@ msgid "park"
msgstr ""
#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#. KtGDD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9811,6 +10894,7 @@ msgid "stadium"
msgstr ""
#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#. 9UYRC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9820,6 +10904,7 @@ msgid "museum"
msgstr ""
#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#. TU5KH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9829,6 +10914,7 @@ msgid "crane"
msgstr ""
#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#. ybjvN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9838,6 +10924,7 @@ msgid "houses"
msgstr ""
#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#. TEAtW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9847,15 +10934,17 @@ msgid "house3"
msgstr ""
#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#. rjmXE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"CITYSCAPE\n"
"LngText.text"
msgid "city"
-msgstr ""
+msgstr "مدينة"
#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#. gdgnE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9865,6 +10954,7 @@ msgid "motorway"
msgstr ""
#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#. XNZp2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9874,6 +10964,7 @@ msgid "track"
msgstr ""
#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#. JDKF2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9883,6 +10974,7 @@ msgid "drum"
msgstr ""
#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#. KG2xi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9892,6 +10984,7 @@ msgid "ship2"
msgstr ""
#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#. hfqZC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9901,6 +10994,7 @@ msgid "motor boat"
msgstr ""
#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#. M7r8K
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9910,6 +11004,7 @@ msgid "airplane2"
msgstr ""
#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#. FTJfG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9919,6 +11014,7 @@ msgid "departure"
msgstr ""
#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#. CwiZi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9928,6 +11024,7 @@ msgid "arrival"
msgstr ""
#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#. 5BbRQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9937,6 +11034,7 @@ msgid "satellite"
msgstr ""
#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#. GePUa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9946,6 +11044,7 @@ msgid "bell2"
msgstr ""
#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#. N3XKK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9955,6 +11054,7 @@ msgid "clock"
msgstr ""
#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#. vC2BF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9964,6 +11064,7 @@ msgid "thermometer"
msgstr ""
#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#. eDCCS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9973,6 +11074,7 @@ msgid "cloudy"
msgstr ""
#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#. yuxDV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9982,6 +11084,7 @@ msgid "cloudy2"
msgstr ""
#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#. SwLUG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9991,6 +11094,7 @@ msgid "rainy"
msgstr ""
#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#. uBa2e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10000,6 +11104,7 @@ msgid "storm"
msgstr ""
#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#. f3Sbb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10009,6 +11114,7 @@ msgid "snow"
msgstr ""
#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#. boe8A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10018,6 +11124,7 @@ msgid "lightning"
msgstr ""
#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#. RS8Wb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10027,6 +11134,7 @@ msgid "tornado"
msgstr ""
#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#. EqDhD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10036,6 +11144,7 @@ msgid "fog"
msgstr ""
#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#. XTTqx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10045,6 +11154,7 @@ msgid "wind"
msgstr ""
#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#. 7X7bW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10054,6 +11164,7 @@ msgid "ribbon"
msgstr ""
#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#. RqApZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10063,6 +11174,7 @@ msgid "ticket2"
msgstr ""
#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#. GLTVB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10072,6 +11184,7 @@ msgid "medal2"
msgstr ""
#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#. uT4sx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10081,6 +11194,7 @@ msgid "medal"
msgstr ""
#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#. EszEZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10090,6 +11204,7 @@ msgid "joystick"
msgstr ""
#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#. wY9cB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10099,6 +11214,7 @@ msgid "picture"
msgstr ""
#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#. RWFZz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10108,6 +11224,7 @@ msgid "microphone2"
msgstr ""
#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#. FNDDe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10117,6 +11234,7 @@ msgid "slider"
msgstr ""
#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#. HRvG2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10126,6 +11244,7 @@ msgid "control"
msgstr ""
#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#. DunGT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10135,6 +11254,7 @@ msgid "computer2"
msgstr ""
#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#. 5i9iG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10144,6 +11264,7 @@ msgid "printer"
msgstr ""
#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#. gCiTV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10153,6 +11274,7 @@ msgid "mouse3"
msgstr ""
#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#. kr6mD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10162,6 +11284,7 @@ msgid "trackball"
msgstr ""
#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#. a7M8c
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10171,6 +11294,7 @@ msgid "film"
msgstr ""
#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#. 5XEHv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10180,6 +11304,7 @@ msgid "projector"
msgstr ""
#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#. e6d8k
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10189,6 +11314,7 @@ msgid "flash"
msgstr ""
#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#. 85ZZG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10198,6 +11324,7 @@ msgid "candle"
msgstr ""
#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#. Roj4S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10207,6 +11334,7 @@ msgid "newspaper2"
msgstr ""
#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#. KGGrV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10216,6 +11344,7 @@ msgid "label"
msgstr ""
#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#. MtcT9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10225,6 +11354,7 @@ msgid "ballot"
msgstr ""
#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#. eVhur
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10234,6 +11364,7 @@ msgid "pen2"
msgstr ""
#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#. zPbDv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10243,6 +11374,7 @@ msgid "pen"
msgstr ""
#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#. GMFPP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10252,6 +11384,7 @@ msgid "paintbrush"
msgstr ""
#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#. oj4qT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10261,6 +11394,7 @@ msgid "crayon"
msgstr ""
#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#. 6mFoM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10270,6 +11404,7 @@ msgid "index"
msgstr ""
#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#. 4vrvA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10279,6 +11414,7 @@ msgid "notepad"
msgstr ""
#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#. fjcB6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10288,6 +11424,7 @@ msgid "calendar3"
msgstr ""
#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#. bwrwB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10297,6 +11434,7 @@ msgid "paperclip2"
msgstr ""
#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#. zm6R6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10306,6 +11444,7 @@ msgid "box"
msgstr ""
#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#. D9Ev3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10315,6 +11454,7 @@ msgid "cabinet"
msgstr ""
#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#. 7Rhsi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10324,6 +11464,7 @@ msgid "wastebasket"
msgstr ""
#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#. i498o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10333,6 +11474,7 @@ msgid "key2"
msgstr ""
#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#. EDHj7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10342,6 +11484,7 @@ msgid "hammer and wrench"
msgstr ""
#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#. qnaCC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10351,6 +11494,7 @@ msgid "knife2"
msgstr ""
#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#. QCXRd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10360,6 +11504,7 @@ msgid "shield"
msgstr ""
#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#. F9G5C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10369,6 +11514,7 @@ msgid "clamp"
msgstr ""
#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#. g4DGu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10378,6 +11524,7 @@ msgid "bed"
msgstr ""
#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#. XnFom
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10387,6 +11534,7 @@ msgid "couch"
msgstr ""
#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#. R8EvG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10396,6 +11544,7 @@ msgid "om"
msgstr ""
#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#. ETWok
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10405,6 +11554,7 @@ msgid "pause"
msgstr ""
#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#. 6Fkq7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10414,6 +11564,7 @@ msgid "stop2"
msgstr ""
#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#. PApbW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10423,6 +11574,7 @@ msgid "record"
msgstr ""
#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#. hytrL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10432,6 +11584,7 @@ msgid "flag"
msgstr ""
#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#. mBjRj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10441,6 +11594,7 @@ msgid "flag2"
msgstr ""
#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#. GBXU7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10450,6 +11604,7 @@ msgid "checkbox4"
msgstr ""
#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#. htBDW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10459,6 +11614,7 @@ msgid "boys"
msgstr ""
#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#. MNHt2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10468,6 +11624,7 @@ msgid "information3"
msgstr ""
#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#. 9wBWk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10477,6 +11634,7 @@ msgid "girls"
msgstr ""
#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#. wpUD2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10486,6 +11644,7 @@ msgid "airplane4"
msgstr ""
#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#. AZpeG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10495,6 +11654,7 @@ msgid "locomotive2"
msgstr ""
#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#. RCBUE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10504,6 +11664,7 @@ msgid "airplane3"
msgstr ""
#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#. vEzt8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10513,6 +11674,7 @@ msgid "fire engine2"
msgstr ""
#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#. 5E5qt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10522,6 +11684,7 @@ msgid "airplane5"
msgstr ""
#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#. 3YCGT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10531,6 +11694,7 @@ msgid "airplane6"
msgstr ""
#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#. V5pj8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10540,6 +11704,7 @@ msgid "bubble5"
msgstr ""
#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#. yp5bD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10549,6 +11714,7 @@ msgid "bubble6"
msgstr ""
#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#. FFx4K
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10558,6 +11724,7 @@ msgid "bubble7"
msgstr ""
#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#. JEqPj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10567,6 +11734,7 @@ msgid "chart5"
msgstr ""
#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#. LNFqr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10576,6 +11744,7 @@ msgid "page4"
msgstr ""
#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#. zi4B5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10585,6 +11754,7 @@ msgid "writing2"
msgstr ""
#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#. r8Xz8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10594,6 +11764,7 @@ msgid "rays"
msgstr ""
#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#. 7Zvkw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10603,6 +11774,7 @@ msgid "notes3"
msgstr ""
#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#. gYeEg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10612,6 +11784,7 @@ msgid "circle3"
msgstr ""
#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#. iywvE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10621,6 +11794,7 @@ msgid "notes4"
msgstr ""
#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#. ESTxC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10630,6 +11804,7 @@ msgid "book"
msgstr ""
#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#. qF7am
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10639,6 +11814,7 @@ msgid "font"
msgstr ""
#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#. ZSeGW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10648,6 +11824,7 @@ msgid "circle4"
msgstr ""
#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#. VMMh9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10657,6 +11834,7 @@ msgid "bullhorn"
msgstr ""
#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#. EvEb4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10666,6 +11844,7 @@ msgid "bullhorn2"
msgstr ""
#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#. AtkEf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10675,6 +11854,7 @@ msgid "receiver2"
msgstr ""
#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#. EgspW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10684,6 +11864,7 @@ msgid "phone3"
msgstr ""
#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#. WXomE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10693,6 +11874,7 @@ msgid "receiver4"
msgstr ""
#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#. emFc7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10702,6 +11884,7 @@ msgid "receiver3"
msgstr ""
#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#. HdoYh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10711,6 +11894,7 @@ msgid "phone4"
msgstr ""
#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#. 335BP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10720,6 +11904,7 @@ msgid "left4"
msgstr ""
#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#. ubunD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10729,6 +11914,7 @@ msgid "ok2"
msgstr ""
#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#. 3YbN8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10738,6 +11924,7 @@ msgid "left5"
msgstr ""
#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#. 26mFx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10747,6 +11934,7 @@ msgid "rays2"
msgstr ""
#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#. YxMaD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10756,6 +11944,7 @@ msgid "right4"
msgstr ""
#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#. RHxMa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10765,6 +11954,7 @@ msgid "down3"
msgstr ""
#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#. Feod4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10774,6 +11964,7 @@ msgid "up3"
msgstr ""
#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#. vWrdA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10783,6 +11974,7 @@ msgid "droplet2"
msgstr ""
#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#. tzhR8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10792,6 +11984,7 @@ msgid "synthesizer"
msgstr ""
#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#. KpEFc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10801,6 +11994,7 @@ msgid "bouquet2"
msgstr ""
#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#. kBDE9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10810,6 +12004,7 @@ msgid "heart2"
msgstr ""
#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#. kWWTC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10819,6 +12014,7 @@ msgid "pirate"
msgstr ""
#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#. Lk3GC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10828,6 +12024,7 @@ msgid "modem"
msgstr ""
#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#. CYnVK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10837,6 +12034,7 @@ msgid "no piracy"
msgstr ""
#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#. MngCK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10846,6 +12044,7 @@ msgid "marks chapter"
msgstr ""
#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#. tA9Nr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10855,6 +12054,7 @@ msgid "Celtic cross"
msgstr ""
#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#. TbsbW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10864,6 +12064,7 @@ msgid "down4"
msgstr ""
#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#. Sh7hb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10873,6 +12074,7 @@ msgid "envelope4"
msgstr ""
#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#. 6AKdz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10882,6 +12084,7 @@ msgid "envelope2"
msgstr ""
#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#. UVBZB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10891,6 +12094,7 @@ msgid "rays3"
msgstr ""
#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#. teGE4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10900,6 +12104,7 @@ msgid "pencil4"
msgstr ""
#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#. zvLQc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10909,6 +12114,7 @@ msgid "envelope3"
msgstr ""
#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#. ED7mw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10918,6 +12124,7 @@ msgid "tack"
msgstr ""
#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#. KE6gJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10927,6 +12134,7 @@ msgid "envelope5"
msgstr ""
#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#. npC85
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10936,6 +12144,7 @@ msgid "mobile2"
msgstr ""
#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#. GoddF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10945,6 +12154,7 @@ msgid "envelope6"
msgstr ""
#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#. DVJqf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10954,6 +12164,7 @@ msgid "left6"
msgstr ""
#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#. v5Ngu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10963,6 +12174,7 @@ msgid "right5"
msgstr ""
#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#. Cqs44
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10972,6 +12184,7 @@ msgid "maximize"
msgstr ""
#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#. a8Ton
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10981,6 +12194,7 @@ msgid "overlap"
msgstr ""
#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#. jZs9w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10990,6 +12204,7 @@ msgid "page2"
msgstr ""
#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#. ejx3h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10999,6 +12214,7 @@ msgid "pages"
msgstr ""
#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#. 2Fp3C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11008,6 +12224,7 @@ msgid "arrows"
msgstr ""
#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#. bFSAy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11017,6 +12234,7 @@ msgid "font2"
msgstr ""
#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#. KeAPT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11026,6 +12244,7 @@ msgid "minimize"
msgstr ""
#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#. cWAh4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11035,6 +12254,7 @@ msgid "cancel"
msgstr ""
#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#. CpvEL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11044,6 +12264,7 @@ msgid "window"
msgstr ""
#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#. 9MFBE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11053,6 +12274,7 @@ msgid "empty page"
msgstr ""
#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#. 4fcuu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11062,6 +12284,7 @@ msgid "empty document"
msgstr ""
#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#. hQp56
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11071,6 +12294,7 @@ msgid "empty pages"
msgstr ""
#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#. g8N6C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11080,6 +12304,7 @@ msgid "document"
msgstr ""
#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#. MaUGt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11089,6 +12314,7 @@ msgid "empty note page"
msgstr ""
#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#. 7w4gh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11098,6 +12324,7 @@ msgid "note pad"
msgstr ""
#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#. AE3mL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11107,6 +12334,7 @@ msgid "note3"
msgstr ""
#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#. 5aCDm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11116,6 +12344,7 @@ msgid "empty note pad"
msgstr ""
#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#. bDRqr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11125,6 +12354,7 @@ msgid "note page"
msgstr ""
#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#. FdBv4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11134,6 +12364,7 @@ msgid "optical disc"
msgstr ""
#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#. Ghxv6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11143,6 +12374,7 @@ msgid "folder3"
msgstr ""
#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#. gwq6Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11152,6 +12384,7 @@ msgid "right6"
msgstr ""
#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#. V9USD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11161,6 +12394,7 @@ msgid "folder4"
msgstr ""
#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#. Wb5pZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11170,6 +12404,7 @@ msgid "empty note"
msgstr ""
#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#. 2DTcZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11179,6 +12414,7 @@ msgid "folder5"
msgstr ""
#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#. 9icB8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11188,6 +12424,7 @@ msgid "frame"
msgstr ""
#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#. 2zYBL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11197,6 +12434,7 @@ msgid "frame2"
msgstr ""
#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#. CWPgm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11206,6 +12444,7 @@ msgid "document2"
msgstr ""
#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#. W5ZZb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11215,6 +12454,7 @@ msgid "document3"
msgstr ""
#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#. BR5B8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11224,6 +12464,7 @@ msgid "document4"
msgstr ""
#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#. iWFAt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11233,6 +12474,7 @@ msgid "printer2"
msgstr ""
#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#. CmW6a
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11242,6 +12484,7 @@ msgid "fax2"
msgstr ""
#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#. u4fMX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11251,6 +12494,7 @@ msgid "mouse4"
msgstr ""
#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#. YM2Wi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11260,6 +12504,7 @@ msgid "pc"
msgstr ""
#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#. uCEtj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11269,6 +12514,7 @@ msgid "screen"
msgstr ""
#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#. dxgBq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11278,6 +12524,7 @@ msgid "mouse5"
msgstr ""
#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#. h2kWQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11287,6 +12534,7 @@ msgid "hard disk"
msgstr ""
#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#. zVUTo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11296,6 +12544,7 @@ msgid "calculator"
msgstr ""
#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#. vxsZg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11305,6 +12554,7 @@ msgid "cartridge"
msgstr ""
#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#. 8CWzA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11314,6 +12564,7 @@ msgid "floppy2"
msgstr ""
#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#. SxL8M
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11323,6 +12574,7 @@ msgid "floppy3"
msgstr ""
#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#. LYzF5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11332,6 +12584,7 @@ msgid "keyboard2"
msgstr ""
#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#. 63xqd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11341,6 +12594,7 @@ msgid "victory2"
msgstr ""
#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#. nnqCB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11350,6 +12604,7 @@ msgid "network"
msgstr ""
#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#. jTG2R
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11359,6 +12614,7 @@ msgid "floppy4"
msgstr ""
#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#. cK4DP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11368,6 +12624,7 @@ msgid "lips"
msgstr ""
#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#. maQCB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11377,6 +12634,7 @@ msgid "keyboard3"
msgstr ""
#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#. gxjyq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11386,6 +12644,7 @@ msgid "down5"
msgstr ""
#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#. fzdRY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11395,6 +12654,7 @@ msgid "down6"
msgstr ""
#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#. S5d7x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11404,6 +12664,7 @@ msgid "stereo"
msgstr ""
#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#. g3tfF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11413,6 +12674,7 @@ msgid "rosette2"
msgstr ""
#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#. i4YCp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11422,6 +12684,7 @@ msgid "pennant"
msgstr ""
#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#. JBDRo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11431,6 +12694,7 @@ msgid "up4"
msgstr ""
#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#. Pc5KV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11440,6 +12704,7 @@ msgid "up5"
msgstr ""
#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#. 2A8Yp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11449,6 +12714,7 @@ msgid "pennant2"
msgstr ""
#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#. Ew6So
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11458,6 +12724,7 @@ msgid "feast2"
msgstr ""
#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#. AJpzE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11467,6 +12734,7 @@ msgid "no2"
msgstr ""
#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#. SqfKC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11476,6 +12744,7 @@ msgid "hand3"
msgstr ""
#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#. 5EAvq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11485,6 +12754,7 @@ msgid "yes2"
msgstr ""
#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#. EBpBK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11494,6 +12764,7 @@ msgid "speaker2"
msgstr ""
#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#. v3jrY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11503,6 +12774,7 @@ msgid "Latin cross2"
msgstr ""
#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#. QhPED
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11512,6 +12784,7 @@ msgid "Latin cross3"
msgstr ""
#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#. y9uLG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11521,6 +12794,7 @@ msgid "speaker3"
msgstr ""
#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#. yXfff
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11530,6 +12804,7 @@ msgid "bell3"
msgstr ""
#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#. rq3dA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11539,6 +12814,7 @@ msgid "sun2"
msgstr ""
#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#. etzs6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11548,6 +12824,7 @@ msgid "prohibited"
msgstr ""
#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#. Qiqnn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11557,6 +12834,7 @@ msgid "triangle3"
msgstr ""
#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#. NxoaJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11566,6 +12844,7 @@ msgid "bubble3"
msgstr ""
#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#. ccFjf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11575,6 +12854,7 @@ msgid "speaker4"
msgstr ""
#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#. B8Hg3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11584,6 +12864,7 @@ msgid "bubble8"
msgstr ""
#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#. BJdG2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11593,6 +12874,7 @@ msgid "rays4"
msgstr ""
#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#. KQe2w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11602,6 +12884,7 @@ msgid "lightning2"
msgstr ""
#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#. ySPbT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11611,6 +12894,7 @@ msgid "bubble9"
msgstr ""
#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#. Ti5Gc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11620,6 +12904,7 @@ msgid "checkbox5"
msgstr ""
#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#. K9FkL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11629,6 +12914,7 @@ msgid "check mark4"
msgstr ""
#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#. fxebH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11638,6 +12924,7 @@ msgid "bubble2"
msgstr ""
#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#. mQ7Sx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11647,6 +12934,7 @@ msgid "x4"
msgstr ""
#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#. HADvf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11656,6 +12944,7 @@ msgid "bubble10"
msgstr ""
#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#. CgYR4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11665,6 +12954,7 @@ msgid "checkbox6"
msgstr ""
#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#. C3B4F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11674,6 +12964,7 @@ msgid "check mark5"
msgstr ""
#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#. EbZew
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11683,6 +12974,7 @@ msgid "hugging"
msgstr ""
#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#. QGVSq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11692,6 +12984,7 @@ msgid "thinking"
msgstr ""
#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#. YWnjW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11701,6 +12994,7 @@ msgid "eye roll"
msgstr ""
#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#. eahZt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11710,6 +13004,7 @@ msgid "zipper"
msgstr ""
#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#. UEkgj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11719,6 +13014,7 @@ msgid "upside-down"
msgstr ""
#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#. NHvD5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11728,6 +13024,7 @@ msgid "money3"
msgstr ""
#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#. XNpdb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11737,6 +13034,7 @@ msgid "thermometer2"
msgstr ""
#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#. 7baC2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11746,6 +13044,7 @@ msgid "bandage"
msgstr ""
#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#. AZgGL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11755,6 +13054,7 @@ msgid "nerd"
msgstr ""
#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#. GdDbE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11764,6 +13064,7 @@ msgid "robot"
msgstr ""
#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#. GANQW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11773,6 +13074,7 @@ msgid "skin1"
msgstr ""
#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#. gbDCJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11782,6 +13084,7 @@ msgid "skin2"
msgstr ""
#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#. SCAhC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11791,6 +13094,7 @@ msgid "skin3"
msgstr ""
#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#. 73nmB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11800,6 +13104,7 @@ msgid "skin4"
msgstr ""
#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#. xD2SM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11809,6 +13114,7 @@ msgid "skin5"
msgstr ""
#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#. uqz8D
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11818,6 +13124,7 @@ msgid "horns"
msgstr ""
#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#. UZABL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11827,6 +13134,7 @@ msgid "beads"
msgstr ""
#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#. XwHn4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11836,6 +13144,7 @@ msgid "lion"
msgstr ""
#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#. AsQ5Q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11845,6 +13154,7 @@ msgid "unicorn"
msgstr ""
#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#. wE3ZV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11854,6 +13164,7 @@ msgid "turkey"
msgstr ""
#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#. ygHYG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11863,6 +13174,7 @@ msgid "crab"
msgstr ""
#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#. eCLRs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11872,6 +13184,7 @@ msgid "scorpion"
msgstr ""
#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#. 7Rapv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11881,6 +13194,7 @@ msgid "cheese"
msgstr ""
#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#. G77U6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11890,6 +13204,7 @@ msgid "hot dog"
msgstr ""
#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#. adkNd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11899,6 +13214,7 @@ msgid "taco"
msgstr ""
#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#. iznZM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11908,6 +13224,7 @@ msgid "burrito"
msgstr ""
#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#. EpADQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11917,6 +13234,7 @@ msgid "popcorn"
msgstr ""
#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#. SjEyK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11926,6 +13244,7 @@ msgid "party4"
msgstr ""
#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#. rK7h3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11935,6 +13254,7 @@ msgid "amphora"
msgstr ""
#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#. GAMLG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11944,6 +13264,7 @@ msgid "mosque"
msgstr ""
#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#. iqBVa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11953,6 +13274,7 @@ msgid "synagogue"
msgstr ""
#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#. 3rTFA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11962,6 +13284,7 @@ msgid "Kaaba"
msgstr ""
#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#. JnWWX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11971,6 +13294,7 @@ msgid "volleyball"
msgstr ""
#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#. BLab9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11980,6 +13304,7 @@ msgid "cricket"
msgstr ""
#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#. 2Gshv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11989,6 +13314,7 @@ msgid "hockey2"
msgstr ""
#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#. P8BNH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11998,6 +13324,7 @@ msgid "hockey"
msgstr ""
#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#. sjezt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12007,6 +13334,7 @@ msgid "ping pong"
msgstr ""
#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#. qCCrH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12016,6 +13344,7 @@ msgid "badminton"
msgstr ""
#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#. HpJnE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12025,6 +13354,7 @@ msgid "bow"
msgstr ""
#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#. EhGbP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12034,6 +13364,7 @@ msgid "worship"
msgstr ""
#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#. VJK9e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12043,6 +13374,7 @@ msgid "menorah"
msgstr ""
#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#. ZEUxq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12052,6 +13384,7 @@ msgid "lol"
msgstr ""
#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#. 9dmGD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12061,6 +13394,7 @@ msgid "drool"
msgstr ""
#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#. BFDoH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12070,6 +13404,7 @@ msgid "nausea"
msgstr ""
#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#. E2kqb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12079,6 +13414,7 @@ msgid "sneeze"
msgstr ""
#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#. eqg7B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12088,6 +13424,7 @@ msgid "cowboy"
msgstr ""
#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#. ECess
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12097,6 +13434,7 @@ msgid "clown"
msgstr ""
#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#. kGYvx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12106,6 +13444,7 @@ msgid "liar"
msgstr ""
#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#. Vm8HH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12115,6 +13454,7 @@ msgid "prince"
msgstr ""
#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#. z4cUf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12124,6 +13464,7 @@ msgid "groom"
msgstr ""
#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#. 2z7dc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12133,6 +13474,7 @@ msgid "pregnant"
msgstr ""
#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#. 2G73S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12142,6 +13484,7 @@ msgid "mrs. claus"
msgstr ""
#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#. DMAKw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12151,6 +13494,7 @@ msgid "facepalm"
msgstr ""
#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#. HfLEz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12160,6 +13504,7 @@ msgid "shrugging"
msgstr ""
#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#. LunYv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12169,6 +13514,7 @@ msgid "dancer2"
msgstr ""
#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#. j3rnK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12178,6 +13524,7 @@ msgid "fencer"
msgstr ""
#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#. GWy2x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12187,6 +13534,7 @@ msgid "gymnast"
msgstr ""
#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#. wDcBh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12196,6 +13544,7 @@ msgid "wrestling"
msgstr ""
#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#. d98om
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12205,6 +13554,7 @@ msgid "water polo"
msgstr ""
#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#. CUX53
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12214,6 +13564,7 @@ msgid "handball"
msgstr ""
#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#. ZxAWV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12223,6 +13574,7 @@ msgid "juggling"
msgstr ""
#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#. ydPAe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12232,6 +13584,7 @@ msgid "selfie"
msgstr ""
#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#. hCFfC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12241,6 +13594,7 @@ msgid "good luck"
msgstr ""
#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#. cXaXX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12250,6 +13604,7 @@ msgid "call"
msgstr ""
#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#. FAjqc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12259,6 +13614,7 @@ msgid "fist3"
msgstr ""
#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#. F5CCT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12268,6 +13624,7 @@ msgid "fist4"
msgstr ""
#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#. ix9At
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12277,6 +13634,7 @@ msgid "hand4"
msgstr ""
#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#. 9fHKn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12286,6 +13644,7 @@ msgid "handshake"
msgstr ""
#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#. gm7FZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12295,6 +13654,7 @@ msgid "black heart"
msgstr ""
#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#. 2NjPB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12304,6 +13664,7 @@ msgid "gorilla"
msgstr ""
#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#. KTrLE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12313,6 +13674,7 @@ msgid "fox"
msgstr ""
#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#. hFm9Y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12322,6 +13684,7 @@ msgid "deer"
msgstr ""
#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#. vH7xA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12331,6 +13694,7 @@ msgid "rhinoceros"
msgstr ""
#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#. La26G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12340,6 +13704,7 @@ msgid "bat"
msgstr ""
#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#. A5zoM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12349,6 +13714,7 @@ msgid "eagle"
msgstr ""
#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#. 6pBEy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12358,6 +13724,7 @@ msgid "duck"
msgstr ""
#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#. 5WB2J
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12367,6 +13734,7 @@ msgid "owl"
msgstr ""
#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#. mTdZD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12376,6 +13744,7 @@ msgid "lizard"
msgstr ""
#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#. HGPa7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12385,6 +13754,7 @@ msgid "shark"
msgstr ""
#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#. 9st9X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12394,6 +13764,7 @@ msgid "shrimp"
msgstr ""
#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#. wLzdC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12403,6 +13774,7 @@ msgid "squid"
msgstr ""
#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#. ABYeM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12412,6 +13784,7 @@ msgid "butterfly"
msgstr ""
#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#. g8zbG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12421,6 +13794,7 @@ msgid "flower2"
msgstr ""
#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#. rhEXe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12430,6 +13804,7 @@ msgid "kiwi"
msgstr ""
#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#. YyyRA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12439,6 +13814,7 @@ msgid "avocado"
msgstr ""
#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#. GszVJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12448,6 +13824,7 @@ msgid "potato"
msgstr ""
#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#. Ym3pa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12457,6 +13834,7 @@ msgid "carrot"
msgstr ""
#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#. Kh3D3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12466,6 +13844,7 @@ msgid "cucumber"
msgstr ""
#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#. zhUDL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12475,6 +13854,7 @@ msgid "peanuts"
msgstr ""
#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#. RjA9y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12484,6 +13864,7 @@ msgid "croissant"
msgstr ""
#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#. NGegu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12493,6 +13874,7 @@ msgid "bread2"
msgstr ""
#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#. Kv3zL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12502,6 +13884,7 @@ msgid "pancakes"
msgstr ""
#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#. ZD8B4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12511,6 +13894,7 @@ msgid "bacon"
msgstr ""
#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#. FBeQo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12520,6 +13904,7 @@ msgid "flatbread"
msgstr ""
#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#. ogxKP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12529,6 +13914,7 @@ msgid "egg"
msgstr ""
#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#. MLBgW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12538,6 +13924,7 @@ msgid "food"
msgstr ""
#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#. NW5YQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12547,6 +13934,7 @@ msgid "salad"
msgstr ""
#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#. ABhFU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12556,6 +13944,7 @@ msgid "milk"
msgstr ""
#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#. CE4Gm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12565,6 +13954,7 @@ msgid "party3"
msgstr ""
#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#. f7rVY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12574,6 +13964,7 @@ msgid "glass3"
msgstr ""
#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#. xQXfU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12583,6 +13974,7 @@ msgid "spoon"
msgstr ""
#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#. i9HME
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12592,6 +13984,7 @@ msgid "scooter"
msgstr ""
#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#. qNJVu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12601,6 +13994,7 @@ msgid "scooter2"
msgstr ""
#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#. aFYby
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12610,6 +14004,7 @@ msgid "stop"
msgstr ""
#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#. SXBDP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12619,6 +14014,7 @@ msgid "canoe"
msgstr ""
#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#. 4XgcG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12628,6 +14024,7 @@ msgid "gold"
msgstr ""
#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#. TSHQA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12637,6 +14034,7 @@ msgid "silver"
msgstr ""
#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#. EAVkw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12646,6 +14044,7 @@ msgid "bronze"
msgstr ""
#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#. wd46F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12655,6 +14054,7 @@ msgid "boxing"
msgstr ""
#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#. YUmnP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12664,6 +14064,7 @@ msgid "judo"
msgstr ""
#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#. qGHW2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12673,6 +14074,7 @@ msgid "soccer2"
msgstr ""
#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#. AbcnT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12682,6 +14084,7 @@ msgid "drum2"
msgstr ""
#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#. B6WXA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12691,6 +14094,7 @@ msgid "cart"
msgstr ""
#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#. eVxGr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12700,6 +14104,7 @@ msgid "excited"
msgstr ""
#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#. Tsyfv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12709,6 +14114,7 @@ msgid "eyebrow"
msgstr ""
#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#. na53j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12718,6 +14124,7 @@ msgid "shocked"
msgstr ""
#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#. 4WDd3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12727,6 +14134,7 @@ msgid "zany"
msgstr ""
#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#. h2dHg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12736,6 +14144,7 @@ msgid "cursing"
msgstr ""
#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#. kBxkz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12745,6 +14154,7 @@ msgid "vomit"
msgstr ""
#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#. eYbxY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12754,6 +14164,7 @@ msgid "hush"
msgstr ""
#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#. n5YYY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12763,6 +14174,7 @@ msgid "smiling4"
msgstr ""
#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#. jB9dt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12772,6 +14184,7 @@ msgid "monocle"
msgstr ""
#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#. SLPCQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12781,6 +14194,7 @@ msgid "child"
msgstr ""
#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#. GfBGz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12790,6 +14204,7 @@ msgid "adult"
msgstr ""
#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#. iMBiE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12799,6 +14214,7 @@ msgid "old"
msgstr ""
#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#. a4XKd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12808,6 +14224,7 @@ msgid "headscarf"
msgstr ""
#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#. wwFwk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12817,6 +14234,7 @@ msgid "beard"
msgstr ""
#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#. aiLD6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12826,6 +14244,7 @@ msgid "baby3"
msgstr ""
#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#. AiBBt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12835,6 +14254,7 @@ msgid "mage"
msgstr ""
#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#. 72AoC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12844,6 +14264,7 @@ msgid "fairy"
msgstr ""
#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#. xcCHr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12853,6 +14274,7 @@ msgid "vampire"
msgstr ""
#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#. 6E3EF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12862,6 +14284,7 @@ msgid "merperson"
msgstr ""
#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#. 7WZ3s
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12871,6 +14294,7 @@ msgid "elf"
msgstr ""
#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#. GQBVF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12880,6 +14304,7 @@ msgid "genie"
msgstr ""
#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#. sF9YT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12889,6 +14314,7 @@ msgid "zombie"
msgstr ""
#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#. SFGkA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12898,6 +14324,7 @@ msgid "sauna"
msgstr ""
#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#. 5LRF9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12907,6 +14334,7 @@ msgid "climber"
msgstr ""
#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#. UhgUh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12916,6 +14344,7 @@ msgid "yoga"
msgstr ""
#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#. 2KjLY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12925,6 +14354,7 @@ msgid "love2"
msgstr ""
#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#. tjwnx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12934,6 +14364,7 @@ msgid "palm2"
msgstr ""
#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#. Fvr8C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12943,6 +14374,7 @@ msgid "brain"
msgstr ""
#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#. 65Vzz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12952,6 +14384,7 @@ msgid "orange heart"
msgstr ""
#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#. 9F7KC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12961,6 +14394,7 @@ msgid "scarf"
msgstr ""
#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#. 2hKw4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12970,6 +14404,7 @@ msgid "gloves"
msgstr ""
#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#. 7dGHw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12979,6 +14414,7 @@ msgid "coat"
msgstr ""
#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#. j5RzV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12988,6 +14424,7 @@ msgid "socks"
msgstr ""
#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#. tZNWA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12997,6 +14434,7 @@ msgid "cap"
msgstr ""
#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#. 8mGXr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13006,6 +14444,7 @@ msgid "zebra"
msgstr ""
#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#. KK5ZG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13015,6 +14454,7 @@ msgid "giraffe"
msgstr ""
#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#. m5ZyA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13024,6 +14464,7 @@ msgid "hedgehog"
msgstr ""
#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#. QGK7G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13033,6 +14474,7 @@ msgid "dinosaur"
msgstr ""
#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#. Nixns
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13042,6 +14484,7 @@ msgid "dinosaur2"
msgstr ""
#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#. v74vD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13051,6 +14494,7 @@ msgid "cricket2"
msgstr ""
#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#. F6DcD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13060,6 +14504,7 @@ msgid "coconut"
msgstr ""
#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#. ysJGH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13069,6 +14514,7 @@ msgid "broccoli"
msgstr ""
#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#. CVDqB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13078,6 +14524,7 @@ msgid "pretzel"
msgstr ""
#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#. EFzoB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13087,6 +14534,7 @@ msgid "steak"
msgstr ""
#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#. kUkjd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13096,6 +14544,7 @@ msgid "sandwich"
msgstr ""
#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#. UgCS4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13105,6 +14554,7 @@ msgid "bowl"
msgstr ""
#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#. ruvC5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13114,6 +14564,7 @@ msgid "can"
msgstr ""
#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#. TZV8E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13123,6 +14574,7 @@ msgid "dumpling"
msgstr ""
#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#. APAjG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13132,6 +14584,7 @@ msgid "cookie2"
msgstr ""
#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#. T3CFr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13141,6 +14594,7 @@ msgid "takeout"
msgstr ""
#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#. LYCNG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13150,6 +14604,7 @@ msgid "pie"
msgstr ""
#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#. YNHfJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13159,6 +14614,7 @@ msgid "drink"
msgstr ""
#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#. 3KB5F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13168,6 +14624,7 @@ msgid "chopsticks"
msgstr ""
#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#. QmGAB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13177,6 +14634,7 @@ msgid "ufo"
msgstr ""
#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#. xghQ3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13186,6 +14644,7 @@ msgid "sled"
msgstr ""
#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#. 5hGNv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13195,6 +14654,7 @@ msgid "curling"
msgstr ""
#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#. EXrBL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13204,6 +14664,7 @@ msgid "bitcoin"
msgstr ""
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
+#. nmwie
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13213,6 +14674,7 @@ msgid "1/2"
msgstr "1/2"
#. ⅓ (U+02153), see http://wiki.documentfoundation.org/Emoji
+#. GCWJS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13222,6 +14684,7 @@ msgid "1/3"
msgstr "1/3"
#. ¼ (U+000BC), see http://wiki.documentfoundation.org/Emoji
+#. Lgj8u
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13231,6 +14694,7 @@ msgid "1/4"
msgstr "1/4"
#. ⅔ (U+02154), see http://wiki.documentfoundation.org/Emoji
+#. uYJY7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13240,6 +14704,7 @@ msgid "2/3"
msgstr "2/3"
#. ¾ (U+000BE), see http://wiki.documentfoundation.org/Emoji
+#. UP2KQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13249,6 +14714,7 @@ msgid "3/4"
msgstr "3/4"
#. ⅛ (U+0215B), see http://wiki.documentfoundation.org/Emoji
+#. ZBRTd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13258,6 +14724,7 @@ msgid "1/8"
msgstr "1/8"
#. ⅜ (U+0215C), see http://wiki.documentfoundation.org/Emoji
+#. wAAbx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13267,6 +14734,7 @@ msgid "3/8"
msgstr "3/8"
#. ⅝ (U+0215D), see http://wiki.documentfoundation.org/Emoji
+#. CX2bs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13276,6 +14744,7 @@ msgid "5/8"
msgstr "5/8"
#. ⅞ (U+0215E), see http://wiki.documentfoundation.org/Emoji
+#. J9HEX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13285,6 +14754,7 @@ msgid "7/8"
msgstr "7/8"
#. ¹ (U+000B9), see http://wiki.documentfoundation.org/Emoji
+#. oFFdk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13294,6 +14764,7 @@ msgid "^1"
msgstr "^1"
#. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji
+#. tQbfE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13303,6 +14774,7 @@ msgid "^2"
msgstr "^2"
#. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji
+#. KChg6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13312,6 +14784,7 @@ msgid "^3"
msgstr "^3"
#. ⁴ (U+02074), see http://wiki.documentfoundation.org/Emoji
+#. FAXEo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13321,6 +14794,7 @@ msgid "^4"
msgstr "^4"
#. ⁵ (U+02075), see http://wiki.documentfoundation.org/Emoji
+#. mq4xj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13330,6 +14804,7 @@ msgid "^5"
msgstr "^5"
#. ⁶ (U+02076), see http://wiki.documentfoundation.org/Emoji
+#. iwveQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13339,6 +14814,7 @@ msgid "^6"
msgstr "^6"
#. ⁷ (U+02077), see http://wiki.documentfoundation.org/Emoji
+#. pB4Eu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13348,6 +14824,7 @@ msgid "^7"
msgstr "^7"
#. ⁸ (U+02078), see http://wiki.documentfoundation.org/Emoji
+#. mC2zV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13357,6 +14834,7 @@ msgid "^8"
msgstr "^8"
#. ⁹ (U+02079), see http://wiki.documentfoundation.org/Emoji
+#. uN9Qp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13366,6 +14844,7 @@ msgid "^9"
msgstr "^9"
#. ⁰ (U+02070), see http://wiki.documentfoundation.org/Emoji
+#. H3Zqf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13375,6 +14854,7 @@ msgid "^0"
msgstr "^0"
#. ⁺ (U+0207A), see http://wiki.documentfoundation.org/Emoji
+#. GtmTo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13384,6 +14864,7 @@ msgid "^+"
msgstr "^+"
#. ⁻ (U+0207B), see http://wiki.documentfoundation.org/Emoji
+#. cKEWZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13393,6 +14874,7 @@ msgid "^-"
msgstr "^-"
#. ⁼ (U+0207C), see http://wiki.documentfoundation.org/Emoji
+#. ukJvM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13402,6 +14884,7 @@ msgid "^="
msgstr "^="
#. ⁽ (U+0207D), see http://wiki.documentfoundation.org/Emoji
+#. ZMZdA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13411,6 +14894,7 @@ msgid "^("
msgstr "^("
#. ⁾ (U+0207E), see http://wiki.documentfoundation.org/Emoji
+#. EaAEu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13420,6 +14904,7 @@ msgid "^)"
msgstr "^)"
#. ₁ (U+02081), see http://wiki.documentfoundation.org/Emoji
+#. TBS22
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13429,6 +14914,7 @@ msgid "_1"
msgstr "_1"
#. ₂ (U+02082), see http://wiki.documentfoundation.org/Emoji
+#. gL88Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13438,6 +14924,7 @@ msgid "_2"
msgstr "_2"
#. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji
+#. gSTF9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13447,6 +14934,7 @@ msgid "_3"
msgstr "_3"
#. ₄ (U+02084), see http://wiki.documentfoundation.org/Emoji
+#. qW6Ce
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13456,6 +14944,7 @@ msgid "_4"
msgstr "_4"
#. ₅ (U+02085), see http://wiki.documentfoundation.org/Emoji
+#. B4VTa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13465,6 +14954,7 @@ msgid "_5"
msgstr "_5"
#. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji
+#. WsC7f
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13474,6 +14964,7 @@ msgid "_6"
msgstr "_6"
#. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji
+#. 2rEnp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13483,6 +14974,7 @@ msgid "_7"
msgstr "_7"
#. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji
+#. 5SGSg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13492,6 +14984,7 @@ msgid "_8"
msgstr "_8"
#. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji
+#. Kaa2h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13501,6 +14994,7 @@ msgid "_9"
msgstr "_9"
#. ₀ (U+02080), see http://wiki.documentfoundation.org/Emoji
+#. op8an
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13510,6 +15004,7 @@ msgid "_0"
msgstr "_0"
#. ₊ (U+0208A), see http://wiki.documentfoundation.org/Emoji
+#. FE6Lq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13519,6 +15014,7 @@ msgid "_+"
msgstr "_+"
#. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji
+#. PdL5c
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13528,6 +15024,7 @@ msgid "_-"
msgstr "_-"
#. ₌ (U+0208C), see http://wiki.documentfoundation.org/Emoji
+#. 97EG8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13537,6 +15034,7 @@ msgid "_="
msgstr "_="
#. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji
+#. pF9N5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13546,6 +15044,7 @@ msgid "_("
msgstr "_("
#. ₎ (U+0208E), see http://wiki.documentfoundation.org/Emoji
+#. kCT2R
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13555,6 +15054,7 @@ msgid "_)"
msgstr "_)"
#. ᵃ (U+01D43), see http://wiki.documentfoundation.org/Emoji
+#. huaxo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13564,6 +15064,7 @@ msgid "^a"
msgstr "^a"
#. ᵇ (U+01D47), see http://wiki.documentfoundation.org/Emoji
+#. pB7jZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13573,6 +15074,7 @@ msgid "^b"
msgstr "^b"
#. ᶜ (U+01D9C), see http://wiki.documentfoundation.org/Emoji
+#. QymSR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13582,6 +15084,7 @@ msgid "^c"
msgstr "^c"
#. ᵈ (U+01D48), see http://wiki.documentfoundation.org/Emoji
+#. WWuF4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13591,6 +15094,7 @@ msgid "^d"
msgstr "^d"
#. ᵉ (U+01D49), see http://wiki.documentfoundation.org/Emoji
+#. DBFRu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13600,6 +15104,7 @@ msgid "^e"
msgstr "^e"
#. ᶠ (U+01DA0), see http://wiki.documentfoundation.org/Emoji
+#. FSSAb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13609,6 +15114,7 @@ msgid "^f"
msgstr "^f"
#. ᵍ (U+01D4D), see http://wiki.documentfoundation.org/Emoji
+#. wFF2B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13618,6 +15124,7 @@ msgid "^g"
msgstr "^g"
#. ʰ (U+002B0), see http://wiki.documentfoundation.org/Emoji
+#. 2pBei
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13627,6 +15134,7 @@ msgid "^h"
msgstr "^h"
#. ⁱ (U+02071), see http://wiki.documentfoundation.org/Emoji
+#. GtCEX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13636,6 +15144,7 @@ msgid "^i"
msgstr "^i"
#. ʲ (U+002B2), see http://wiki.documentfoundation.org/Emoji
+#. ikBkL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13645,6 +15154,7 @@ msgid "^j"
msgstr "^j"
#. ᵏ (U+01D4F), see http://wiki.documentfoundation.org/Emoji
+#. JNyVU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13654,6 +15164,7 @@ msgid "^k"
msgstr "^k"
#. ˡ (U+002E1), see http://wiki.documentfoundation.org/Emoji
+#. U8qEx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13663,6 +15174,7 @@ msgid "^l"
msgstr "^l"
#. ᵐ (U+01D50), see http://wiki.documentfoundation.org/Emoji
+#. Bb3N7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13672,6 +15184,7 @@ msgid "^m"
msgstr "^m"
#. ⁿ (U+0207F), see http://wiki.documentfoundation.org/Emoji
+#. oT4ts
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13681,6 +15194,7 @@ msgid "^n"
msgstr "^n"
#. ᵒ (U+01D52), see http://wiki.documentfoundation.org/Emoji
+#. ufK3e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13690,6 +15204,7 @@ msgid "^o"
msgstr "^o"
#. ᵖ (U+01D56), see http://wiki.documentfoundation.org/Emoji
+#. CDWbH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13699,6 +15214,7 @@ msgid "^p"
msgstr "^p"
#. ʳ (U+002B3), see http://wiki.documentfoundation.org/Emoji
+#. tHyqw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13708,6 +15224,7 @@ msgid "^r"
msgstr "^r"
#. ˢ (U+002E2), see http://wiki.documentfoundation.org/Emoji
+#. CsBY6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13717,6 +15234,7 @@ msgid "^s"
msgstr "^s"
#. ᵗ (U+01D57), see http://wiki.documentfoundation.org/Emoji
+#. aU39K
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13726,6 +15244,7 @@ msgid "^t"
msgstr "^t"
#. ᵘ (U+01D58), see http://wiki.documentfoundation.org/Emoji
+#. zDqKT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13735,6 +15254,7 @@ msgid "^u"
msgstr "^u"
#. ᵛ (U+01D5B), see http://wiki.documentfoundation.org/Emoji
+#. KYKGm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13744,6 +15264,7 @@ msgid "^v"
msgstr "^v"
#. ʷ (U+002B7), see http://wiki.documentfoundation.org/Emoji
+#. j9e8C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13753,6 +15274,7 @@ msgid "^w"
msgstr "^w"
#. ˣ (U+002E3), see http://wiki.documentfoundation.org/Emoji
+#. Eiacc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13762,6 +15284,7 @@ msgid "^x"
msgstr "^x"
#. ʸ (U+002B8), see http://wiki.documentfoundation.org/Emoji
+#. XQPuC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13771,6 +15294,7 @@ msgid "^y"
msgstr "^y"
#. ᶻ (U+01DBB), see http://wiki.documentfoundation.org/Emoji
+#. vnmnz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13780,6 +15304,7 @@ msgid "^z"
msgstr "^z"
#. ᴬ (U+01D2C), see http://wiki.documentfoundation.org/Emoji
+#. WvCDU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13789,6 +15314,7 @@ msgid "^A"
msgstr "^A"
#. ᴮ (U+01D2E), see http://wiki.documentfoundation.org/Emoji
+#. wGXNi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13798,6 +15324,7 @@ msgid "^B"
msgstr "^B"
#. ᴰ (U+01D30), see http://wiki.documentfoundation.org/Emoji
+#. hVJVE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13807,6 +15334,7 @@ msgid "^D"
msgstr ""
#. ᴱ (U+01D31), see http://wiki.documentfoundation.org/Emoji
+#. 8Efke
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13816,6 +15344,7 @@ msgid "^E"
msgstr "^E"
#. ᴳ (U+01D33), see http://wiki.documentfoundation.org/Emoji
+#. pApe7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13825,6 +15354,7 @@ msgid "^G"
msgstr "^G"
#. ᴴ (U+01D34), see http://wiki.documentfoundation.org/Emoji
+#. Bjk2Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13834,6 +15364,7 @@ msgid "^H"
msgstr "^H"
#. ᴵ (U+01D35), see http://wiki.documentfoundation.org/Emoji
+#. UR8AR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13843,6 +15374,7 @@ msgid "^I"
msgstr "^I"
#. ᴶ (U+01D36), see http://wiki.documentfoundation.org/Emoji
+#. uobRE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13852,6 +15384,7 @@ msgid "^J"
msgstr "^J"
#. ᴷ (U+01D37), see http://wiki.documentfoundation.org/Emoji
+#. DMNFo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13861,6 +15394,7 @@ msgid "^K"
msgstr "^K"
#. ᴸ (U+01D38), see http://wiki.documentfoundation.org/Emoji
+#. bzESb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13870,6 +15404,7 @@ msgid "^L"
msgstr "^L"
#. ᴹ (U+01D39), see http://wiki.documentfoundation.org/Emoji
+#. 2gTjB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13879,6 +15414,7 @@ msgid "^M"
msgstr "^M"
#. ᴺ (U+01D3A), see http://wiki.documentfoundation.org/Emoji
+#. J5Gx4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13888,6 +15424,7 @@ msgid "^N"
msgstr "^N"
#. ᴼ (U+01D3C), see http://wiki.documentfoundation.org/Emoji
+#. icthu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13897,6 +15434,7 @@ msgid "^O"
msgstr "^O"
#. ᴾ (U+01D3E), see http://wiki.documentfoundation.org/Emoji
+#. zE85z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13906,6 +15444,7 @@ msgid "^P"
msgstr "^P"
#. ᴿ (U+01D3F), see http://wiki.documentfoundation.org/Emoji
+#. jANLc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13915,6 +15454,7 @@ msgid "^R"
msgstr "^R"
#. ᵀ (U+01D40), see http://wiki.documentfoundation.org/Emoji
+#. VXTXF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13924,6 +15464,7 @@ msgid "^T"
msgstr "^T"
#. ᵁ (U+01D41), see http://wiki.documentfoundation.org/Emoji
+#. CCEnp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13933,6 +15474,7 @@ msgid "^U"
msgstr "^U"
#. ⱽ (U+02C7D), see http://wiki.documentfoundation.org/Emoji
+#. CTtuW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13942,6 +15484,7 @@ msgid "^V"
msgstr "^V"
#. ᵂ (U+01D42), see http://wiki.documentfoundation.org/Emoji
+#. tGGcN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13951,6 +15494,7 @@ msgid "^W"
msgstr "^W"
#. ₐ (U+02090), see http://wiki.documentfoundation.org/Emoji
+#. mzsGJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13960,6 +15504,7 @@ msgid "_a"
msgstr "_a"
#. ₑ (U+02091), see http://wiki.documentfoundation.org/Emoji
+#. AjRgG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13969,6 +15514,7 @@ msgid "_e"
msgstr "_e"
#. ₕ (U+02095), see http://wiki.documentfoundation.org/Emoji
+#. PEzPP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13978,6 +15524,7 @@ msgid "_h"
msgstr "_h"
#. ᵢ (U+01D62), see http://wiki.documentfoundation.org/Emoji
+#. oVoDX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13987,6 +15534,7 @@ msgid "_i"
msgstr "_i"
#. ⱼ (U+02C7C), see http://wiki.documentfoundation.org/Emoji
+#. eAM4q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13996,6 +15544,7 @@ msgid "_j"
msgstr "_j"
#. ₖ (U+02096), see http://wiki.documentfoundation.org/Emoji
+#. 5ZgCG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14005,6 +15554,7 @@ msgid "_k"
msgstr "_k"
#. ₗ (U+02097), see http://wiki.documentfoundation.org/Emoji
+#. xvYvD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14014,6 +15564,7 @@ msgid "_l"
msgstr "_l"
#. ₘ (U+02098), see http://wiki.documentfoundation.org/Emoji
+#. GCDfd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14023,6 +15574,7 @@ msgid "_m"
msgstr "_m"
#. ₙ (U+02099), see http://wiki.documentfoundation.org/Emoji
+#. GrwUs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14032,6 +15584,7 @@ msgid "_n"
msgstr "_n"
#. ₒ (U+02092), see http://wiki.documentfoundation.org/Emoji
+#. ZG9m2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14041,6 +15594,7 @@ msgid "_o"
msgstr "_o"
#. ₚ (U+0209A), see http://wiki.documentfoundation.org/Emoji
+#. HaoJt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14050,6 +15604,7 @@ msgid "_p"
msgstr "_p"
#. ᵣ (U+01D63), see http://wiki.documentfoundation.org/Emoji
+#. Yeg7A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14059,6 +15614,7 @@ msgid "_r"
msgstr "_r"
#. ₛ (U+0209B), see http://wiki.documentfoundation.org/Emoji
+#. F3MHa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14068,6 +15624,7 @@ msgid "_s"
msgstr "_s"
#. ₜ (U+0209C), see http://wiki.documentfoundation.org/Emoji
+#. nKDsn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14077,6 +15634,7 @@ msgid "_t"
msgstr "_t"
#. ᵤ (U+01D64), see http://wiki.documentfoundation.org/Emoji
+#. NqYaD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14086,6 +15644,7 @@ msgid "_u"
msgstr "_u"
#. ᵥ (U+01D65), see http://wiki.documentfoundation.org/Emoji
+#. 6P9ZQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14095,6 +15654,7 @@ msgid "_v"
msgstr "_v"
#. ₓ (U+02093), see http://wiki.documentfoundation.org/Emoji
+#. BCsM8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14104,6 +15664,7 @@ msgid "_x"
msgstr "_x"
#. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji
+#. gytmK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14113,6 +15674,7 @@ msgid "^alpha"
msgstr "^ألفا"
#. ᵝ (U+01D5D), see http://wiki.documentfoundation.org/Emoji
+#. hrktE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14122,6 +15684,7 @@ msgid "^beta"
msgstr "^بيتا"
#. ᵞ (U+01D5E), see http://wiki.documentfoundation.org/Emoji
+#. yqXNK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14131,6 +15694,7 @@ msgid "^gamma"
msgstr "^غاما"
#. ᵟ (U+01D5F), see http://wiki.documentfoundation.org/Emoji
+#. tL6DL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14140,6 +15704,7 @@ msgid "^delta"
msgstr "^دلتا"
#. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji
+#. w3K77
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14149,6 +15714,7 @@ msgid "^epsilon"
msgstr "^إبسلون"
#. ᶿ (U+01DBF), see http://wiki.documentfoundation.org/Emoji
+#. xgw47
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14158,6 +15724,7 @@ msgid "^theta"
msgstr "^ثيتا"
#. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji
+#. mAHBc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14167,6 +15734,7 @@ msgid "^iota"
msgstr "^إيوتا"
#. ᶲ (U+01DB2), see http://wiki.documentfoundation.org/Emoji
+#. W2CJE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14176,6 +15744,7 @@ msgid "^Phi"
msgstr "^فاي كبير"
#. ᵠ (U+01D60), see http://wiki.documentfoundation.org/Emoji
+#. x68Va
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14185,6 +15754,7 @@ msgid "^phi"
msgstr "^فاي"
#. ᵡ (U+01D61), see http://wiki.documentfoundation.org/Emoji
+#. t9p8B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14194,6 +15764,7 @@ msgid "^chi"
msgstr "^خي"
#. ᵦ (U+01D66), see http://wiki.documentfoundation.org/Emoji
+#. ZTjXp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14203,6 +15774,7 @@ msgid "_beta"
msgstr "_بيتا"
#. ᵧ (U+01D67), see http://wiki.documentfoundation.org/Emoji
+#. XTDCK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14212,6 +15784,7 @@ msgid "_gamma"
msgstr "_غاما"
#. ᵨ (U+01D68), see http://wiki.documentfoundation.org/Emoji
+#. GFHAL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14221,6 +15794,7 @@ msgid "_rho"
msgstr "_رو"
#. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji
+#. SFGWx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14230,6 +15804,7 @@ msgid "_phi"
msgstr "_فاي"
#. ᵪ (U+01D6A), see http://wiki.documentfoundation.org/Emoji
+#. QZ79t
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
diff --git a/source/ar/filter/messages.po b/source/ar/filter/messages.po
index c0e393b84e3..5fd8982fdeb 100644
--- a/source/ar/filter/messages.po
+++ b/source/ar/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1524288716.000000\n"
#. 5AQgJ
@@ -292,12 +292,12 @@ msgstr "أُجهض تصدير PDF"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -307,37 +307,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -347,12 +347,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. AwX66
#: filter/uiconfig/ui/pdfgeneralpage.ui:42
@@ -1738,7 +1738,7 @@ msgstr ""
#: filter/uiconfig/ui/xmlfiltersettings.ui:123
msgctxt "xmlfiltersettings|header_type"
msgid "Type"
-msgstr ""
+msgstr "النوع"
#. A6qWH
#: filter/uiconfig/ui/xmlfiltersettings.ui:134
diff --git a/source/ar/forms/messages.po b/source/ar/forms/messages.po
index fd6b3327125..89d3069b031 100644
--- a/source/ar/forms/messages.po
+++ b/source/ar/forms/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/formsmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1507237079.000000\n"
#. naBgZ
@@ -371,12 +371,12 @@ msgstr "هذا نوع مدمج و لا يمكن إزالته."
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -386,37 +386,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -426,9 +426,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/formula/messages.po b/source/ar/formula/messages.po
index 33288388b5a..13ec90b06db 100644
--- a/source/ar/formula/messages.po
+++ b/source/ar/formula/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022440.000000\n"
#. YfKFn
@@ -2563,12 +2563,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -2578,37 +2578,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -2618,12 +2618,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. iySox
#: formula/inc/strings.hrc:25
diff --git a/source/ar/fpicker/messages.po b/source/ar/fpicker/messages.po
index 0ae507c82a9..bac11b3ad38 100644
--- a/source/ar/fpicker/messages.po
+++ b/source/ar/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1538496475.000000\n"
#. SJGCw
@@ -93,12 +93,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -108,37 +108,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -148,12 +148,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. D3iME
#: fpicker/uiconfig/ui/explorerfiledialog.ui:129
@@ -201,7 +201,7 @@ msgstr ""
#: fpicker/uiconfig/ui/explorerfiledialog.ui:384
msgctxt "explorerfiledialog|type"
msgid "Type"
-msgstr ""
+msgstr "النوع"
#. wDiXd
#: fpicker/uiconfig/ui/explorerfiledialog.ui:398
diff --git a/source/ar/framework/messages.po b/source/ar/framework/messages.po
index dd66a81f203..d478a9169bd 100644
--- a/source/ar/framework/messages.po
+++ b/source/ar/framework/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1513250878.000000\n"
#. 5dTDC
@@ -229,15 +229,135 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr "لغة النص. انقر باليمين لضبط لغة المحرف أو الفقرة"
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr ""
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -247,37 +367,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -287,9 +407,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/helpcontent2/source/auxiliary.po b/source/ar/helpcontent2/source/auxiliary.po
index 6232f174ff7..7093506d31f 100644
--- a/source/ar/helpcontent2/source/auxiliary.po
+++ b/source/ar/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-05-19 12:41+0200\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1532004315.000000\n"
#. fEEXD
@@ -32,7 +32,7 @@ msgctxt ""
"0701\n"
"node.text"
msgid "%PRODUCTNAME BASIC"
-msgstr ""
+msgstr "بيسك %PRODUCTNAME"
#. Ua99d
#: sbasic.tree
@@ -41,7 +41,7 @@ msgctxt ""
"070101\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "معلومات عامة واستخدام واجهة المستخدم"
#. ooCCn
#: sbasic.tree
@@ -50,7 +50,7 @@ msgctxt ""
"070102\n"
"node.text"
msgid "Command Reference"
-msgstr ""
+msgstr "مرجع الأوامر"
#. MrEnT
#: sbasic.tree
@@ -59,7 +59,7 @@ msgctxt ""
"07010202\n"
"node.text"
msgid "Functions, Statements, and Operators"
-msgstr ""
+msgstr "دوالّ وجُمل ومُعاملات"
#. hAowB
#: sbasic.tree
@@ -68,7 +68,7 @@ msgctxt ""
"07010201\n"
"node.text"
msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr ""
+msgstr "لائحة ألفبائية بالدوالّ والجُمل والمُعاملات"
#. jhVCB
#: sbasic.tree
@@ -77,7 +77,7 @@ msgctxt ""
"07010205\n"
"node.text"
msgid "Advanced Basic Libraries"
-msgstr ""
+msgstr "مكتبات بيسك المتقدمة"
#. Vkt9E
#: sbasic.tree
@@ -86,7 +86,7 @@ msgctxt ""
"070103\n"
"node.text"
msgid "Guides"
-msgstr ""
+msgstr "المرشدات"
#. f7k4A
#: sbasic.tree
@@ -95,7 +95,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Python Scripts Help"
-msgstr ""
+msgstr "مساعدة سكربتات بايثون"
#. pVb5g
#: sbasic.tree
@@ -104,7 +104,7 @@ msgctxt ""
"070201\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "معلومات عامة واستخدام واجهة المستخدم"
#. D6bPQ
#: sbasic.tree
@@ -113,7 +113,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Programming with Python"
-msgstr ""
+msgstr "البرمجة بـ بايثون"
#. KsAjT
#: scalc.tree
@@ -122,7 +122,7 @@ msgctxt ""
"08\n"
"help_section.text"
msgid "Spreadsheets (Calc)"
-msgstr ""
+msgstr "جداول ممتدة (كالك)"
#. DnZNf
#: scalc.tree
@@ -167,7 +167,7 @@ msgctxt ""
"0803\n"
"node.text"
msgid "Functions Types and Operators"
-msgstr ""
+msgstr "أنواع ومُعاملات الدوالّ"
#. DSUE2
#: scalc.tree
@@ -176,7 +176,7 @@ msgctxt ""
"0804\n"
"node.text"
msgid "Loading, Saving, Importing, Exporting and Redacting"
-msgstr ""
+msgstr "التحميل والحفظ والاستيراد والتصدير والتنقيح"
#. yRwiN
#: scalc.tree
@@ -230,7 +230,7 @@ msgctxt ""
"08091\n"
"node.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "مخطط بياني محوري"
#. RowUw
#: scalc.tree
@@ -248,7 +248,7 @@ msgctxt ""
"08101\n"
"node.text"
msgid "Subtotals"
-msgstr ""
+msgstr "المجاميع الفرعية"
#. CzARM
#: scalc.tree
@@ -297,7 +297,6 @@ msgstr "متنوع"
#. 6Saoi
#: schart.tree
-#, fuzzy
msgctxt ""
"schart.tree\n"
"05\n"
@@ -321,7 +320,7 @@ msgctxt ""
"09\n"
"help_section.text"
msgid "Database Functionality (Base)"
-msgstr ""
+msgstr "وظائف قواعد البيانات (بَيس)"
#. tLWiE
#: sdatabase.tree
@@ -330,7 +329,7 @@ msgctxt ""
"0901\n"
"node.text"
msgid "General Information"
-msgstr ""
+msgstr "معلومات عامة"
#. xU49Q
#: sdraw.tree
@@ -339,7 +338,7 @@ msgctxt ""
"11\n"
"help_section.text"
msgid "Drawings (Draw)"
-msgstr ""
+msgstr "الرسوم (درو)"
#. UcMAA
#: sdraw.tree
@@ -348,7 +347,7 @@ msgctxt ""
"1101\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "معلومات عامة واستخدام واجهة المستخدم"
#. ZDeBD
#: sdraw.tree
@@ -357,7 +356,7 @@ msgctxt ""
"1102\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "مرجع الأوامر و القوائم"
#. kq7Az
#: sdraw.tree
@@ -366,7 +365,7 @@ msgctxt ""
"11020201\n"
"node.text"
msgid "Menus"
-msgstr ""
+msgstr "القوائم"
#. SFgJ7
#: sdraw.tree
@@ -375,7 +374,7 @@ msgctxt ""
"11020202\n"
"node.text"
msgid "Toolbars"
-msgstr ""
+msgstr "أشرطة الأدوات"
#. 9ojH7
#: sdraw.tree
@@ -384,7 +383,7 @@ msgctxt ""
"1103\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
+msgstr "التحميل والحفظ والاستيراد والتصدير"
#. fJYHX
#: sdraw.tree
@@ -393,7 +392,7 @@ msgctxt ""
"1104\n"
"node.text"
msgid "Formatting"
-msgstr ""
+msgstr "التنسيق"
#. HkVUY
#: sdraw.tree
@@ -402,7 +401,7 @@ msgctxt ""
"1105\n"
"node.text"
msgid "Printing"
-msgstr ""
+msgstr "الطباعة"
#. G8GoF
#: sdraw.tree
@@ -411,7 +410,7 @@ msgctxt ""
"1106\n"
"node.text"
msgid "Effects"
-msgstr ""
+msgstr "المؤثرات"
#. fd9tS
#: sdraw.tree
@@ -420,7 +419,7 @@ msgctxt ""
"1107\n"
"node.text"
msgid "Objects, Graphics, and Bitmaps"
-msgstr ""
+msgstr "الكائنات، و الرسوميات و الصور النقطية"
#. crdMY
#: sdraw.tree
@@ -429,7 +428,7 @@ msgctxt ""
"1108\n"
"node.text"
msgid "Groups and Layers"
-msgstr ""
+msgstr "المجموعات والطبقات"
#. G3s8n
#: sdraw.tree
@@ -438,7 +437,7 @@ msgctxt ""
"1109\n"
"node.text"
msgid "Text in Drawings"
-msgstr ""
+msgstr "نص في الرسوم"
#. rxRmL
#: sdraw.tree
@@ -447,7 +446,7 @@ msgctxt ""
"1110\n"
"node.text"
msgid "Viewing"
-msgstr ""
+msgstr "المشاهَدة"
#. 4zaCG
#: shared.tree
@@ -456,7 +455,7 @@ msgctxt ""
"01\n"
"help_section.text"
msgid "%PRODUCTNAME Installation"
-msgstr ""
+msgstr "تثبيت %PRODUCTNAME"
#. 3EUAC
#: shared.tree
@@ -573,7 +572,7 @@ msgctxt ""
"10071\n"
"node.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "التواقيع الرقمية"
#. drtXn
#: shared.tree
@@ -609,7 +608,7 @@ msgctxt ""
"1012\n"
"node.text"
msgid "Charts and Diagrams"
-msgstr ""
+msgstr "الرسوم البيانية والمخططات"
#. GVohQ
#: shared.tree
@@ -618,7 +617,7 @@ msgctxt ""
"1013\n"
"node.text"
msgid "Load, Save, Import, Export, PDF"
-msgstr ""
+msgstr "حمّل، احفظ، استورد، صدّر، بي دي اف"
#. Ty8Du
#: shared.tree
@@ -690,7 +689,7 @@ msgctxt ""
"04\n"
"help_section.text"
msgid "Presentations (Impress)"
-msgstr ""
+msgstr "العُروض التقديمية (إمبريس)"
#. hBFX8
#: simpress.tree
@@ -735,7 +734,7 @@ msgctxt ""
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, Exporting and Redacting"
-msgstr ""
+msgstr "التحميل والحفظ والاستيراد والتصدير والتنقيح"
#. jMBsp
#: simpress.tree
@@ -780,7 +779,7 @@ msgctxt ""
"0409\n"
"node.text"
msgid "Text in Presentations"
-msgstr ""
+msgstr "نص في العروض التقديمية"
#. s8GCo
#: simpress.tree
@@ -789,7 +788,7 @@ msgctxt ""
"0410\n"
"node.text"
msgid "Viewing"
-msgstr "العرض"
+msgstr "المشاهَدة"
#. Lo4YZ
#: simpress.tree
@@ -798,7 +797,7 @@ msgctxt ""
"0411\n"
"node.text"
msgid "Slide Shows"
-msgstr ""
+msgstr "عروض شرائح"
#. m5CkC
#: smath.tree
@@ -807,7 +806,7 @@ msgctxt ""
"03\n"
"help_section.text"
msgid "Formulas (Math)"
-msgstr ""
+msgstr "مُعادَلات (ماث)"
#. kAkAL
#: smath.tree
@@ -825,7 +824,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "عناصر معادَلات %PRODUCTNAME"
#. V99im
#: smath.tree
@@ -852,7 +851,7 @@ msgctxt ""
"02\n"
"help_section.text"
msgid "Text Documents (Writer)"
-msgstr ""
+msgstr "مستندات نصوص (رايتر)"
#. jWyEV
#: swriter.tree
@@ -1041,7 +1040,7 @@ msgctxt ""
"0219\n"
"node.text"
msgid "Loading, Saving, Importing, Exporting and Redacting"
-msgstr ""
+msgstr "التحميل والحفظ والاستيراد والتصدير والتنقيح"
#. 8GC4J
#: swriter.tree
@@ -1086,4 +1085,4 @@ msgctxt ""
"06\n"
"help_section.text"
msgid "HTML Documents (Writer Web)"
-msgstr ""
+msgstr "مستندات HTML (رايتر وب)"
diff --git a/source/ar/helpcontent2/source/text/sbasic/python.po b/source/ar/helpcontent2/source/text/sbasic/python.po
index a4575334b60..6cfa165919f 100644
--- a/source/ar/helpcontent2/source/text/sbasic/python.po
+++ b/source/ar/helpcontent2/source/text/sbasic/python.po
@@ -3,13 +3,15 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+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"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ar/>\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
@@ -20,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Scripts"
-msgstr ""
+msgstr "سكربتات بايثون"
#. 9RJv6
#: main0000.xhp
@@ -29,7 +31,7 @@ msgctxt ""
"bm_id491543348147708\n"
"help.text"
msgid "<bookmark_value>macros;Python scripts</bookmark_value> <bookmark_value>Python;macros</bookmark_value> <bookmark_value>scripts;Python</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ماكروهات؛سكربتات بايثون</bookmark_value> <bookmark_value>بايثون؛ماكروهات</bookmark_value> <bookmark_value>سكربتات؛بايثون</bookmark_value>"
#. vAoRU
#: main0000.xhp
@@ -38,7 +40,7 @@ msgctxt ""
"hd_id3154232\n"
"help.text"
msgid "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\" name=\"mainpython\">%PRODUCTNAME Python Scripts Help</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\" name=\"mainpython\">مساعدة سكربتات بايثون %PRODUCTNAME</link></variable>"
#. snE38
#: main0000.xhp
@@ -65,7 +67,7 @@ msgctxt ""
"hd_id3146957\n"
"help.text"
msgid "Working with Python Scripts in %PRODUCTNAME"
-msgstr ""
+msgstr "العمل مع سكربتات بايثون في %PRODUCTNAME"
#. mQFKb
#: main0000.xhp
@@ -166,13 +168,13 @@ msgctxt ""
msgid "It is recommended to have knowledge of Python standard modules and %PRODUCTNAME API features prior to perform inter-language calls from Python to Basic, JavaScript or any other script engine."
msgstr ""
-#. yXTrk
+#. Sffwq
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0338\n"
"help.text"
-msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME nested Basic engine may be absent. Avoid Python to %PRODUCTNAME Basic calls in such context. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
+msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
msgstr ""
#. NcuDF
@@ -445,13 +447,13 @@ msgctxt ""
msgid "My Macros or %PRODUCTNAME Macros dialogs"
msgstr ""
-#. jCE4m
+#. pcUEy
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0339\n"
"help.text"
-msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. ChW9B
@@ -463,13 +465,13 @@ msgctxt ""
msgid "Document embedded dialogs"
msgstr ""
-#. SsPGJ
+#. uHH6H
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0365\n"
"help.text"
-msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. mMo7w
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index c227fb04c05..8a4787d42e8 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared.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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
-"Last-Translator: kimy <kimy747@zohomail.com>\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -59,7 +59,7 @@ msgctxt ""
"par_id3156443\n"
"help.text"
msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
-msgstr ""
+msgstr "عند تحويل الأرقام، يستخدم بيسك في $[officename] إعدادات المحلية للنظام لتحديد نوع فاصل المئات والآلاف."
#. NfzqE
#: 00000002.xhp
@@ -4741,13 +4741,13 @@ msgctxt ""
msgid "-no UI-"
msgstr ""
-#. FsrLe
+#. AUk3A
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id961599839198859\n"
"help.text"
-msgid "When the document disk location has changed, for example after a <emph>File - Save As...</emph> action."
+msgid "When the document disk location has changed, for example after a <emph>File - Save As</emph> action."
msgstr ""
#. n5TCf
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared/03.po b/source/ar/helpcontent2/source/text/sbasic/shared/03.po
index 24f7a06d2a3..587f2e44a36 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2018-07-12 14:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -16,6 +16,87 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1531405548.000000\n"
+#. ViEWM
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"tit\n"
+"help.text"
+msgid "(Un)Available since release"
+msgstr ""
+
+#. CeSww
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasMeth\n"
+"help.text"
+msgid "This method is not available in Basic."
+msgstr ""
+
+#. LDXQx
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasProp\n"
+"help.text"
+msgid "This property is not available in Basic."
+msgstr ""
+
+#. 4GDXo
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycMeth\n"
+"help.text"
+msgid "This method is not available in Python."
+msgstr ""
+
+#. 3ZUdq
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycProp\n"
+"help.text"
+msgid "This property is not available in Python."
+msgstr ""
+
+#. GXE45
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id281613660174140\n"
+"help.text"
+msgid "These methods are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. qjuHF
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id981613655373210\n"
+"help.text"
+msgid "This control is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. bAYUN
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id831613654401663\n"
+"help.text"
+msgid "These event properties are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. kVj8c
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id201613654395537\n"
+"help.text"
+msgid "This property is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. EziC4
#: lib_ScriptForge.xhp
msgctxt ""
@@ -23,7 +104,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge Libraries"
-msgstr ""
+msgstr "مكتبات سكربت فورج"
#. NXPBo
#: lib_ScriptForge.xhp
@@ -32,7 +113,7 @@ msgctxt ""
"hd_id31529004750471\n"
"help.text"
msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">The <item type=\"literal\">ScriptForge</item> Library</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">مكتبة <item type=\"literal\">سكربت فورج</item></link></variable>"
#. nMjDG
#: lib_ScriptForge.xhp
@@ -41,16 +122,7 @@ msgctxt ""
"bm_id491529070339774\n"
"help.text"
msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value>"
-msgstr ""
-
-#. MHX92
-#: lib_ScriptForge.xhp
-msgctxt ""
-"lib_ScriptForge.xhp\n"
-"par_id901528999850603\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#basiclibrarynote\" markup=\"keep\"/><br/> <item type=\"literal\">GlobalScope.BasicLibraries.LoadLibrary(\"ScriptForge\")</item>"
-msgstr ""
+msgstr "<bookmark_value>مكتبة سكربت فورج لبيسكBASIC </bookmark_value>"
#. WLejn
#: lib_ScriptForge.xhp
@@ -79,15 +151,69 @@ msgctxt ""
msgid "The <literal>ScriptForge</literal> Basic library is available from %PRODUCTNAME 7.1 onwards."
msgstr ""
-#. acPUv
+#. Depaw
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
-"par_id891611613601554\n"
+"hd_id851613836643580\n"
"help.text"
msgid "Services provided by the ScriptForge library"
msgstr ""
+#. dw2Fe
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838858931\n"
+"help.text"
+msgid "Category"
+msgstr ""
+
+#. TmFbF
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id441613838858931\n"
+"help.text"
+msgid "Services"
+msgstr ""
+
+#. ZZKBq
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id851613847558931\n"
+"help.text"
+msgid "%PRODUCTNAME Basic"
+msgstr ""
+
+#. jv7Z3
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838825831\n"
+"help.text"
+msgid "Document Content"
+msgstr ""
+
+#. 8fZtg
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613947858931\n"
+"help.text"
+msgid "User Interface"
+msgstr ""
+
+#. dAomL
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613866258931\n"
+"help.text"
+msgid "Utilities"
+msgstr ""
+
#. 6gvZc
#: lib_ScriptForge.xhp
msgctxt ""
@@ -178,13 +304,13 @@ msgctxt ""
msgid "Its entry points are:"
msgstr ""
-#. SBNCb
+#. puNwN
#: lib_euro.xhp
msgctxt ""
"lib_euro.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Euro Converter…</emph> wizard loads the following libraries in memory:"
+msgid "Selecting the <emph>Euro Converter</emph> wizard loads the following libraries in memory:"
msgstr ""
#. TGAHA
@@ -268,13 +394,13 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. kN4F6
+#. ewcAB
#: lib_gimmicks.xhp
msgctxt ""
"lib_gimmicks.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText...</emph> wizard."
+msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText</emph> wizard."
msgstr ""
#. kHzUe
@@ -358,13 +484,13 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. asxd6
+#. Anhsb
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document converter...</emph> wizard."
+msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document Converter</emph> wizard."
msgstr ""
#. FaGZt
@@ -376,13 +502,13 @@ msgctxt ""
msgid "Its entry point is:"
msgstr ""
-#. EyBsL
+#. foGsC
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Document Converter...</emph> wizard loads the following libraries in memory:"
+msgid "Selecting the <emph>Document Converter</emph> wizard loads the following libraries in memory:"
msgstr ""
#. vV4TD
@@ -2230,13 +2356,13 @@ msgctxt ""
msgid "Definitions"
msgstr ""
-#. nXWRV
+#. 4gE5A
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id511591016999246\n"
"help.text"
-msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>)."
+msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>."
msgstr ""
#. kq2Br
@@ -2275,15 +2401,6 @@ msgctxt ""
msgid "The example below copies data from document A (opened as read-only and hidden) to document B."
msgstr ""
-#. 22mej
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id941591020321580\n"
-"help.text"
-msgid "SheetName"
-msgstr ""
-
#. iED65
#: sf_calc.xhp
msgctxt ""
@@ -2302,15 +2419,6 @@ msgctxt ""
msgid "The shortcut \"~\" (tilde) represents the current sheet."
msgstr ""
-#. pL4FD
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id101591020737697\n"
-"help.text"
-msgid "RangeName"
-msgstr ""
-
#. nskFb
#: sf_calc.xhp
msgctxt ""
@@ -4282,6 +4390,636 @@ msgctxt ""
msgid "'Sort range based on columns A (ascending) and C (descending)"
msgstr ""
+#. zNFY6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDatabases.Database service"
+msgstr ""
+
+#. K7nuj
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id371587913266310\n"
+"help.text"
+msgid "<variable id=\"DatabaseService\"><link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link></variable>"
+msgstr ""
+
+#. RByov
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407198144\n"
+"help.text"
+msgid "The <literal>Database</literal> service provides access to databases either embedded or described in Base documents. This service provides methods to:"
+msgstr ""
+
+#. 7dqXS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924481\n"
+"help.text"
+msgid "Get access to data in database tables."
+msgstr ""
+
+#. 29pT5
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924285\n"
+"help.text"
+msgid "Run <literal>SELECT</literal> queries and perform aggregate functions."
+msgstr ""
+
+#. LYsPD
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924111\n"
+"help.text"
+msgid "Run SQL action statements such as <literal>INSERT</literal>, <literal>UPDATE</literal>, <literal>DELETE</literal>, etc."
+msgstr ""
+
+#. ABgYk
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id811599407236602\n"
+"help.text"
+msgid "Each instance of the <literal>Database</literal> service represents a single database and gives access to its tables, queries and data. This service does not provide access to forms or reports in the Base document."
+msgstr ""
+
+#. Snu6R
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231615386789950\n"
+"help.text"
+msgid "All exchanges between this service and the database are done using SQL only."
+msgstr ""
+
+#. MiGUE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id121599407322804\n"
+"help.text"
+msgid "SQL statements may be run in <emph>direct</emph> or <emph>indirect</emph> mode. In direct mode the statement is transferred to the database engine without any syntax checking or review."
+msgstr ""
+
+#. Kg5Cn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id681599407189019\n"
+"help.text"
+msgid "The provided interfaces include simple tables and queries lists, as well as access to database data."
+msgstr ""
+
+#. N3J98
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407280007\n"
+"help.text"
+msgid "To make SQL statements more readable, you can use optional square brackets to enclose tables, queries and fields instead of using other enclosing characters that may be exclusive to certain Relational Database Management Systems (RDBMS)."
+msgstr ""
+
+#. CAFnK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id91587913266988\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. GBCxf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id541599408159668\n"
+"help.text"
+msgid "The code snippet below shows how to access any database with the <literal>Database</literal> service."
+msgstr ""
+
+#. RApNW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id471599408248873\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. f2tV4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id111615146818256\n"
+"help.text"
+msgid "<emph>FileName</emph>: The name of the Base file. Must be expressed using <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. yg5bv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id771615146944307\n"
+"help.text"
+msgid "<emph>RegistrationName</emph>: The name of a registered database. If a file name is provided, this argument should not be used."
+msgstr ""
+
+#. RM9c6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id491615147048748\n"
+"help.text"
+msgid "Conversely, if a <literal>RegistrationName</literal> is specified, the <literal>FileName</literal> parameter should not be defined."
+msgstr ""
+
+#. 3d6NY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id841615147168279\n"
+"help.text"
+msgid "<emph>ReadOnly</emph>: Determines if the database will be opened as readonly (Default = True)."
+msgstr ""
+
+#. Gn7AF
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id291615147236001\n"
+"help.text"
+msgid "<emph>User, Password</emph>: Additional connection parameters to the database server."
+msgstr ""
+
+#. Z2VVg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id771615147491563\n"
+"help.text"
+msgid "Accessing Databases with the UI Service"
+msgstr ""
+
+#. 6s3Hr
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id901599408410712\n"
+"help.text"
+msgid "It is also possible to access the database associated with a Base document using the <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"UI Service\"><literal>ScriptForge.UI</literal></link> service, as shown in the example below:"
+msgstr ""
+
+#. T6mkQ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id631615147843278\n"
+"help.text"
+msgid "' User and password are supplied below, if needed"
+msgstr ""
+
+#. 88wGG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id921599408791887\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. EF9Lc
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id841587913266618\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. x4Z5A
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521587913266568\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. QUrYT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587913266368\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. 3kQCm
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id631587914939732\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. RYuuo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id951587913266220\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. BzLQb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id651587913266754\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. up8WT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587914989890\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. dGoYp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id351587913266349\n"
+"help.text"
+msgid "The list of stored queries."
+msgstr ""
+
+#. bfdLR
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id931599409717463\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2DDTs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599409717945\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. rGTvw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id341599409717612\n"
+"help.text"
+msgid "The list of stored tables."
+msgstr ""
+
+#. u5YE4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id741599409777967\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. evuSw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551599409777759\n"
+"help.text"
+msgid "The UNO object representing the current database connection."
+msgstr ""
+
+#. w9YZG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599409887585\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NeTGg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id861599409887284\n"
+"help.text"
+msgid "The UNO object representing the metadata describing the database system attributes."
+msgstr ""
+
+#. ApsdK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the Database Service"
+msgstr ""
+
+#. emrA2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id201587913266596\n"
+"help.text"
+msgid "Closes the current database connection."
+msgstr ""
+
+#. nwbSh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id13159655484952\n"
+"help.text"
+msgid "Computes the given aggregate function on a field or expression belonging to a table."
+msgstr ""
+
+#. E9LsG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id101615148468548\n"
+"help.text"
+msgid "Optionally, a SQL <literal>WHERE</literal> clause can be specified as a filter that will be applied prior to the aggregate function."
+msgstr ""
+
+#. rKxVP
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441596554849949\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 3PSmS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id381596554849698\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. F4AAZ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521596554849185\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. AGBFS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id781615150306678\n"
+"help.text"
+msgid "The example below assumes the file <literal>Employees.odb</literal> has a table named <literal>EmployeeData</literal>."
+msgstr ""
+
+#. KAqZB
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id871615150277916\n"
+"help.text"
+msgid "' Counts the number of employees in the table"
+msgstr ""
+
+#. AVstM
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id291615150373387\n"
+"help.text"
+msgid "' Returns the sum of all salaries in the table"
+msgstr ""
+
+#. cMiVJ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id931615150423062\n"
+"help.text"
+msgid "' Below are some examples of how tables can be filtered"
+msgstr ""
+
+#. kCmmv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id41599488113961\n"
+"help.text"
+msgid "Computes a SQL expression on a single record returned by a <literal>WHERE</literal> clause defined by the <literal>Criteria</literal> parameter."
+msgstr ""
+
+#. 8yUaz
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id601615381471954\n"
+"help.text"
+msgid "If the query returns multiple records, only the first one is considered. Use the <literal>OrderClause</literal> parameter to determine how query results are sorted."
+msgstr ""
+
+#. CNwh2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id671599488113986\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 5DGVh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441599488113247\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. jtrX7
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id40159948811316\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. X5HJp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599488689029\n"
+"help.text"
+msgid "<emph>OrderClause</emph>: An <literal>ORDER BY</literal> clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets."
+msgstr ""
+
+#. CPoBx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id481599489278579\n"
+"help.text"
+msgid "Stores the contents of a table or the results of a <literal>SELECT</literal> query or of an SQL statement in a two-dimensional array. The first index in the array corresponds to the rows and the second index refers to the columns."
+msgstr ""
+
+#. GXji8
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id821615384762425\n"
+"help.text"
+msgid "An upper limit can be specified to the number of returned rows. Optionally column names may be inserted in the first row of the array."
+msgstr ""
+
+#. gX7AY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599490209915\n"
+"help.text"
+msgid "The returned array will be empty if no rows are returned and the column headers are not required."
+msgstr ""
+
+#. dURZU
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id451599489278429\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A table or query name (without square brackets) or a <literal>SELECT</literal> SQL statement."
+msgstr ""
+
+#. fFFFd
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599489278141\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
+#. unoDn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id941599489278747\n"
+"help.text"
+msgid "<emph>Header</emph>: When <literal>True</literal>, the first row of the returned array contains the column headers."
+msgstr ""
+
+#. BZxwK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id591599489278926\n"
+"help.text"
+msgid "<emph>MaxRows</emph>: The maximum number of rows to return. The default is zero, meaning there is no limit to the number of returned rows."
+msgstr ""
+
+#. 3XZPf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id721615385125947\n"
+"help.text"
+msgid "Below are a few examples of how the <literal>GetRows</literal> method can be used:"
+msgstr ""
+
+#. zkeuW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id171615385196045\n"
+"help.text"
+msgid "' Returns all rows in the table with column headers"
+msgstr ""
+
+#. eFmmE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id371615385230721\n"
+"help.text"
+msgid "' Returns the first 50 employee records ordered by the 'FirstName' field"
+msgstr ""
+
+#. FMBEy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id31599490609759\n"
+"help.text"
+msgid "Executes an action query of an SQL statement such as creating a table, as well as inserting, updating and deleting records."
+msgstr ""
+
+#. gyiQy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id331615385491925\n"
+"help.text"
+msgid "The method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. G5bDE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id21599490810021\n"
+"help.text"
+msgid "The <literal>RunSql</literal> method is rejected with an error message in case the database was previously opened in read-only mode."
+msgstr ""
+
+#. cMjus
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id701599490609473\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A query name (without square brackets) or a SQL statement."
+msgstr ""
+
+#. kngXb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id51599490609377\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. (Default = <literal>False</literal>). For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
#. BC4Sc
#: sf_dialog.xhp
msgctxt ""
@@ -4363,13 +5101,13 @@ msgctxt ""
msgid "Service invocation and usage"
msgstr ""
-#. hZcuK
+#. v8RcL
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The dialog service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
+msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
msgstr ""
#. Ntzqh
@@ -4444,6 +5182,15 @@ msgctxt ""
msgid "Note that in previous examples, the prefix <literal>\"SFDialogs.\"</literal> may be omitted."
msgstr ""
+#. zLWvF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id251612628336779\n"
+"help.text"
+msgid "Properties or methods marked below as <emph>(7.2)</emph> are available as from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. nXGkZ
#: sf_dialog.xhp
msgctxt ""
@@ -4669,121 +5416,301 @@ msgctxt ""
msgid "The UNO object representing the dialog view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControl interface\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog-members.html\" name=\"UnoControlDialog interface\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. gTQjc
+#. q8eyc
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id921606472825856\n"
+"hd_id421612628828054\n"
"help.text"
-msgid "Methods"
+msgid "Event properties"
msgstr ""
-#. DiCyL
+#. EbGWN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id871583933076448\n"
+"par_id41612629140856\n"
"help.text"
-msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
msgstr ""
-#. 7QdPA
+#. XCC7C
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id151598178880227\n"
+"par_id961612628879819\n"
"help.text"
-msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgid "Name"
msgstr ""
-#. L9qDh
+#. V3bin
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id61583933076171\n"
+"par_id401612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "ReadOnly"
msgstr ""
-#. iFcFd
+#. uW85z
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id26158393307687\n"
+"par_id281612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Basic IDE Description"
msgstr ""
-#. eYDfG
+#. dFkbN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"bas_id841598179117184\n"
+"par_id111612629836630\n"
"help.text"
-msgid "' Dialog stored in current document's standard library"
+msgid "Yes"
msgstr ""
-#. 4qLn9
+#. aKBvg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id161584541257982\n"
+"par_id1001612629836902\n"
"help.text"
-msgid "Return either:"
+msgid "When receiving focus"
msgstr ""
-#. isSnB
+#. 4FBaJ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id421598179770993\n"
+"par_id291612629836294\n"
"help.text"
-msgid "the list of the controls contained in the dialog"
+msgid "Yes"
msgstr ""
-#. 4EuYK
+#. 8U7FZ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id81598185229301\n"
+"par_id62161262983683\n"
"help.text"
-msgid "a dialog control class instance based on its name"
+msgid "When losing focus"
msgstr ""
-#. 2RFtC
+#. wBCKi
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id601584541257443\n"
+"par_id81612629836634\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "Yes"
msgstr ""
-#. 7PGuV
+#. CK5vU
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id291584541257237\n"
+"par_id881612629836744\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgid "Key pressed"
msgstr ""
-#. AEAHd
+#. gXJGu
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id1001584541257789\n"
+"par_id591612629836830\n"
"help.text"
-msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgid "Yes"
msgstr ""
-#. atHXa
+#. CJwi7
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id32158454125769\n"
+"par_id161612629836775\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Key released"
+msgstr ""
+
+#. wS7GH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. GcDU7
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. eUS49
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QrByH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. CRGTF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 69s4B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. ojLRr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. XaS8A
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. MnMUF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NtqPz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. czknv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. J2uzg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. gTQjc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. DiCyL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 7QdPA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgstr ""
+
+#. eYDfG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id841598179117184\n"
+"help.text"
+msgid "' Dialog stored in current document's standard library"
+msgstr ""
+
+#. 4qLn9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "Return either:"
+msgstr ""
+
+#. isSnB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id421598179770993\n"
+"help.text"
+msgid "the list of the controls contained in the dialog"
+msgstr ""
+
+#. 4EuYK
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81598185229301\n"
+"help.text"
+msgid "a dialog control class instance based on its name"
+msgstr ""
+
+#. AEAHd
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
msgstr ""
#. j8x9C
@@ -4876,22 +5803,13 @@ msgctxt ""
msgid "' Dialog stored in current document's standard library"
msgstr ""
-#. FrCG7
-#: sf_dialog.xhp
-msgctxt ""
-"sf_dialog.xhp\n"
-"bas_id781612273203518\n"
-"help.text"
-msgid "End Select"
-msgstr ""
-
-#. DYy75
+#. ARCGg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id21598187953679\n"
"help.text"
-msgid "Terminate the dialog service for the current instance. Return <literal>True</literal> if the termination was successful."
+msgid "Terminate the <literal>Dialog</literal> service for the current instance. Return <literal>True</literal> if the termination was successful."
msgstr ""
#. BFfGX
@@ -4921,31 +5839,31 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service manages the controls belonging to a dialog defined with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current service represents a single control within a dialog box."
msgstr ""
-#. 3oXnC
+#. 7dDgL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bm_id331612167249331\n"
+"par_id701598191157426\n"
"help.text"
-msgid "<bookmark_value>API;awt.XControl</bookmark_value> <bookmark_value>API;awt.XControlModel</bookmark_value>"
+msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
msgstr ""
-#. 7dDgL
+#. fFfwe
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id701598191157426\n"
+"par_id981598191184526\n"
"help.text"
-msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
+msgid "Note that the unique <literal>DialogControl.Value</literal> property content varies according to the control type."
msgstr ""
-#. GqHgy
+#. MBrzA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id981598191184526\n"
+"par_id991612698027551\n"
"help.text"
-msgid "Note that <literal>DialogControl.Value</literal> property content varies according to UNO control types."
+msgid "A special attention is given to controls of type tree control. It is easy to populate a tree, either branch by branch, or with a set of branches at once. Populating a tree control can be performed statically or dynamically."
msgstr ""
#. 9LpGF
@@ -5029,6 +5947,15 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service is available for these control types:"
msgstr ""
+#. ScLTk
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612698897514\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
#. 7xddb
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5092,6 +6019,15 @@ msgctxt ""
msgid "No"
msgstr ""
+#. jqpFz
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id231598538847029\n"
+"help.text"
+msgid "Button"
+msgstr ""
+
#. aTyMC
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5146,6 +6082,33 @@ msgctxt ""
msgid "One of the types listed above."
msgstr ""
+#. oMipU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id67161270548283\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 59ovD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341612705482566\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. w2ZhT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612705482919\n"
+"help.text"
+msgid "The currently upmost node selected in the tree control. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. veivJ
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5200,13 +6163,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. DrmM6
+#. 6L9ke
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id491598539231618\n"
+"par_id491598529331618\n"
"help.text"
-msgid "DateField, TimeField, FormattedField (read-only)"
+msgid "(read-only)"
msgstr ""
#. QbN5U
@@ -5425,6 +6388,33 @@ msgctxt ""
msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the specified control. The filename must comply with the <literal>FileNaming</literal> attribute of the <literal>ScriptForge.FileSystem</literal> service."
msgstr ""
+#. LZLsc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612700624650\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QxAW9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612700624483\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. m4N4j
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id11612700624514\n"
+"help.text"
+msgid "An object representing the lowest root node (usually there is only one such root node). Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. PqsSY
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5515,13 +6505,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. fk87j
+#. ZHrsm
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id991598517671916\n"
+"par_id1001598540024225\n"
"help.text"
-msgid "Read below."
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\" name=\"Value property\">Value property</link>"
msgstr ""
#. PqKgo
@@ -5623,13 +6613,49 @@ msgctxt ""
msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog.html)\" name=\"awt.UnoControlDialog\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. agJv5
+#. SAkJX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612699446459\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yuAdF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612699446893\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. 3Dmwo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id25161269944611\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
+#. 7XckG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id691612699446892\n"
+"help.text"
+msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\" name=\"awt.tree.XMutableTreeDataModel\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. dfWTW
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"hd_id81598540704978\n"
"help.text"
-msgid "The Value property"
+msgid "The <variable id=\"ValueProperty\">Value property</variable>"
msgstr ""
#. JHK7w
@@ -5659,6 +6685,15 @@ msgctxt ""
msgid "Description"
msgstr ""
+#. kfK2B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id271598543254590\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. jEyx9
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5686,6 +6721,15 @@ msgctxt ""
msgid "0, False: not checked<br/>1, True: checked<br/>2: grayed, don't know"
msgstr ""
+#. EKHtH
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781598543254887\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. nZVA5
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5704,6 +6748,24 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. DoCfT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401598543254743\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. XzBhY
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id731598543254544\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. kgfXR
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5749,6 +6811,15 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. CCkkF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81598543254625\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. YvPAp
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5767,6 +6838,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. veFie
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id561598543254115\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. ZragT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5794,6 +6874,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. 5VuCQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id751598543254299\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. a9AMF
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5803,6 +6892,348 @@ msgctxt ""
msgid "The text appearing in the field"
msgstr ""
+#. wGGjL
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341598543254600\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. CABLr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. c7srp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgstr ""
+
+#. fkFAt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 2sB8F
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 2A2Ex
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Description as labeled in the Basic IDE"
+msgstr ""
+
+#. rSRBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id91612707166532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. aABgD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612707166258\n"
+"help.text"
+msgid "Execute action"
+msgstr ""
+
+#. KnFdW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id79161270716675\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JrRob
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612707166731\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. mpuj3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 7Swj5
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. Mp4i7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ozGia
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. TR5uW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612707354544\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. HREcr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612707354899\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. L6e2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. sVo6A
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. pPBHX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. P6NX8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. XJGHA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. oCDXm
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. nLbMG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9XdcG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. BZ7sC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. mzbBD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. fAD8Y
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FCBxu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. 4DCtC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8B9ct
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. krueU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4c5qE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. FkyLb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id851612707606863\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. VudpK
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id351612707606197\n"
+"help.text"
+msgid "(Not in Basic IDE) when the expansion button is pressed on a node in a tree control"
+msgstr ""
+
+#. TkEgQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id121612707606251\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. quWBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612707606121\n"
+"help.text"
+msgid "(Not in Basic IDE) when a node in a tree control is selected"
+msgstr ""
+
+#. qyb3B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id811612707606330\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. th6Kr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id621612707606219\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
#. YFbGT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5821,33 +7252,222 @@ msgctxt ""
msgid "List of Methods in the DialogControl Service"
msgstr ""
-#. 3oU3L
+#. 5jtfg
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id871583933076448\n"
+"par_id831612711823126\n"
"help.text"
-msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. <variable id=\"XMutableTreeNode\">Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XMutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information.</variable>"
msgstr ""
-#. 6YvuU
+#. MrQnS
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id151598178880227\n"
+"par_id741612711823706\n"
"help.text"
-msgid "This method is often called from a dialog or control event."
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. B7sAb
+#. cK7HA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id841598179117184\n"
+"par_id761612711823834\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. g2Ubo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id791612711823819\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. GV6Gp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id911612711823382\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. qbb2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id401612711823779\n"
"help.text"
msgid "'Dialog stored in current document's standard library"
msgstr ""
+#. 8B3qP
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id221612713087885\n"
+"help.text"
+msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
+msgstr ""
+
+#. UkE9k
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781612713087722\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. 2FTD4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id36161271308759\n"
+"help.text"
+msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgstr ""
+
+#. r5QNj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id61612716027443\n"
+"help.text"
+msgid "Flat tree >>>> Resulting subtree"
+msgstr ""
+
+#. SQH7v
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612713087915\n"
+"help.text"
+msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgstr ""
+
+#. fWnhZ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612780723320\n"
+"help.text"
+msgid "Returns a new root node of the tree control, as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. The new tree root is inserted below pre-existing root nodes. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. YT845
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id821612780723965\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
+msgstr ""
+
+#. QiXVA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id671612780723837\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. Cw3b9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id31612780723267\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. Ynpwt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612781589503\n"
+"help.text"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. 5Jxkj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612782475457\n"
+"help.text"
+msgid "When not found, the method returns <literal>Nothing</literal>, to be tested with the <literal>IsNull()</literal> builtin function."
+msgstr ""
+
+#. n7pE8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612781589363\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
+msgstr ""
+
+#. t5Kcc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id541613670199211\n"
+"help.text"
+msgid "One argument out of <literal>DisplayValue</literal>or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgstr ""
+
+#. KMPVF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612781589560\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"Sting service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgstr ""
+
+#. CF4o6
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id481612781589626\n"
+"help.text"
+msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
+msgstr ""
+
+#. g7uEG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id141582384726168\n"
+"help.text"
+msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgstr ""
+
+#. 3oU3L
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 6YvuU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is often called from a dialog or control event."
+msgstr ""
+
#. HNmmm
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5866,13 +7486,13 @@ msgctxt ""
msgid "An error is raised if the actual control is not of the type <literal>TextField</literal> or is not multiline."
msgstr ""
-#. MwNhE
+#. AKiEA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Line</emph> : The string to insert. Default = an empty line."
+msgid "<emph>Line</emph>: The string to insert. Default is an empty line."
msgstr ""
#. opNus
@@ -8017,15 +9637,6 @@ msgctxt ""
msgid "The following code snippet invokes the <literal>FileSystem</literal> service. The method <literal>BuildPath</literal> was used as an example."
msgstr ""
-#. hUmn8
-#: sf_filesystem.xhp
-msgctxt ""
-"sf_filesystem.xhp\n"
-"bm_id901612991354326\n"
-"help.text"
-msgid "<bookmark_value>FileSystem service;FileNaming property</bookmark_value> <bookmark_value>FileSystem service;ConfigFolder property</bookmark_value> <bookmark_value>FileSystem service;ExtensionsFolder property</bookmark_value> <bookmark_value>FileSystem service;HomeFolder property</bookmark_value> <bookmark_value>FileSystem service;InstallFolder property</bookmark_value> <bookmark_value>FileSystem service;TemplatesFolder property</bookmark_value> <bookmark_value>FileSystem service;TemporaryFolder property</bookmark_value> <bookmark_value>FileSystem service;UserTemplatesFolder property</bookmark_value>"
-msgstr ""
-
#. Gsznv
#: sf_filesystem.xhp
msgctxt ""
@@ -8269,22 +9880,22 @@ msgctxt ""
msgid "Joins a folder path and the name of a file and returns the full file name with a valid path separator. The path separator is added only if necessary."
msgstr ""
-#. dbCP6
+#. EDmLL
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id90158393307695\n"
"help.text"
-msgid "<emph>FolderName</emph> : The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
+msgid "<emph>FolderName</emph>: The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
msgstr ""
-#. LaGBv
+#. TqBVA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id891583933076975\n"
"help.text"
-msgid "<emph>Name</emph> : The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
+msgid "<emph>Name</emph>: The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
msgstr ""
#. DwTpc
@@ -8305,22 +9916,22 @@ msgctxt ""
msgid "Depending on the value of the <literal>CompareContents</literal> argument, the comparison between both files can be either based only on file attributes (such as the last modified date), or based on the file contents."
msgstr ""
-#. dLpG4
+#. kYy2f
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481601118910755\n"
"help.text"
-msgid "<emph>FileName1, FileName2</emph> : The files to compare."
+msgid "<emph>FileName1, FileName2</emph>: The files to compare."
msgstr ""
-#. TAPBR
+#. mXZPN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111601118910848\n"
"help.text"
-msgid "<emph>CompareContents</emph> : When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
+msgid "<emph>CompareContents</emph>: When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
msgstr ""
#. EZNG5
@@ -8350,22 +9961,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ErB6x
+#. cxNda
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
msgstr ""
-#. A3qtd
+#. pwEq9
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111584542310166\n"
"help.text"
-msgid "<emph>Destination</emph> : It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
msgstr ""
#. FCpqn
@@ -8386,13 +9997,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. 53E5r
+#. 48FYf
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431558\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. KerV3
@@ -8440,22 +10051,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ygWn7
+#. isESD
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id851584544734202\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
msgstr ""
-#. EgL3W
+#. 5fFnt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id321584544734273\n"
"help.text"
-msgid "<emph>Destination</emph> : Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
msgstr ""
#. CzQ9A
@@ -8476,13 +10087,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. KCfZf
+#. 2ziFA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431525\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. niaPD
@@ -8512,13 +10123,13 @@ msgctxt ""
msgid "If the specified folder has a parent folder that does not exist, it is created."
msgstr ""
-#. ZFWUY
+#. G2A8N
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id491584540675469\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be created. If the folder already exists, an exception will be raised."
+msgid "<emph>FolderName</emph>: A string representing the folder to be created. If the folder already exists, an exception will be raised."
msgstr ""
#. EYSCS
@@ -8539,31 +10150,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. tykpH
+#. hBQSN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id901585322689715\n"
"help.text"
-msgid "<emph>FileName</emph> : The name of the file to be created."
+msgid "<emph>FileName</emph>: The name of the file to be created."
msgstr ""
-#. ZcmDb
+#. VkGyb
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id501585322689209\n"
"help.text"
-msgid "<emph>Overwrite</emph> : Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
+msgid "<emph>Overwrite</emph>: Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
msgstr ""
-#. X7GW9
+#. Zp6H3
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585322689192\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. eoE92
@@ -8611,13 +10222,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. D8kDv
+#. 2k57M
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id441584882040860\n"
"help.text"
-msgid "<emph>FileName</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
+msgid "<emph>FileName</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
msgstr ""
#. YtAfH
@@ -8665,13 +10276,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. zdaKv
+#. ecg9D
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id451584882542247\n"
"help.text"
-msgid "<emph>FolderName</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
+msgid "<emph>FolderName</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
msgstr ""
#. ECKGi
@@ -8701,13 +10312,13 @@ msgctxt ""
msgid "If the <literal>FileName</literal> parameter is actually an existing folder name, the method returns <literal>False</literal>."
msgstr ""
-#. 5sCo3
+#. 7pDFB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id361583764426547\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file to be tested."
+msgid "<emph>FileName</emph>: A string representing the file to be tested."
msgstr ""
#. ChDCL
@@ -8737,22 +10348,22 @@ msgctxt ""
msgid "The resulting list may be filtered with wildcards."
msgstr ""
-#. QFJEd
+#. YsYdQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id731583944543140\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. 6qDtR
+#. V95Bm
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id591585648450060\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
msgstr ""
#. HJ9vL
@@ -8782,13 +10393,13 @@ msgctxt ""
msgid "If the <literal>FolderName</literal> parameter is actually an existing file name, the method returns <literal>False</literal>."
msgstr ""
-#. SQVF8
+#. Z46FB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001583765642211\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be tested."
+msgid "<emph>FolderName</emph>: A string representing the folder to be tested."
msgstr ""
#. eAFVs
@@ -8809,13 +10420,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. kotiz
+#. B3jVo
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id691584110618308\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. VcGyZ
@@ -8863,13 +10474,13 @@ msgctxt ""
msgid "If this method is applied to a folder name or to a file without an extension, then an empty string is returned."
msgstr ""
-#. tQpBe
+#. GDoGW
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821584032680311\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. Am6Bu
@@ -8890,13 +10501,13 @@ msgctxt ""
msgid "The <literal>GetFileLen</literal> method can handle files with much larger sizes by returning a <literal>Currency</literal> value."
msgstr ""
-#. cC9GE
+#. FvwV6
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id161600685050367\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. o2GGJ
@@ -8908,13 +10519,13 @@ msgctxt ""
msgid "Returns the last modified date of a given file."
msgstr ""
-#. ssSmV
+#. dxpgz
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id25158481147822\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. VEZR6
@@ -8935,13 +10546,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. DHaix
+#. VWPoq
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671584032366193\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. ffxFe
@@ -8962,13 +10573,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. Gqc5k
+#. XDmYQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471584113432231\n"
"help.text"
-msgid "<emph>FileName</emph> : A string with the file or folder name to be analyzed."
+msgid "<emph>FileName</emph>: A string with the file or folder name to be analyzed."
msgstr ""
#. Uc93M
@@ -9025,22 +10636,22 @@ msgctxt ""
msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
msgstr ""
-#. 5FXjQ
+#. jTMPS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id28160104251451\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
-#. 88LmG
+#. F86KG
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id71601042959846\n"
"help.text"
-msgid "<emph>Algorithm</emph> : One of the supported algorithms."
+msgid "<emph>Algorithm</emph>: One of the supported algorithms."
msgstr ""
#. HzFs2
@@ -9070,22 +10681,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. RY5vD
+#. LAeis
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id721584791330406\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
msgstr ""
-#. 5CsKP
+#. rgNqi
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id291584791330181\n"
"help.text"
-msgid "<emph>Destination</emph> : If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
+msgid "<emph>Destination</emph>: If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
msgstr ""
#. E7BHq
@@ -9151,22 +10762,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. wBkni
+#. tLxAt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id541584791330777\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
msgstr ""
-#. By4Cy
+#. bTWWF
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551584791330279\n"
"help.text"
-msgid "<emph>Destination</emph> : If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
+msgid "<emph>Destination</emph>: If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
msgstr ""
#. upwt8
@@ -9214,31 +10825,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. CBiwE
+#. R5a4m
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585320922678\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open."
+msgid "<emph>FileName</emph>: Identifies the file to open."
msgstr ""
-#. wr4wi
+#. FUxVH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671585320922388\n"
"help.text"
-msgid "<emph>IOMode</emph> : Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
+msgid "<emph>IOMode</emph>: Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
msgstr ""
-#. 25nRj
+#. ttSYS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id21585321398586\n"
"help.text"
-msgid "<emph>Create</emph> : Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
+msgid "<emph>Create</emph>: Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
msgstr ""
#. VDFAi
@@ -9259,13 +10870,13 @@ msgctxt ""
msgid "If <literal>False</literal> then new files are not created (default)."
msgstr ""
-#. WzDqZ
+#. BoVQQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id771585321576210\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. FuYwe
@@ -9286,13 +10897,13 @@ msgctxt ""
msgid "If the <literal>SAVE</literal> mode is set and the picked file exists, a warning message will be displayed."
msgstr ""
-#. gi6um
+#. PAaAH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481583670342502\n"
"help.text"
-msgid "<emph>DefaultFile</emph> : This argument is a string composed of a folder and file name:"
+msgid "<emph>DefaultFile</emph>: This argument is a string composed of a folder and file name:"
msgstr ""
#. fyVCs
@@ -9313,22 +10924,22 @@ msgctxt ""
msgid "The file part designates the default file to open or save."
msgstr ""
-#. CyhXn
+#. rcast
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id981583670342502\n"
"help.text"
-msgid "<emph>Mode</emph> : <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
+msgid "<emph>Mode</emph>: <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
msgstr ""
-#. Ym5VM
+#. Dtmio
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id31583670342502\n"
"help.text"
-msgid "<emph>Filter</emph> : The extension of the files displayed when the dialog is opened (default = no filter)."
+msgid "<emph>Filter</emph>: The extension of the files displayed when the dialog is opened (default = no filter)."
msgstr ""
#. 8WirR
@@ -9349,22 +10960,22 @@ msgctxt ""
msgid "Opens a dialog box to select a folder."
msgstr ""
-#. nQtNH
+#. coL3A
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id951583671701872\n"
"help.text"
-msgid "<emph>DefaultFolder</emph> : A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
+msgid "<emph>DefaultFolder</emph>: A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
msgstr ""
-#. hspKF
+#. esSGJ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821583671701764\n"
"help.text"
-msgid "<emph>FreeText</emph> : Text to display in the dialog (default = \"\")."
+msgid "<emph>FreeText</emph>: Text to display in the dialog (default = \"\")."
msgstr ""
#. GMYtx
@@ -9394,22 +11005,22 @@ msgctxt ""
msgid "The list may be filtered with wildcards."
msgstr ""
-#. vXLY5
+#. ApGN7
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id701584016761945\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. XSBWe
+#. zHooS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471585648674921\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
msgstr ""
#. WVhEh
@@ -9430,6 +11041,1005 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
msgstr ""
+#. VCRTD
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.L10N service"
+msgstr ""
+
+#. q7BSh
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id521585843652750\n"
+"help.text"
+msgid "<variable id=\"L10NService\"><link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N service\"><literal>ScriptForge</literal>.<literal>L10N</literal> service</link></variable>"
+msgstr ""
+
+#. FRAiJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652556\n"
+"help.text"
+msgid "This service provides a number of methods related to the translation of strings with minimal impact on the program's source code. The methods provided by the <literal>L10N</literal> service can be used mainly to:"
+msgstr ""
+
+#. gw2rW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id601614351922212\n"
+"help.text"
+msgid "Create POT files that can be used as templates for translation of all strings in the program."
+msgstr ""
+
+#. sbVQL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id131614352196513\n"
+"help.text"
+msgid "Get translated strings at runtime for the language defined in the <literal>Locale</literal> property."
+msgstr ""
+
+#. kCrgU
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id971614966420419\n"
+"help.text"
+msgid "The acronym <literal>L10N</literal> stands for Localization and refers to a set of procedures for translating software to a specific country or region."
+msgstr ""
+
+#. supr5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652438\n"
+"help.text"
+msgid "PO files have long been promoted in the free software community as a means to providing multilingual user interfaces. This is accomplished through the use of human-readable text files with a well defined structure that specifies, for any given language, the source language string and the localized string."
+msgstr ""
+
+#. j6xsd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652814\n"
+"help.text"
+msgid "The main advantage of the PO format is dissociation of the programmer and the translator. PO files are independent text files, so the programmer can send POT template files to translators, who will then translate their contents and return the translated PO files for each supported language."
+msgstr ""
+
+#. iBQxR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id811614352321187\n"
+"help.text"
+msgid "The <literal>L10N</literal> service is based on the GNU implementation of PO (portable object) files. To learn more about this file format, visit <link href=\"https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html\" name=\"GetText\">GNU gettext Utilities: PO Files</link>."
+msgstr ""
+
+#. 4CMir
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id91585843652832\n"
+"help.text"
+msgid "This service implements the three methods listed below:"
+msgstr ""
+
+#. fBXDW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1158584365237\n"
+"help.text"
+msgid "<emph>AddText</emph>: Used by the programmer to build a set of strings that will be translated later."
+msgstr ""
+
+#. cm7fq
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id681585843652331\n"
+"help.text"
+msgid "<emph>ExportToPOTFile</emph>: Exports the strings added by the <literal>AddText</literal> method to a POT file."
+msgstr ""
+
+#. Z7dU5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id531585843652697\n"
+"help.text"
+msgid "<emph>GetText</emph>: Gets the translated strings at runtime."
+msgstr ""
+
+#. D4Fyf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id361614361362393\n"
+"help.text"
+msgid "Note that the first two methods are used to build a set of translatable strings and export them to a POT file. However, it is not mandatory to create POT files using these methods. Since they are text files, the programmer could have created them using any text editor."
+msgstr ""
+
+#. Rn7FL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id351585843652312\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. nkcFt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614353247163\n"
+"help.text"
+msgid "To invoke the <literal>L10N</literal> service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below."
+msgstr ""
+
+#. u3ENa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652877\n"
+"help.text"
+msgid "<emph>FolderName</emph>: The folder containing the PO files. It must be expressed in the <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. 8PpqQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585843652789\n"
+"help.text"
+msgid "<emph>Locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
+msgstr ""
+
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
+#. 3YPqe
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891614358528334\n"
+"help.text"
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods."
+msgstr ""
+
+#. XUTWZ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id611614358672609\n"
+"help.text"
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings."
+msgstr ""
+
+#. RmYkJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id451614358683971\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\")"
+msgstr ""
+
+#. Ab7iH
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id321614358809763\n"
+"help.text"
+msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French."
+msgstr ""
+
+#. zEgWG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id661614358846464\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\", \"fr-BE\")"
+msgstr ""
+
+#. UGFWB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652496\n"
+"help.text"
+msgid "PO files must be named in the form \"la-CO.po\" or \"la.po\", where \"la\" refers to the language and \"CO\" is the country. Some examples are: \"en-US.po\", \"fr-BE.po\" or \"fr.po\"."
+msgstr ""
+
+#. zQhHX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id171585843652545\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. M9GLd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bm_id871614359551930\n"
+"help.text"
+msgid "<bookmark_value>L10N service;Folder</bookmark_value> <bookmark_value>L10N service;Languages</bookmark_value> <bookmark_value>L10N service;Locale</bookmark_value>"
+msgstr ""
+
+#. 6mcLb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id561585843652465\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. mJaFd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652958\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. FFbDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id741585843652162\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. X3tJK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652823\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 8ECBX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id351585843652638\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. j3wEj
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id451585843652928\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. uED9S
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id751585843652642\n"
+"help.text"
+msgid "The folder containing the PO files (see the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#bm_id901612991354326\" name=\"FileNaming property\"><literal>FileSystem.FileNaming</literal></link> property to learn about the notation used)."
+msgstr ""
+
+#. Zsp7p
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id96158584365279\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vdfiw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652912\n"
+"help.text"
+msgid "A zero-based array listing all the base names (without the \".po\" extension) of the PO-files found in the specified <literal>Folder</literal>."
+msgstr ""
+
+#. NWxhu
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961585843652589\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LSNA3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id561585843652947\n"
+"help.text"
+msgid "The currently active language-COUNTRY combination. This property will be initially empty if the service was instantiated without any of the optional arguments."
+msgstr ""
+
+#. 5cs7h
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the L10N Service"
+msgstr ""
+
+#. Q24j9
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1001585843652271\n"
+"help.text"
+msgid "Adds a new entry in the list of localizable strings. It must not exist yet."
+msgstr ""
+
+#. WPVrn
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id391585843652753\n"
+"help.text"
+msgid "<emph>Context</emph>: The key to retrieve the translated string with the <literal>GetText</literal> method. This parameter has a default value of \"\"."
+msgstr ""
+
+#. EC7wb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585844419114\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. The <literal>MsgId</literal> becomes the key to retrieve the translated string via <literal>GetText</literal> method when <literal>Context</literal> is empty."
+msgstr ""
+
+#. X3F7E
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id311614361926844\n"
+"help.text"
+msgid "The <literal>MsgId</literal> string may contain any number of placeholders (%1 %2 %3 ...) for dynamically modifying the string at runtime."
+msgstr ""
+
+#. 9Jgn8
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id541585844475331\n"
+"help.text"
+msgid "<emph>Comment</emph>: Optional comment to be added alongside the string to help translators."
+msgstr ""
+
+#. TAyPG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id461614364298440\n"
+"help.text"
+msgid "The example below creates a set of strings in English:"
+msgstr ""
+
+#. DqFBf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281586102707242\n"
+"help.text"
+msgid "Exports a set of untranslated strings as a POT file."
+msgstr ""
+
+#. zTKQ4
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id711586102939257\n"
+"help.text"
+msgid "To build a set of strings you can use either a succession of <literal>AddText</literal> method calls, or by a successful invocation of the <literal>L10N</literal> service with the <literal>FolderName</literal> argument present. It is also possible to use a combination of both techniques."
+msgstr ""
+
+#. WiqHy
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id31586102707537\n"
+"help.text"
+msgid "<emph>FileName</emph>: The output file in <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. BkEjG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id851586102707579\n"
+"help.text"
+msgid "<emph>Header</emph>: Comments that will be added on top of the generated POT file."
+msgstr ""
+
+#. qfPvB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id111614364686973\n"
+"help.text"
+msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the <literal>Header</literal> argument."
+msgstr ""
+
+#. rUUCt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id5158610270728\n"
+"help.text"
+msgid "<emph>Encoding</emph>: The character set to be used (Default = \"UTF-8\")."
+msgstr ""
+
+#. uDu7z
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581614364494235\n"
+"help.text"
+msgid "The generated file should successfully pass the <literal>msgfmt --check</literal> GNU command."
+msgstr ""
+
+#. wBAjb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891586165768715\n"
+"help.text"
+msgid "Gets the translated string corresponding to the given <literal>MsgId</literal> argument."
+msgstr ""
+
+#. NzGZC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291614365296959\n"
+"help.text"
+msgid "A list of arguments may be specified to replace the placeholders (%1, %2, ...) in the string."
+msgstr ""
+
+#. 9DBFa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231586166181909\n"
+"help.text"
+msgid "If no translated string is found, the method returns the untranslated string after replacing the placeholders with the specified arguments."
+msgstr ""
+
+#. bAcmJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id871586352505927\n"
+"help.text"
+msgid "This method can be called either by the full name <literal>GetText</literal> or by the shortcut <literal>_</literal> (a single underscore):"
+msgstr ""
+
+#. NzdBC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614967136502\n"
+"help.text"
+msgid "In the ScriptForge library, all methods starting with the \"_\" character are reserved for internal use only. However, the shortcut <literal>_</literal> used for <literal>GetText</literal> is the only exception to this rule, hence it can be safely used in Basic scripts."
+msgstr ""
+
+#. rNrAw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id51586165768525\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime."
+msgstr ""
+
+#. Fummg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id11614365537450\n"
+"help.text"
+msgid "Besides using a single <literal>MsgId</literal> string, this method also accepts the following formats:"
+msgstr ""
+
+#. fD2Bg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961614365557277\n"
+"help.text"
+msgid "The <literal>Context</literal> string with which the method will retrieve the <literal>MsgId</literal> in the PO file, or;"
+msgstr ""
+
+#. v6nVR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id981614365589866\n"
+"help.text"
+msgid "A combination <literal>Context|MsgId</literal>, instructing the method to retrieve the <literal>MsgId</literal> using specified <literal>Context</literal> value. The second part of the argument is used to improve code readability."
+msgstr ""
+
+#. 5zB4f
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id571586165768106\n"
+"help.text"
+msgid "<emph>Arg1, ...</emph>: Values to be inserted into the placeholders. Any variable type is allowed, however only strings, numbers and dates will be considered."
+msgstr ""
+
+#. cCZDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id701614365961454\n"
+"help.text"
+msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the <literal>GetText</literal> method:"
+msgstr ""
+
+#. Kz4S7
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id171614366110835\n"
+"help.text"
+msgid "myPO = CreateScriptService(\"L10N\", \"c:\\MyPOFolder\\\")"
+msgstr ""
+
+#. EcBzr
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id1001586166834936\n"
+"help.text"
+msgid "' \"¡Bienvenido John! Espero que disfrutes de este programa\""
+msgstr ""
+
+#. H4aXx
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/guide/translation.xhp\" name=\"Controls Translation\"> Translation of Controls in the Dialog Editor</link>"
+msgstr ""
+
+#. Ah5Gj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Platform service"
+msgstr ""
+
+#. PCkEG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"PlatformService\"><link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"Platform service\"><literal>ScriptForge</literal>.<literal>Platform</literal> service</link></variable>"
+msgstr ""
+
+#. 7D6Dx
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Platform</literal> service provides a collection of properties about the current execution environment and context, such as:"
+msgstr ""
+
+#. FDJFB
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "The hardware platform (architecture, CPU count, machine type, etc)"
+msgstr ""
+
+#. i9FbJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Operating system information (OS type, release, version, etc)"
+msgstr ""
+
+#. uPLtj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "The LibreOffice version"
+msgstr ""
+
+#. BrEr7
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id671600788076855\n"
+"help.text"
+msgid "The current user name"
+msgstr ""
+
+#. ZvBqs
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id951614903258253\n"
+"help.text"
+msgid "All properties of the <literal>Platform</literal> service are read-only."
+msgstr ""
+
+#. iK4Gv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. Emisv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The code snippet below instantiates the <literal>Platform</literal> service and accesses the <literal>Architecture</literal> property."
+msgstr ""
+
+#. KC5eN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VXJ8a
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. JN68D
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. ZndAt
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. dAoKA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. XdLGG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. EEWuL
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "The hardware bit architecture. Example: '<literal>32bit</literal>' or '<literal>64bit</literal>'"
+msgstr ""
+
+#. 8EZ8A
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iG4iH
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "The computer's network name."
+msgstr ""
+
+#. hvAeY
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. g5EUJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "The number of central processor units."
+msgstr ""
+
+#. 89Lo8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rmGRV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "The name of the currently logged user."
+msgstr ""
+
+#. Dt7J5
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id391600788076253\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LA6EN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076541\n"
+"help.text"
+msgid "The machine type. Examples are: '<literal>i386</literal>' or '<literal>x86_64</literal>'."
+msgstr ""
+
+#. tqwyD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id211600788076138\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9uRw8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id521600788076371\n"
+"help.text"
+msgid "The actual LibreOffice version expressed as<br/>'<literal>LibreOffice w.x.y.z (The Document Foundation)</literal>'."
+msgstr ""
+
+#. 4bpcJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id621614902220807\n"
+"help.text"
+msgid "Example: '<literal>LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
+msgstr ""
+
+#. 7WDer
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076758\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NUSby
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id781600788076694\n"
+"help.text"
+msgid "The operating system type. Example: '<literal>Darwin</literal>, <literal>Linux</literal>' or '<literal>Windows</literal>'."
+msgstr ""
+
+#. cLiaw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id261600788076841\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. nepQ6
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id11600788076757\n"
+"help.text"
+msgid "A single string identifying the underlying platform with as much useful and human-readable information as possible."
+msgstr ""
+
+#. EH36m
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id501614902381381\n"
+"help.text"
+msgid "Example: '<literal>Linux-5.8.0-44-generic-x86_64-with-glibc2.32</literal>'"
+msgstr ""
+
+#. hbyth
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id531600789141795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4iEvV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600789141619\n"
+"help.text"
+msgid "The operating system's release. Example: '<literal>5.8.0-44-generic</literal>'"
+msgstr ""
+
+#. 2fBtD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600789286532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iukPq
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id701600789286280\n"
+"help.text"
+msgid "The operating system's build or version."
+msgstr ""
+
+#. DWQNA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id351614902520555\n"
+"help.text"
+msgid "Example: '<literal>#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021</literal>'"
+msgstr ""
+
+#. fCdYi
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id941600789527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wkthE
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id631600789527859\n"
+"help.text"
+msgid "The real processor name. Example: '<literal>amdk6</literal>'."
+msgstr ""
+
+#. MYY9M
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id111614902598396\n"
+"help.text"
+msgid "This property may return the same value as the <literal>Machine</literal> property."
+msgstr ""
+
+#. 4pnPw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/python/python_platform.xhp\" name=\"OS python\">Identifying the operating system</link>"
+msgstr ""
+
+#. UCfLb
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613065794148\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Platform information with Calc INFO formula\">Platform information with INFO(\"system\") Calc formula</link>"
+msgstr ""
+
+#. PqDHG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id103613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType function</link>"
+msgstr ""
+
+#. DAfoV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301316075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools library</link>"
+msgstr ""
+
#. GpvmN
#: sf_services.xhp
msgctxt ""
@@ -11392,13 +14002,13 @@ msgctxt ""
msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
msgstr ""
-#. WSwjJ
+#. TFfR3
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id151611951803163\n"
"help.text"
-msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution."
+msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as <literal>Capitalize</literal>, <literal>Escape</literal>, etc return a new string after their execution."
msgstr ""
#. jaBZR
@@ -12652,13 +15262,13 @@ msgctxt ""
msgid "If <literal>OldStr</literal> and <literal>NewStr</literal> are arrays, replacements occur one by one up to the <literal>UBound(NewStr)</literal>."
msgstr ""
-#. HDGCx
+#. qUhcr
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id241612385058264\n"
"help.text"
-msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, than the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
+msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, then the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
msgstr ""
#. oTqRh
@@ -13129,6 +15739,564 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String function\">String built-in function</link>"
msgstr ""
+#. HjZDB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.TextStream service"
+msgstr ""
+
+#. cEA5U
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id351585330787295\n"
+"help.text"
+msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
+msgstr ""
+
+#. nBJsE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id511585330787205\n"
+"help.text"
+msgid "The <literal>TextStream</literal> service is used to sequentially read from and write to files opened or created using the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. TeRTa
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id41613596903894\n"
+"help.text"
+msgid "The methods <literal>OpenTextFile</literal> and <literal>CreateTextFile</literal> from the <literal>FileSystem</literal> service return an instance of the <literal>TextStream</literal> service."
+msgstr ""
+
+#. MVFWC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id161585330787262\n"
+"help.text"
+msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system."
+msgstr ""
+
+#. GDkir
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id831613598137669\n"
+"help.text"
+msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the <literal>SF_String.sfNEWLINE</literal> property."
+msgstr ""
+
+#. SvXzF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id851613597445432\n"
+"help.text"
+msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run."
+msgstr ""
+
+#. U6RHd
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id83158533078741\n"
+"help.text"
+msgid "Service instantiation"
+msgstr ""
+
+#. c7WYC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id351613598192725\n"
+"help.text"
+msgid "The code snippet below uses the <literal>OpenTextFile</literal> method to create an instance of the <literal>TextStream</literal> Service."
+msgstr ""
+
+#. UUudg
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id371585330787197\n"
+"help.text"
+msgid "The file must be closed with the <literal>CloseFile</literal> method after all read or write operations have been executed:"
+msgstr ""
+
+#. uCC2B
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id91613599192241\n"
+"help.text"
+msgid "myFile.CloseFile()"
+msgstr ""
+
+#. zNveN
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891582733781994\n"
+"help.text"
+msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
+msgstr ""
+
+#. LnYGk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id761613599333614\n"
+"help.text"
+msgid "Set myFile = myFile.Dispose()"
+msgstr ""
+
+#. nsGCZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id121612917368946\n"
+"help.text"
+msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
+msgstr ""
+
+#. JAmgD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id941585330787948\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. aZttT
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id1001613600572485\n"
+"help.text"
+msgid "<bookmark_value>TextStream service;AtEndOfStream</bookmark_value> <bookmark_value>TextStream service;Encoding</bookmark_value> <bookmark_value>TextStream service;FileName</bookmark_value> <bookmark_value>TextStream service;IOMode</bookmark_value> <bookmark_value>TextStream service;Line</bookmark_value> <bookmark_value>TextStream service;NewLine</bookmark_value>"
+msgstr ""
+
+#. aN9zM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id631585330787267\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. vwGC5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id401585330787370\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. GpL38
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id581585330787700\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 6FDuM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id551585330787608\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. ECkTm
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id181585330787752\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. YFkaY
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id901585330787680\n"
+"help.text"
+msgid "Used in read mode. A <literal>True</literal> value indicates that the end of the file has been reached. A test using this property should precede calls to the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. EFEnA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787568\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. cVCoJ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id741585330787777\n"
+"help.text"
+msgid "The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. p5s3X
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id641585330787207\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JjEqX
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id281585330787614\n"
+"help.text"
+msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. goEnw
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id111585330787410\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. MZS6Z
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id861585330787417\n"
+"help.text"
+msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"."
+msgstr ""
+
+#. 7nTb9
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id87158533078795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. j45gC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787741\n"
+"help.text"
+msgid "Returns the number of lines read or written so far."
+msgstr ""
+
+#. CLAvQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id531585330787157\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. rdA5M
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id691585330787279\n"
+"help.text"
+msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
+msgstr ""
+
+#. dCeHZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. hKJkD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the TextStream Service"
+msgstr ""
+
+#. DBBKM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421585330787675\n"
+"help.text"
+msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns <literal>True</literal> if the file was successfully closed."
+msgstr ""
+
+#. MCW3q
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id65158533078799\n"
+"help.text"
+msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed."
+msgstr ""
+
+#. Vr34D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id71613600347125\n"
+"help.text"
+msgid "The resulting string can be split in lines either by using the <literal>Split</literal> built-in Basic function if the line delimiter is known, or with the <literal>SF_String.SplitLines</literal> method."
+msgstr ""
+
+#. VRLGn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id91585330787373\n"
+"help.text"
+msgid "For large files, using the <literal>ReadAll</literal> method wastes memory resources. In such cases it is recommended to read the file line by line using the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. BuBVA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id921613595637851\n"
+"help.text"
+msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):"
+msgstr ""
+
+#. dUSey
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id391613596019750\n"
+"help.text"
+msgid "The example below uses the <literal>ReadAll</literal> and <literal>SplitLines</literal> methods to read the contents of the file into an array of strings:"
+msgstr ""
+
+#. BuRJE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id251613595640550\n"
+"help.text"
+msgid "'Loads the FileSystem service"
+msgstr ""
+
+#. L2a3D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id181613595641087\n"
+"help.text"
+msgid "'Opens the text file with the names to be read"
+msgstr ""
+
+#. fArny
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id651613595641754\n"
+"help.text"
+msgid "Set inputFile = FSO.OpenTextFile(\"~/Documents/Students.txt\")"
+msgstr ""
+
+#. 9sFB5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id81613595642474\n"
+"help.text"
+msgid "Dim allData as String"
+msgstr ""
+
+#. a9b3r
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613595642766\n"
+"help.text"
+msgid "allData = inputFile.ReadAll()"
+msgstr ""
+
+#. 7Fq9E
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id871585330787885\n"
+"help.text"
+msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string."
+msgstr ""
+
+#. 6iDcF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id431613600221626\n"
+"help.text"
+msgid "The <literal>AtEndOfStream</literal> test should precede the <literal>ReadLine</literal> method like in the example below."
+msgstr ""
+
+#. GRRkq
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id171585330787774\n"
+"help.text"
+msgid "An error will be raised if the <literal>AtEndOfStream</literal> was reached during the previous <literal>ReadLine</literal> or <literal>SkipLine</literal> method call."
+msgstr ""
+
+#. mAty4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id11585330787847\n"
+"help.text"
+msgid "Skips the next line in the input stream when reading a <literal>TextStream</literal> file."
+msgstr ""
+
+#. FDMJB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id441613600704766\n"
+"help.text"
+msgid "This method can result in <literal>AtEndOfStream</literal> being set to <literal>True</literal>."
+msgstr ""
+
+#. D4JVb
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141585330787657\n"
+"help.text"
+msgid "Writes a specified number of empty lines to the output stream."
+msgstr ""
+
+#. NqNwE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id291585330787357\n"
+"help.text"
+msgid "<emph>Lines</emph>: The number of empty lines to write."
+msgstr ""
+
+#. GCPCC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id101585330787215\n"
+"help.text"
+msgid "Writes the given string to the output stream as a single line."
+msgstr ""
+
+#. Eska7
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421613601002074\n"
+"help.text"
+msgid "The character defined in the <literal>NewLine</literal> property is used as the line delimiter."
+msgstr ""
+
+#. YRTuQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id491585330787650\n"
+"help.text"
+msgid "<emph>Line</emph>: The line to write, may be empty."
+msgstr ""
+
+#. 39u4o
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id21613321528612\n"
+"help.text"
+msgid "'Instantiates the FileSystem Service"
+msgstr ""
+
+#. FnTiG
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613321529277\n"
+"help.text"
+msgid "'Creates a text file"
+msgstr ""
+
+#. f5RSB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id641613321530181\n"
+"help.text"
+msgid "'Writes the Value and Value squared, separated by \";\""
+msgstr ""
+
+#. FCowk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id141613321530960\n"
+"help.text"
+msgid "myFile.WriteLine(\"Value;Value Squared\")"
+msgstr ""
+
+#. m9Mo4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id881613321532598\n"
+"help.text"
+msgid "'Closes the file and free resources"
+msgstr ""
+
+#. nrDCn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input function\">Input Function</link>"
+msgstr ""
+
+#. FnNRc
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id271612398715438\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
+msgstr ""
+
#. PCSPY
#: sf_timer.xhp
msgctxt ""
@@ -13435,15 +16603,6 @@ msgctxt ""
msgid "Returned value"
msgstr ""
-#. S6Gay
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id31582734180676\n"
-"help.text"
-msgid "Continue"
-msgstr ""
-
#. C2QQ4
#: sf_timer.xhp
msgctxt ""
@@ -13462,15 +16621,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not suspended"
msgstr ""
-#. ASHCm
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id881582734649304\n"
-"help.text"
-msgid "Restart"
-msgstr ""
-
#. nkUs3
#: sf_timer.xhp
msgctxt ""
@@ -13489,15 +16639,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is inactive"
msgstr ""
-#. 7VHEX
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id201582734802443\n"
-"help.text"
-msgid "Start"
-msgstr ""
-
#. AkgAy
#: sf_timer.xhp
msgctxt ""
@@ -13516,15 +16657,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is already started"
msgstr ""
-#. QdjDi
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id781582734905507\n"
-"help.text"
-msgid "Suspend"
-msgstr ""
-
#. D7CoH
#: sf_timer.xhp
msgctxt ""
@@ -13543,15 +16675,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not started or already suspended"
msgstr ""
-#. BUjcE
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id771582734996722\n"
-"help.text"
-msgid "Terminate"
-msgstr ""
-
#. sgXra
#: sf_timer.xhp
msgctxt ""
@@ -13579,6 +16702,33 @@ msgctxt ""
msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
msgstr ""
+#. UgBnC
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id141582735926821\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as suspended time"
+msgstr ""
+
+#. 4jHcj
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id901582735961725\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as running time"
+msgstr ""
+
+#. 7QhZU
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id941610739926687\n"
+"help.text"
+msgid "'Shows the final time measurements"
+msgstr ""
+
#. J6XGB
#: sf_timer.xhp
msgctxt ""
@@ -13615,6 +16765,33 @@ msgctxt ""
msgid "The following example illustrates how to create two <literal>Timer</literal> objects and start them separately."
msgstr ""
+#. PtA4E
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id481610989853679\n"
+"help.text"
+msgid "'Starts myTimerA"
+msgstr ""
+
+#. VUdGW
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id331610989849501\n"
+"help.text"
+msgid "'Starts myTimerB"
+msgstr ""
+
+#. t98Fv
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id931610989837747\n"
+"help.text"
+msgid "'Terminate both timers"
+msgstr ""
+
#. CpzL5
#: sf_timer.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/scalc/00.po b/source/ar/helpcontent2/source/text/scalc/00.po
index 7f6f81fbcde..09cef7272ac 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: 2021-02-05 18:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+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"
@@ -1177,13 +1177,13 @@ msgctxt ""
msgid "Window Menu"
msgstr ""
-#. dH2aq
+#. ry53A
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "<variable id=\"fete\">Choose ><menuitem>View - Split Window</menuitem>.</variable>"
+msgid "<variable id=\"fete\">Choose <menuitem>View - Split Window</menuitem>.</variable>"
msgstr ""
#. dr9Aq
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index 5cb0809f5f1..f11dd08db5b 100644
--- a/source/ar/helpcontent2/source/text/scalc/01.po
+++ b/source/ar/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ar/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028540.000000\n"
#. sZfWF
@@ -1033,13 +1033,13 @@ msgctxt ""
msgid "<emph>Filling cells using context menus:</emph>"
msgstr ""
-#. hRJz3
+#. 2j5RS
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
msgstr ""
#. BzAsX
@@ -19492,67 +19492,76 @@ msgctxt ""
msgid "The number 0 is returned for empty cells and matrix elements."
msgstr ""
-#. Eg4Cg
+#. frvbX
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11827\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgid "<input>=HYPERLINK(\"http://www.example.org\")</input> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
msgstr ""
-#. GThdD
+#. wHG7A
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182A\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgid "<input>=HYPERLINK(\"http://www.example.org\";\"Click here\")</input> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
msgstr ""
-#. nBEGH
+#. jamR2
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id0907200912224534\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";12345)</item> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgid "<input>=HYPERLINK(\"http://www.example.org\";12345)</input> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
msgstr ""
-#. GFCwJ
+#. qLdBN
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182D\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgid "<input>=HYPERLINK($B4)</input> where cell B4 contains <literal>http://www.example.org</literal>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
msgstr ""
-#. viZae
+#. cWDrv
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11830\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgid "<input>=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</input> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
msgstr ""
-#. bdxGj
+#. DDEtK
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id8859523\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgid "<input>=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</input> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
msgstr ""
-#. kFDkB
+#. CoMEq
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id2958769\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
+msgid "<input>=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</input> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr ""
+
+#. Ky2xV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id321615667588042\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"file:///C:/Documents/\";\"Open Documents folder\")</input> displays the text \"Open Documents folder\" and shows the folder contents using the standard file manager in your operating system."
msgstr ""
#. ubKsF
@@ -45718,13 +45727,13 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
msgstr ""
-#. xvaTV
+#. YBufY
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_idN109D1\n"
"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgid "In the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
msgstr ""
#. zdEoY
@@ -63259,22 +63268,22 @@ msgctxt ""
msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
msgstr ""
-#. 4Zi8d
+#. QaJCw
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556229012536\n"
"help.text"
-msgid "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
+msgid "<input>=TEXTJOIN(\" \"; 1; \"Here\"; \"comes\"; \"the\"; \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
msgstr ""
-#. SamHC
+#. 39FPP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556239012536\n"
"help.text"
-msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
+msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\";1;A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
msgstr ""
#. AXCJg
diff --git a/source/ar/helpcontent2/source/text/scalc/02.po b/source/ar/helpcontent2/source/text/scalc/02.po
index 8691c7632f8..dcb39c2b4ca 100644
--- a/source/ar/helpcontent2/source/text/scalc/02.po
+++ b/source/ar/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: 2021-02-18 20:36+0000\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc02/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542196249.000000\n"
#. aSE5T
@@ -32,7 +32,7 @@ msgctxt ""
"hd_id3152892\n"
"help.text"
msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">نسَق الأرقام: عملة</link>"
#. mDBPb
#: 02130000.xhp
@@ -131,7 +131,7 @@ msgctxt ""
"par_id3149260\n"
"help.text"
msgid "You can also enter a percentage sign (%) after a number in a cell:"
-msgstr "يمكنك أيضا إدخال نسبة مئوية (%) بعد الرقم في خلية:"
+msgstr "يمكنك أيضًا إدخال علامة نسبة مئوية (٪) بعد رقم في الخلية:"
#. LKtGp
#: 02140000.xhp
diff --git a/source/ar/helpcontent2/source/text/scalc/guide.po b/source/ar/helpcontent2/source/text/scalc/guide.po
index a02a26e1f21..033c9f8eeb9 100644
--- a/source/ar/helpcontent2/source/text/scalc/guide.po
+++ b/source/ar/helpcontent2/source/text/scalc/guide.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-17 15:58+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"
+"PO-Revision-Date: 2021-03-08 14:24+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542196249.000000\n"
#. NXy6S
@@ -4730,7 +4730,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "إذا حذفت جدولا محوريا مربوطا إلى رسم بياني محوري، فالرسم البياني المحوري يُحذف أيضا. يُفتح مربع حوار لتأكيد حذف الرسم البياني المحوري."
#. 9Ft4E
#: datapilot_edittable.xhp
@@ -9329,7 +9329,7 @@ msgctxt ""
"par_id291525139878423\n"
"help.text"
msgid "A pivot chart is a chart with data range and data series of a <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">pivot table</link>."
-msgstr ""
+msgstr "الرسم البياني المحوري هو رسم بياني فيه مدى بيانات وسلسلة بيانات لـ <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">جدول محوري</link>."
#. VMZRC
#: pivotchart.xhp
@@ -9356,7 +9356,7 @@ msgctxt ""
"par_id191525177790601\n"
"help.text"
msgid "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Technical details on %PRODUCTNAME pivot chart implementation</link>."
-msgstr ""
+msgstr "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">تفاصيل فنية عن تنفيذ الرسم البياني المحوري لـ %PRODUCTNAME</link>."
#. D4FkY
#: pivotchart_create.xhp
@@ -9365,7 +9365,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Pivot Charts"
-msgstr ""
+msgstr "إنشاء الرسوم البيانية المحورية"
#. ycEFe
#: pivotchart_create.xhp
@@ -9383,7 +9383,7 @@ msgctxt ""
"hd_id441525141699185\n"
"help.text"
msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Creating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">إنشاء الرسوم البيانية المحورية</link></variable>"
#. UuRST
#: pivotchart_create.xhp
@@ -9392,7 +9392,7 @@ msgctxt ""
"par_id481525142550652\n"
"help.text"
msgid "To create a pivot chart proceed as below:"
-msgstr ""
+msgstr "لإنشاء رسم بياني محوري استمر كما يلي:"
#. EYcoc
#: pivotchart_create.xhp
@@ -9419,7 +9419,7 @@ msgctxt ""
"par_id151525140367370\n"
"help.text"
msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard."
-msgstr ""
+msgstr "كالك %PRODUCTNAME يكشف تلقائيا الجدول المحوري ويفتح مساعد الرسم البياني المحوري."
#. q3cHS
#: pivotchart_create.xhp
@@ -9446,7 +9446,7 @@ msgctxt ""
"par_id511525140411625\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Chart Elements</link> of the pivot chart in the wizard."
-msgstr ""
+msgstr "حدد <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">عناصر الرسم البياني</link> للرسم البياني المحوري في المساعد."
#. DiBBF
#: pivotchart_create.xhp
@@ -9455,7 +9455,7 @@ msgctxt ""
"par_id1001525165156188\n"
"help.text"
msgid "Click <emph>OK</emph> to close the wizard and create the pivot chart."
-msgstr ""
+msgstr "Cانقر <emph>حسنا</emph> لتغلق المساعد وتنشيء الرسم البياني المحوري."
#. gQpGG
#: pivotchart_delete.xhp
@@ -9464,7 +9464,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Deleting Pivot Charts"
-msgstr ""
+msgstr "حذف الرسوم البيانية المحورية"
#. BEj4o
#: pivotchart_delete.xhp
@@ -9473,7 +9473,7 @@ msgctxt ""
"hd_id231525147891984\n"
"help.text"
msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Deleting a Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">حذف رسم بياني محوري</link></variable>"
#. GRQDA
#: pivotchart_delete.xhp
diff --git a/source/ar/helpcontent2/source/text/schart/04.po b/source/ar/helpcontent2/source/text/schart/04.po
index 8144df2d8af..dffeb321bf2 100644
--- a/source/ar/helpcontent2/source/text/schart/04.po
+++ b/source/ar/helpcontent2/source/text/schart/04.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
-"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"Last-Translator: kimy <kimy747@zohomail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textschart04/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1494344900.000000\n"
#. XTsp4
@@ -32,7 +32,7 @@ msgctxt ""
"bm_id3150767\n"
"help.text"
msgid "<bookmark_value>shortcut keys; charts</bookmark_value><bookmark_value>charts; shortcuts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>مفاتيح اختصار؛ رسوم بيانية</bookmark_value><bookmark_value>رسوم بيانية؛ اختصارات</bookmark_value>"
#. pm6fm
#: 01020000.xhp
@@ -50,7 +50,7 @@ msgctxt ""
"par_id3155412\n"
"help.text"
msgid "You can use the following shortcut keys in charts."
-msgstr ""
+msgstr "يمكنك استخدام مفاتيح الاختصار التالية في الرسوم البيانية."
#. eMdUn
#: 01020000.xhp
@@ -59,7 +59,7 @@ msgctxt ""
"par_id3159154\n"
"help.text"
msgid "You can also use the general <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">shortcut keys</link> for $[officename]."
-msgstr ""
+msgstr "يمكنك أيضا استخدام <link href=\"text/shared/04/01010000.xhp\" name=\"shortcut keys\">مفاتيح الاختصار</link> العامة لـ $[officename]."
#. CEzNG
#: 01020000.xhp
@@ -68,7 +68,7 @@ msgctxt ""
"hd_id3149262\n"
"help.text"
msgid "Shortcuts in Charts"
-msgstr ""
+msgstr "مفاتيح الاختصار في الرسوم البيانية"
#. ccGDZ
#: 01020000.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "Results"
-msgstr ""
+msgstr "النتائج"
#. P4mrP
#: 01020000.xhp
@@ -104,7 +104,7 @@ msgctxt ""
"par_id3154511\n"
"help.text"
msgid "Select next object."
-msgstr ""
+msgstr "حدد الكائن التالي."
#. NthQb
#: 01020000.xhp
@@ -122,7 +122,7 @@ msgctxt ""
"par_id3149020\n"
"help.text"
msgid "Select previous object."
-msgstr ""
+msgstr "حدد الكائن السابق"
#. FDGRH
#: 01020000.xhp
@@ -131,7 +131,7 @@ msgctxt ""
"hd_id3155443\n"
"help.text"
msgid "Home"
-msgstr ""
+msgstr "الرئيسية"
#. 7rgPg
#: 01020000.xhp
@@ -140,7 +140,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "Select first object."
-msgstr ""
+msgstr "حدد الكائن الأول."
#. EU3aF
#: 01020000.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"hd_id3153963\n"
"help.text"
msgid "End"
-msgstr ""
+msgstr "النهاية"
#. KLQvG
#: 01020000.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Select last object."
-msgstr ""
+msgstr "حدد الكائن الأخير."
#. DvTKF
#: 01020000.xhp
@@ -167,7 +167,7 @@ msgctxt ""
"hd_id3143218\n"
"help.text"
msgid "Esc"
-msgstr ""
+msgstr "مفتاح الهروب"
#. PnsxX
#: 01020000.xhp
@@ -176,7 +176,7 @@ msgctxt ""
"par_id3147005\n"
"help.text"
msgid "Cancel selection"
-msgstr ""
+msgstr "ألغِ التحديد"
#. dGzRa
#: 01020000.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"hd_id3159239\n"
"help.text"
msgid "up/down/left/right arrow"
-msgstr ""
+msgstr "سهم أعلى/أسفل/يسار/يمين"
#. UNQwC
#: 01020000.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "Move the object in the direction of the arrow."
-msgstr ""
+msgstr "انقل الكائن باتجاه السهم."
#. pD6CR
#: 01020000.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"hd_id3150364\n"
"help.text"
msgid "up/down/left/right arrow in pie charts"
-msgstr ""
+msgstr "سهم أعلى/أسفل/يسار/يمين في الرسوم البيانية الشطائر"
#. d2pzL
#: 01020000.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"par_id3150369\n"
"help.text"
msgid "Moves the selected pie segment in the direction of the arrow."
-msgstr ""
+msgstr "ينقل قطاع الشطيرة المحدد باتجاه السهم."
#. HjQaS
#: 01020000.xhp
diff --git a/source/ar/helpcontent2/source/text/sdatabase.po b/source/ar/helpcontent2/source/text/sdatabase.po
index 90559e0c81f..06961dfeaf6 100644
--- a/source/ar/helpcontent2/source/text/sdatabase.po
+++ b/source/ar/helpcontent2/source/text/sdatabase.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
#. ugSgG
#: 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>الاستعلامات;نظرة عامة (بَيز)</bookmark_value><bookmark_value>جداول في قواعد بيانات; الطباعة الاستعلامات (بَيز)</bookmark_value><bookmark_value>الطباعة; الاستعلامات (بَيز)</bookmark_value><bookmark_value>الاستعلامات; الطباعة (بَيز)</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=\"Queries\">الاستعلامات</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 "\"الاستعلام\" هو طريقة مشاهَدة خاصة للجدول. يمكن أن يَعرض الاستعلام سجلات مختارة أو حقولا مختارة ضمن سجلات؛ ويمكنه أيضا ترتيب هذه السجلات. يمكن أن يطبّق الاستعلام على جدول واحد أو جداول متعددة، إذا كانت مربوطة بحقول بيانات مشتركة."
#. 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 "استخدم الاستعلامات لتجد سجلات من جداول بيانات استنادا الى معايير معيَّنة. كل الاستعلامات المُنشأة لإحدى قواعد البيانات تُعرَض تحت مُدخَل <emph>الاستعلامات</emph>. بما أنّ هذا المُدخَل يحوي استعلامات قاعدة البيانات، فإنّه يُدعى أيضا \"حاوية الاستعلامات\"."
#. AuJW3
#: 02000000.xhp
@@ -76,7 +76,7 @@ msgctxt ""
"par_id3149183\n"
"help.text"
msgid "To print a query or table:"
-msgstr ""
+msgstr "لطباعة استعلام أو جدول:"
#. zDMbu
#: 02000000.xhp
@@ -3039,13 +3039,13 @@ msgctxt ""
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sort and Filter Data\">Sort and Filter Data</link>"
msgstr ""
-#. ZEwwQ
+#. hNfEL
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3154288\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
msgstr ""
#. fAyEi
@@ -3795,6 +3795,465 @@ msgctxt ""
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/close\">Closes the dialog.</ahelp>"
msgstr ""
+#. n4gFz
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. sQwNc
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153323\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Relations</link>"
+msgstr ""
+
+#. GxBiD
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3146957\n"
+"help.text"
+msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
+msgstr ""
+
+#. YYXkm
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
+msgstr ""
+
+#. vMuED
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3154823\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
+msgstr ""
+
+#. zHWMJ
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3145316\n"
+"help.text"
+msgid "This function is only available if you are working with a relational database."
+msgstr ""
+
+#. 5MXvo
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
+msgstr ""
+
+#. krxTw
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3152812\n"
+"help.text"
+msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
+msgstr ""
+
+#. zZFEP
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
+msgstr ""
+
+#. uJVYH
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3148922\n"
+"help.text"
+msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
+msgstr ""
+
+#. ek2aE
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3148922\n"
+"help.text"
+msgid "Primary key and foreign keys"
+msgstr ""
+
+#. ksuDX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149168\n"
+"help.text"
+msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
+msgstr ""
+
+#. FACvb
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3147085\n"
+"help.text"
+msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
+msgstr ""
+
+#. vro8F
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153193\n"
+"help.text"
+msgid "Define relations"
+msgstr ""
+
+#. wmwWU
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3155430\n"
+"help.text"
+msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
+msgstr ""
+
+#. pGNLA
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155430\n"
+"help.text"
+msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
+msgstr ""
+
+#. EF2rg
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149984\n"
+"help.text"
+msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
+msgstr ""
+
+#. yTadX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3153093\n"
+"help.text"
+msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
+msgstr ""
+
+#. bnCjW
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155856\n"
+"help.text"
+msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
+msgstr ""
+
+#. zaiku
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. BAAZE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
+msgstr ""
+
+#. tDgC3
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. 5fAEp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3150499\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
+msgstr ""
+
+#. yHc9N
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155136\n"
+"help.text"
+msgid "The update and delete options are only available if they are supported by the database used."
+msgstr ""
+
+#. BDC5P
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3155341\n"
+"help.text"
+msgid "Tables"
+msgstr ""
+
+#. BAGsd
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153880\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
+msgstr ""
+
+#. 4UCC7
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154047\n"
+"help.text"
+msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
+msgstr ""
+
+#. VBeNf
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3153822\n"
+"help.text"
+msgid "Key fields"
+msgstr ""
+
+#. CnkB6
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
+msgstr ""
+
+#. tG7Wy
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
+msgstr ""
+
+#. ECqps
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145609\n"
+"help.text"
+msgid "Update options"
+msgstr ""
+
+#. TcZQE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "Here you can select options that take effect when there are changes to a primary key field."
+msgstr ""
+
+#. SNgAC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3149046\n"
+"help.text"
+msgid "No action"
+msgstr ""
+
+#. BQgh9
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3152360\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
+msgstr ""
+
+#. UzK5q
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "Updating cascade"
+msgstr ""
+
+#. GFtru
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154073\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
+msgstr ""
+
+#. xydLE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145171\n"
+"help.text"
+msgid "Set null"
+msgstr ""
+
+#. ksYnw
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
+msgstr ""
+
+#. FGxMC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "Set default"
+msgstr ""
+
+#. T7dEQ
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
+msgstr ""
+
+#. AvWBL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Delete options"
+msgstr ""
+
+#. ayyns
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "Here you can select options that take effect when a primary key field is deleted."
+msgstr ""
+
+#. jTCSL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3159252\n"
+"help.text"
+msgid "No action"
+msgstr ""
+
+#. PgDqt
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
+msgstr ""
+
+#. hFmB4
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3154146\n"
+"help.text"
+msgid "Delete cascade"
+msgstr ""
+
+#. ESpAp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155309\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
+msgstr ""
+
+#. ZaNTh
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153140\n"
+"help.text"
+msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
+msgstr ""
+
+#. mAu9C
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "Set null"
+msgstr ""
+
+#. dAtCx
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
+msgstr ""
+
+#. 474LG
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145272\n"
+"help.text"
+msgid "Set Default"
+msgstr ""
+
+#. ktJ6K
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154320\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
+msgstr ""
+
#. cLmBi
#: main.xhp
msgctxt ""
@@ -3928,7 +4387,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Toolbars"
-msgstr ""
+msgstr "أشرطة الأدوات"
#. Tzgdb
#: toolbars.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index bb3d1e1ca7c..7d8f07ea1be 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-22 13:58+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ar/>\n"
"Language: ar\n"
@@ -140,7 +140,7 @@ msgctxt ""
"hd_id3154232\n"
"help.text"
msgid "Convert"
-msgstr ""
+msgstr "حوّل"
#. Va6PD
#: 00000001.xhp
@@ -601,13 +601,13 @@ msgctxt ""
msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value.</variable>"
msgstr ""
-#. oSC8p
+#. ECspB
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3154145\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>).</variable>"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>).</variable>"
msgstr ""
#. JFGU9
@@ -2122,15 +2122,6 @@ msgctxt ""
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 ""
-#. AP8vJ
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_idN108F1\n"
-"help.text"
-msgid "Context Menu"
-msgstr ""
-
#. hfzNy
#: 00000005.xhp
msgctxt ""
@@ -7936,6 +7927,15 @@ msgctxt ""
msgid "Image"
msgstr ""
+#. 8ceGP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id671614345792991\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Frame - Floating Frame</menuitem>"
+msgstr ""
+
#. yAVgx
#: 00000404.xhp
msgctxt ""
@@ -7954,13 +7954,13 @@ msgctxt ""
msgid "On the <emph>Insert</emph> bar, click"
msgstr ""
-#. 5CBGw
+#. SEYKo
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3168607\n"
"help.text"
-msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
+msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147482\">Icon</alt></image>"
msgstr ""
#. 6RNey
@@ -8125,13 +8125,13 @@ msgctxt ""
msgid "Stars"
msgstr ""
-#. c6VE3
+#. GCpBe
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id81526422144005\n"
"help.text"
-msgid "Choose <emph>Insert - Signature Line...</emph>"
+msgid "Choose <emph>Insert - Signature Line</emph>"
msgstr ""
#. aFWLc
@@ -10654,6 +10654,15 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering</emph>."
msgstr ""
+#. GmdFv
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id761616160771224\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Bullets and Numbering</menuitem>."
+msgstr ""
+
#. N8NwQ
#: 00040500.xhp
msgctxt ""
@@ -10663,22 +10672,22 @@ msgctxt ""
msgid "On <emph>Formatting</emph> bar, click"
msgstr ""
-#. 4QWK9
+#. sQFWD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149445\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Icon bullet list</alt></image>"
+msgid "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Bullets and Numbering dialog Icon</alt></image>"
msgstr ""
-#. yavcV
+#. BPPZD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3157970\n"
"help.text"
-msgid "Bullets On/Off"
+msgid "Bullets and Numbering"
msgstr ""
#. XAbBj
@@ -10735,40 +10744,40 @@ msgctxt ""
msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
msgstr ""
-#. ZD5up
+#. n79tw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
msgstr ""
-#. 3g7gB
+#. tbLJG
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150862\n"
"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering - Numbering</menuitem> tab."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Ordered</menuitem> tab."
msgstr ""
-#. iTevh
+#. Rak4H
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3129011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
msgstr ""
-#. dAnx5
+#. 2XAFx
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146019\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
msgstr ""
#. 4AKhs
@@ -10780,49 +10789,40 @@ msgctxt ""
msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Image</emph> tab.</variable>"
msgstr ""
-#. G4FjC
+#. CwE3e
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155848\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Outline</menuitem> tab."
msgstr ""
-#. ifngA
+#. 8cr6F
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148733\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
-#. BQqBM
+#. gfMdA
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3154931\n"
+"par_id3156658\n"
"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
+msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. TDV7t
+#. DVZRw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
-msgstr ""
-
-#. gfMdA
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3156658\n"
-"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
msgstr ""
#. t8uTF
@@ -12535,13 +12535,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (drawing documents)."
msgstr ""
-#. ABvKj
+#. 3GEwT
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145365\n"
"help.text"
-msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (presentation documents)."
+msgid "Choose <menuitem>Format - Object and Shape - Area - Transparency</menuitem> tab (presentation documents)."
msgstr ""
#. KXq32
@@ -13093,49 +13093,49 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Style - Subscript</menuitem>."
msgstr ""
-#. ATNzQ
+#. GCxvv
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155377\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing</menuitem>."
+msgid "Choose <menuitem>Format - Spacing</menuitem>."
msgstr ""
-#. zWwjF
+#. AJWAM
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154475\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Single</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1</menuitem>."
msgstr ""
-#. GdBSL
+#. TKPgq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150478\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - 1.5 Lines</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1.5</menuitem>."
msgstr ""
-#. pNDFU
+#. nxrCX
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147167\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Double</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 2</menuitem>."
msgstr ""
-#. 4TwEA
+#. eLguF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146978\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Left</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Left</menuitem>."
msgstr ""
#. reirq
@@ -13165,13 +13165,13 @@ msgctxt ""
msgid "Align Left"
msgstr ""
-#. 4wBza
+#. mmjN6
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155823\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Right</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Right</menuitem>."
msgstr ""
#. 2MorN
@@ -13201,13 +13201,13 @@ msgctxt ""
msgid "Align Right"
msgstr ""
-#. ZvaaQ
+#. QVuAL
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149189\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Centered</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
msgstr ""
#. YutM3
@@ -13237,13 +13237,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
-#. FiPMC
+#. BAFc3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146151\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Justified</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Justified</menuitem>."
msgstr ""
#. Mj8VD
@@ -13300,31 +13300,31 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Group</menuitem>."
msgstr ""
-#. 3AJkC
+#. 93FXg
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157985\n"
+"par_id3157980\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Group</menuitem>"
msgstr ""
-#. bdCDb
+#. dXNCq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157980\n"
+"par_id3157985\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Group</menuitem>"
msgstr ""
-#. RvPBU
+#. w3EVK
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149508\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Group - Group</menuitem> (form objects)."
+msgid "Open context menu - choose <menuitem>Group</menuitem> (for text box and shapes)."
msgstr ""
#. ibZAV
@@ -13345,22 +13345,22 @@ msgctxt ""
msgid "Group"
msgstr ""
-#. GuQA3
+#. fQM7Y
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153023\n"
+"par_id3163378\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Ungroup</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem>."
msgstr ""
-#. WFDj3
+#. K7UZY
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163378\n"
+"par_id3153023\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Ungroup</menuitem>."
msgstr ""
#. 9k3ef
@@ -13390,22 +13390,22 @@ msgctxt ""
msgid "Ungroup"
msgstr ""
-#. cdsaS
+#. kPkDt
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153109\n"
+"par_id3145678\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Exit Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem>."
msgstr ""
-#. P2Xae
+#. fZQDA
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145678\n"
+"par_id3153109\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Exit Group</menuitem>."
msgstr ""
#. Bszjv
@@ -13435,22 +13435,22 @@ msgctxt ""
msgid "Exit Group"
msgstr ""
-#. Cx3Zj
+#. iWdD3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3149129\n"
+"par_id3145354\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Enter Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem>."
msgstr ""
-#. hn7Hv
+#. vuF7P
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145354\n"
+"par_id3149129\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Enter Group</menuitem>."
msgstr ""
#. 4rTmw
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 22bad11f7bf..9a336d6a8cf 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/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: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542196252.000000\n"
#. 3u8hR
@@ -3067,13 +3067,13 @@ msgctxt ""
msgid "<bookmark_value>Export as; PDF</bookmark_value><bookmark_value>Export as; EPUB</bookmark_value>"
msgstr ""
-#. NDQi2
+#. C5uBC
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"hd_id751513634008094\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Export As</link>"
msgstr ""
#. yQFCE
@@ -3085,13 +3085,13 @@ msgctxt ""
msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats.</ahelp></variable>"
msgstr ""
-#. 84MXi
+#. MhcED
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"par_id971513634212601\n"
"help.text"
-msgid "Choose <emph>File - Export As...</emph> ."
+msgid "Choose <emph>File - Export As</emph>."
msgstr ""
#. 5EMoa
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_idN106CC\n"
"help.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "التواقيع الرقمية"
#. EdEtn
#: 01100200.xhp
@@ -5623,13 +5623,13 @@ msgctxt ""
msgid "separated by"
msgstr ""
-#. qctV8
+#. MVCUS
#: 01160300.xhp
msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
msgstr ""
#. 949cB
@@ -14128,6 +14128,24 @@ msgctxt ""
msgid "When you click a character in the <emph>Special Characters</emph> dialog, a preview and the corresponding numerical code for the character is displayed."
msgstr ""
+#. AQsdj
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"hd_id451614794558893\n"
+"help.text"
+msgid "Search"
+msgstr ""
+
+#. JGCeA
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"par_id741614794572948\n"
+"help.text"
+msgid "Enter the UTF-8 name or part of the name of the character to display the UTF-8 character in the top left square of the grid. The name of the character cannot be translated. For example, enter <literal>tilde</literal> to display <literal>~</literal> and enter <literal>latin capital letter O with circumflex</literal> to display <literal>Ô</literal>."
+msgstr ""
+
#. d8FbY
#: 04100000.xhp
msgctxt ""
@@ -15424,33 +15442,6 @@ msgctxt ""
msgid "<emph>Small capitals</emph> - <variable id=\"smallcapitals\">Changes the selected lowercase characters to uppercase characters, and then reduces their size.</variable>"
msgstr ""
-#. kGuxJ
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"bm_id410168\n"
-"help.text"
-msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
-msgstr ""
-
-#. Suvvn
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3152941\n"
-"help.text"
-msgid "Blinking"
-msgstr ""
-
-#. 2FiCB
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"par_id3145662\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
-msgstr ""
-
#. B3MEb
#: 05020200.xhp
msgctxt ""
@@ -23857,13 +23848,13 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles deck of the Sidebar</link></caseinline><defaultinline>Styles deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
msgstr ""
-#. aXpX4
+#. MD7GR
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"tit\n"
"help.text"
-msgid "Aligning (Objects)"
+msgid "Align Objects"
msgstr ""
#. kVyf4
@@ -23875,14 +23866,14 @@ msgctxt ""
msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
msgstr ""
-#. a4NeC
+#. xAmKa
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"hd_id3149987\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">نص</link>"
+msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Align Objects</link>"
+msgstr ""
#. dFAkA
#: 05070000.xhp
@@ -28042,14 +28033,14 @@ msgctxt ""
msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
msgstr ""
-#. awqBc
+#. UEuLi
#: 05220000.xhp
msgctxt ""
"05220000.xhp\n"
"hd_id3146856\n"
"help.text"
-msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text Attributes</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">نص</link>"
#. cBEMC
#: 05220000.xhp
@@ -34603,14 +34594,14 @@ msgctxt ""
msgid "Text Attributes"
msgstr ""
-#. UEXgE
+#. dZtp3
#: 05990000.xhp
msgctxt ""
"05990000.xhp\n"
"hd_id3155757\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">نص</link>"
+msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text Attributes</link>"
+msgstr ""
#. B2wiN
#: 05990000.xhp
@@ -37897,13 +37888,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">تعداد نقطي ورقمي</link>"
-#. sdTwy
+#. S7psX
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"par_id3150146\n"
"help.text"
-msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
+msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph or to selected paragraphs, and lets you edit format of the numbering or bullets.</ahelp></variable>"
msgstr ""
#. 7wAZT
@@ -37915,15 +37906,6 @@ msgctxt ""
msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
msgstr ""
-#. FXvcQ
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id911610939960192\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering\">Numbering</link>"
-msgstr ""
-
#. FUmyk
#: 06050000.xhp
msgctxt ""
@@ -38086,13 +38068,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Customize tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#. mFseS
+#. AQgFB
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"tit\n"
"help.text"
-msgid "Outline"
+msgid "Outline (Bullets and Numbering)"
msgstr ""
#. Tuc3B
@@ -38104,13 +38086,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">فتح</link>"
-#. faDgM
+#. 2DJLS
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3146936\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different formats that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
msgstr ""
#. RDBrG
@@ -38122,13 +38104,13 @@ msgctxt ""
msgid "Selection"
msgstr "اختيار"
-#. tG9L7
+#. PPdZD
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3155934\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline style that you want to use.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline format that you want to use.</ahelp>"
msgstr ""
#. WYun7
@@ -38167,13 +38149,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Image</link>"
msgstr ""
-#. g8rob
+#. YBPGk
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
"par_id0611200904373226\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
msgstr ""
#. yDHf2
@@ -38257,13 +38239,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Customize</link>"
msgstr ""
-#. KTDdy
+#. ptL6S
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147212\n"
"help.text"
-msgid "Sets the formatting options for numbered or bulleted lists. If you want, you can apply formatting to individual levels in the list hierarchy."
+msgid "Sets the formatting options for ordered or unordered lists. If you want, you can apply formatting to individual levels in the list hierarchy."
msgstr ""
#. pGwyV
@@ -38311,13 +38293,13 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. vcASB
+#. 2JWDd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147261\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering style for the selected levels.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering scheme for the selected levels.</ahelp>"
msgstr ""
#. mmh24
@@ -38509,13 +38491,13 @@ msgctxt ""
msgid "Bullet"
msgstr ""
-#. RqUuK
+#. ZiJYu
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145085\n"
"help.text"
-msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet style."
+msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet type."
msgstr ""
#. JBJEa
@@ -38572,22 +38554,22 @@ msgctxt ""
msgid "None"
msgstr ""
-#. ty7BH
+#. kcSkw
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3149167\n"
"help.text"
-msgid "Does not apply a numbering style."
+msgid "Does not apply a numbering scheme."
msgstr ""
-#. P7jbZ
+#. sANUk
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145746\n"
"help.text"
-msgid "The availability of the following fields depends on the style that you select in the <emph>Number</emph> box."
+msgid "The availability of the following fields depends on the numbering scheme that you select in the <emph>Number</emph> box."
msgstr ""
#. iqVUE
@@ -38617,13 +38599,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Character Style</caseinline></switchinline>"
msgstr ""
-#. zkHUZ
+#. DXsYK
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in an ordered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
msgstr ""
#. AXZAF
@@ -38635,13 +38617,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Show sublevels</caseinline></switchinline>"
msgstr ""
-#. tCS4j
+#. 3zFAs
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3152881\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">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\".</ahelp></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Enter the number of previous levels to include in the outline format. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering scheme, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
msgstr ""
#. 85gXU
@@ -38671,13 +38653,13 @@ msgctxt ""
msgid "After"
msgstr ""
-#. 9rGAH
+#. UM7wq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150288\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">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.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Enter a character or the text to display behind the number in the list. If you want to create a ordered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
msgstr ""
#. FWEse
@@ -38689,13 +38671,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Color</caseinline><caseinline select=\"DRAW\">Color</caseinline></switchinline>"
msgstr ""
-#. cV8eZ
+#. DDWVd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3156060\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering scheme.</ahelp></defaultinline></switchinline>"
msgstr ""
#. JQB8P
@@ -38851,31 +38833,31 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
msgstr ""
-#. CwwFP
+#. e5KXW
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"tit\n"
"help.text"
-msgid "Position (List Styles)"
+msgid "Position (Lists)"
msgstr ""
-#. YCPm7
+#. pbtfH
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"hd_id3150467\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">فتح</link>"
+msgid "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link></variable>"
+msgstr ""
-#. 26wKr
+#. ZuAPU
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3158397\n"
"help.text"
-msgid "<variable id=\"positioninfo\">Sets the indent, spacing, and alignment options for the numbered or bulleted list.</variable>"
+msgid "<variable id=\"positioninfo\">Set indent, spacing, and alignment options for numbering symbols, such as numbers or bullets, to ordered and unordered lists.</variable>"
msgstr ""
#. itRYD
@@ -38887,13 +38869,13 @@ msgctxt ""
msgid "Level"
msgstr ""
-#. icEv9
+#. 2gVRo
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3155755\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select \"1-10\". In Chapter Numbering, only one level can be selected, or use \"1-10\" to apply the options, except Paragraph style, to all the levels."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select “1-10”."
msgstr ""
#. qAm3f
@@ -40795,13 +40777,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
msgstr ""
-#. 4xgpA
+#. J85qe
#: 06140200.xhp
msgctxt ""
"06140200.xhp\n"
"par_id3154682\n"
"help.text"
-msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
+msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications. To assign a key for all applications, choose the <emph>%PRODUCTNAME</emph> radio button in the top right corner."
msgstr ""
#. BjkTi
@@ -40822,6 +40804,15 @@ msgctxt ""
msgid "If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list. It is possible to assign the same function to more than one key."
msgstr ""
+#. a7WFE
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id341603939923441\n"
+"help.text"
+msgid "A shortcut key assigned to a particular application overrides the shortcut key setting made in %PRODUCTNAME for all applications."
+msgstr ""
+
#. Fi6Jn
#: 06140200.xhp
msgctxt ""
@@ -44629,13 +44620,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr ""
-#. W4vvs
+#. jHLBC
#: formatting_mark.xhp
msgctxt ""
"formatting_mark.xhp\n"
"hd_id3245643\n"
"help.text"
-msgid "No-width no break"
+msgid "Word Joiner"
msgstr ""
#. 4Ur7Y
@@ -47707,13 +47698,13 @@ msgctxt ""
msgid "Embedding Fonts"
msgstr ""
-#. MhNdc
+#. MMKaJ
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"bm_id3149955\n"
"help.text"
-msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
+msgid "<bookmark_value>embedding fonts in document file</bookmark_value><bookmark_value>documents; embedding fonts</bookmark_value><bookmark_value>font embedding; in documents</bookmark_value><bookmark_value>fonts; embedding</bookmark_value><bookmark_value>fonts; licensing for embedding</bookmark_value><bookmark_value>embedding; fonts</bookmark_value><bookmark_value>embedding licensed fonts</bookmark_value>"
msgstr ""
#. VdsXE
@@ -47734,13 +47725,13 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
msgstr ""
-#. JFNLj
+#. UnyFx
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"hd_id3149999\n"
"help.text"
-msgid "Fonts embedding"
+msgid "Font embedding"
msgstr ""
#. LM4Gn
@@ -47761,6 +47752,15 @@ msgctxt ""
msgid "Consider embedding fonts when your document use rare or custom fonts not generally available in other computers."
msgstr ""
+#. AcrZ8
+#: prop_font_embed.xhp
+msgctxt ""
+"prop_font_embed.xhp\n"
+"par_id191616163803305\n"
+"help.text"
+msgid "Font licenses may restrict embedding fonts in documents. Font files contain flags that indicate if and how they can be embedded within a document file. %PRODUCTNAME parses these flags and determines if and how it may be embedded in a document file, and when you open a document containing embedded fonts, it will also look at these flags to determine if and how a document can be viewed or edited."
+msgstr ""
+
#. iBvGV
#: ref_epub_export.xhp
msgctxt ""
@@ -49550,7 +49550,7 @@ msgctxt ""
"hd_id7985168\n"
"help.text"
msgid "Printing"
-msgstr ""
+msgstr "الطباعة"
#. wpyGW
#: ref_pdf_export_security.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/02.po b/source/ar/helpcontent2/source/text/shared/02.po
index 98fd913cb18..a7c7f6678ba 100644
--- a/source/ar/helpcontent2/source/text/shared/02.po
+++ b/source/ar/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-30 15:37+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ar/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028544.000000\n"
#. Edm6o
@@ -11266,22 +11266,22 @@ msgctxt ""
msgid "Character Highlighting Color"
msgstr ""
-#. tExR8
+#. 5GRDP
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Character Highlighting Color</link>"
+msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlighting</link>"
msgstr ""
-#. y45WA
+#. 6EDWk
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlight color to the character style or text selection.</ahelp></variable>"
+msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlighting color to the <switchinline select=\"appl\"><caseinline select=\"WRITER\">character style or</caseinline></switchinline> text selection.</ahelp></variable>"
msgstr ""
#. KrAa6
@@ -11302,6 +11302,15 @@ msgctxt ""
msgid "When editing a character style, choose <emph>Highlighting</emph> tab."
msgstr ""
+#. 8NF47
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id481613812856744\n"
+"help.text"
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\">Formatting bar, Text Object bar or Character section of Properties Sidebar.</caseinline><defaultinline><emph>Text Formatting bar.</emph></defaultinline></switchinline>"
+msgstr ""
+
#. YETEY
#: 02160000.xhp
msgctxt ""
@@ -11356,13 +11365,13 @@ msgctxt ""
msgid "Select the text that you want to highlight."
msgstr ""
-#. 94UES
+#. AQAQh
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id851610983100948\n"
"help.text"
-msgid "Click the <emph>Character Highlighting Color</emph> icon on the <emph>Formatting</emph> bar."
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Formatting</emph> or <emph>Text Object</emph></caseinline><defaultinline><emph>Text Formatting</emph></defaultinline></switchinline> bar."
msgstr ""
#. bVPsm
@@ -11473,13 +11482,13 @@ msgctxt ""
msgid "Select the highlighted text."
msgstr ""
-#. BTFWr
+#. yRMNb
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3149784\n"
"help.text"
-msgid "On the <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph>Text</emph></defaultinline></switchinline> <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
msgstr ""
#. yDDr8
@@ -12346,22 +12355,22 @@ msgctxt ""
msgid "Move Down"
msgstr ""
-#. qjHwq
+#. ZvBbZ
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"tit\n"
"help.text"
-msgid "Bullets On/Off"
+msgid "Toggle Unordered List"
msgstr ""
-#. 2pB5k
+#. CCrby
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Bullets On/Off</link>"
+msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Toggle Unordered List</link>"
msgstr ""
#. GQ9yd
@@ -12409,22 +12418,22 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text box and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
msgstr ""
-#. QCjAp
+#. X9H2x
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3150355\n"
"help.text"
-msgid "<image id=\"img_id3157909\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
+msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon</alt></image>"
msgstr ""
-#. iHX8u
+#. TEain
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3149233\n"
"help.text"
-msgid "Bullets On/Off"
+msgid "Toggle Unordered List"
msgstr ""
#. 6UAmF
@@ -12823,13 +12832,40 @@ msgctxt ""
msgid "<variable id=\"hyperdiatext\"><ahelp hid=\".\">Opens a dialog that enables you to create and edit hyperlinks.</ahelp></variable>"
msgstr ""
-#. thKGB
+#. H5bDr
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id511616406933483\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Hyperlink</menuitem>."
+msgstr ""
+
+#. CFNbD
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id771616410590648\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Hyperlink</menuitem>, when the cursor is placed in a hyperlink."
+msgstr ""
+
+#. E6FB3
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id161616407054506\n"
+"help.text"
+msgid "On <link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\"><emph>Standard</emph></link> bar, click"
+msgstr ""
+
+#. MSjJA
#: 09070000.xhp
msgctxt ""
"09070000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3093440\">Icon</alt></image>"
+msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3093440\">Icon</alt></image>"
msgstr ""
#. Dty7B
@@ -13363,6 +13399,15 @@ msgctxt ""
msgid "Document"
msgstr ""
+#. 8Cn55
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"bm_id551615667308718\n"
+"help.text"
+msgid "<bookmark_value>hyperlinks;to files</bookmark_value> <bookmark_value>hyperlinks;to folders</bookmark_value>"
+msgstr ""
+
#. RCfpV
#: 09070300.xhp
msgctxt ""
@@ -13381,6 +13426,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a <emph>URL</emph> for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
msgstr ""
+#. taJit
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"par_id91615666930995\n"
+"help.text"
+msgid "If the URL refers to a <emph>folder</emph>, the standard file manager in your operating system opens showing the contents of the specified folder."
+msgstr ""
+
#. GQcJJ
#: 09070300.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/04.po b/source/ar/helpcontent2/source/text/shared/04.po
index bed1d02be18..b9f866fd087 100644
--- a/source/ar/helpcontent2/source/text/shared/04.po
+++ b/source/ar/helpcontent2/source/text/shared/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-05 18:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-07-08 15:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -70,13 +70,13 @@ msgctxt ""
msgid "When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available."
msgstr ""
-#. iE2uQ
+#. Q2ALG
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "Calling Menus With Shortcut Keys"
+msgid "Calling Menus with Mnemonics"
msgstr ""
#. Lv2Sv
diff --git a/source/ar/helpcontent2/source/text/shared/explorer/database.po b/source/ar/helpcontent2/source/text/shared/explorer/database.po
index 47fb9033090..c655ce35724 100644
--- a/source/ar/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ar/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-01 17:02+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -16,465 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028547.000000\n"
-#. n4gFz
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "علاقات"
-
-#. Mdpfp
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153323\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">Relations</link>"
-msgstr ""
-
-#. GxBiD
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3146957\n"
-"help.text"
-msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
-msgstr ""
-
-#. YYXkm
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3146957\n"
-"help.text"
-msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
-msgstr ""
-
-#. vMuED
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3154823\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
-msgstr ""
-
-#. zHWMJ
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3145316\n"
-"help.text"
-msgid "This function is only available if you are working with a relational database."
-msgstr ""
-
-#. 5MXvo
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
-msgstr ""
-
-#. krxTw
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3152812\n"
-"help.text"
-msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
-msgstr ""
-
-#. zZFEP
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3150541\n"
-"help.text"
-msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
-msgstr ""
-
-#. uJVYH
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3148922\n"
-"help.text"
-msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
-msgstr ""
-
-#. ek2aE
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3148922\n"
-"help.text"
-msgid "Primary key and foreign keys"
-msgstr ""
-
-#. ksuDX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149168\n"
-"help.text"
-msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
-msgstr ""
-
-#. FACvb
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3147085\n"
-"help.text"
-msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
-msgstr ""
-
-#. vro8F
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153193\n"
-"help.text"
-msgid "Define relations"
-msgstr ""
-
-#. wmwWU
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3155430\n"
-"help.text"
-msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
-msgstr ""
-
-#. pGNLA
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155430\n"
-"help.text"
-msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
-msgstr ""
-
-#. McRUh
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149984\n"
-"help.text"
-msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
-
-#. yTadX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3153093\n"
-"help.text"
-msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
-msgstr ""
-
-#. bnCjW
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155856\n"
-"help.text"
-msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
-msgstr ""
-
-#. zaiku
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "علاقات"
-
-#. BAAZE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
-msgstr ""
-
-#. tDgC3
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "Relations"
-msgstr "علاقات"
-
-#. 5fAEp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3150499\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
-msgstr ""
-
-#. yHc9N
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155136\n"
-"help.text"
-msgid "The update and delete options are only available if they are supported by the database used."
-msgstr ""
-
-#. BDC5P
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3155341\n"
-"help.text"
-msgid "Tables"
-msgstr ""
-
-#. BAGsd
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153880\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
-msgstr ""
-
-#. 4UCC7
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154047\n"
-"help.text"
-msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
-msgstr ""
-
-#. VBeNf
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3153822\n"
-"help.text"
-msgid "Key fields"
-msgstr ""
-
-#. CnkB6
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3159157\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
-msgstr ""
-
-#. tG7Wy
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
-msgstr ""
-
-#. ECqps
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145609\n"
-"help.text"
-msgid "Update options"
-msgstr ""
-
-#. TcZQE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153061\n"
-"help.text"
-msgid "Here you can select options that take effect when there are changes to a primary key field."
-msgstr ""
-
-#. SNgAC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3149046\n"
-"help.text"
-msgid "No action"
-msgstr ""
-
-#. BQgh9
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3152360\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
-msgstr ""
-
-#. UzK5q
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3148664\n"
-"help.text"
-msgid "Updating cascade"
-msgstr ""
-
-#. GFtru
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154073\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
-msgstr ""
-
-#. xydLE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145171\n"
-"help.text"
-msgid "Set null"
-msgstr ""
-
-#. ksYnw
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154123\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
-msgstr ""
-
-#. FGxMC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150448\n"
-"help.text"
-msgid "Set default"
-msgstr ""
-
-#. T7dEQ
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3151041\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
-msgstr ""
-
-#. AvWBL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3125863\n"
-"help.text"
-msgid "Delete options"
-msgstr ""
-
-#. ayyns
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153193\n"
-"help.text"
-msgid "Here you can select options that take effect when a primary key field is deleted."
-msgstr ""
-
-#. jTCSL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3159252\n"
-"help.text"
-msgid "No action"
-msgstr ""
-
-#. PgDqt
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3145785\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
-msgstr ""
-
-#. hFmB4
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3154146\n"
-"help.text"
-msgid "Delete cascade"
-msgstr ""
-
-#. ESpAp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155309\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
-msgstr ""
-
-#. ZaNTh
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153140\n"
-"help.text"
-msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
-msgstr ""
-
-#. mAu9C
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3152596\n"
-"help.text"
-msgid "Set null"
-msgstr ""
-
-#. dAtCx
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153363\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
-msgstr ""
-
-#. 474LG
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145272\n"
-"help.text"
-msgid "Set Default"
-msgstr ""
-
-#. ktJ6K
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154320\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
-msgstr ""
-
#. x8A6E
#: 05030000.xhp
msgctxt ""
@@ -3769,15 +3310,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr ""
-#. V9baD
-#: dabawiz00.xhp
-msgctxt ""
-"dabawiz00.xhp\n"
-"par_idN10610\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
-msgstr ""
-
#. bbTEe
#: dabawiz00.xhp
msgctxt ""
@@ -4795,132 +4327,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
msgstr ""
-#. XLfeM
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"tit\n"
-"help.text"
-msgid "LDAP Connection"
-msgstr ""
-
-#. E4K9F
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"bm_id22583\n"
-"help.text"
-msgid "<bookmark_value>LDAP server; address books (Base)</bookmark_value><bookmark_value>address books; LDAP server (Base)</bookmark_value><bookmark_value>data sources; LDAP server (Base)</bookmark_value>"
-msgstr ""
-
-#. HDgwj
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "<variable id=\"ldap\"><link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">LDAP Connection</link></variable>"
-msgstr ""
-
-#. Xdbya
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database using LDAP</ahelp> (<emph>Lightweight Directory Access Protocol)</emph>. This page is only available if you registered an LDAP server as an address database."
-msgstr ""
-
-#. ZMeDx
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "Server URL"
-msgstr ""
-
-#. ScRnC
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_HOSTNAME\">Enter the name of the LDAP server using the format \"ldap.server.com\".</ahelp>"
-msgstr ""
-
-#. WRJRs
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Base DN"
-msgstr ""
-
-#. kFVmv
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10598\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Enter the starting point to search the LDAP database, for example, \"dc=com\".</ahelp>"
-msgstr ""
-
-#. AKFCR
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Port number"
-msgstr ""
-
-#. 9Bhwf
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_PORTNUMBER\">Enter the port of the LDAP server, normally 389.</ahelp>"
-msgstr ""
-
-#. 8FGvh
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CA\n"
-"help.text"
-msgid "Use secure connection (SSL)"
-msgstr ""
-
-#. REnMu
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CE\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_USESSL_LDAP\">Creates a secure connection to the LDAP server through the Secure Sockets Layer (SSL).</ahelp> By default, an SSL connection uses port 636. A regular connection uses port 389."
-msgstr ""
-
-#. PXBAE
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105DE\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz03auth.xhp\">Authentication</link>"
-msgstr ""
-
-#. EkPas
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105F5\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
-msgstr ""
-
#. Y4EFA
#: dabawiz02mysql.xhp
msgctxt ""
@@ -6640,13 +6046,13 @@ msgctxt ""
msgid "Relationships"
msgstr ""
-#. agJkV
+#. DKgXb
#: menutools.xhp
msgctxt ""
"menutools.xhp\n"
"par_idN10576\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/explorer/database/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/sdatabase/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
msgstr ""
#. B2YV6
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index 58dbafcbddf..d83ca3e15ac 100644
--- a/source/ar/helpcontent2/source/text/shared/guide.po
+++ b/source/ar/helpcontent2/source/text/shared/guide.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+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"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "First Steps"
-msgstr ""
+msgstr "الخطوات الأولى"
#. Z4Cvz
#: aaa_start.xhp
@@ -32,7 +32,7 @@ msgctxt ""
"bm_id3156324\n"
"help.text"
msgid "<bookmark_value>samples and templates</bookmark_value><bookmark_value>templates; new documents from templates</bookmark_value><bookmark_value>business cards; using templates</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>نماذج وقوالب</bookmark_value><bookmark_value>قوالب؛ مستندات جديدة من قوالب</bookmark_value><bookmark_value>بطاقات عمل؛ باستخدام القوالب</bookmark_value>"
#. wQtGF
#: aaa_start.xhp
@@ -8161,13 +8161,13 @@ msgctxt ""
msgid "Tables"
msgstr ""
-#. k3n7x
+#. Gcdea
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3163713\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/shared/explorer/database/05020000.xhp\" name=\"relations\">relations</link>"
+msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/sdatabase/05020000.xhp\" name=\"relations\">relations</link>"
msgstr ""
#. AENyR
@@ -18619,67 +18619,76 @@ msgctxt ""
msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
msgstr ""
-#. 4DAtN
+#. LnEF2
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id3147618\n"
+"help.text"
+msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>No List</emph> icon in the <emph>Formatting</emph> bar. The list indenting is also removed."
+msgstr ""
+
+#. R49Gn
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3154288\n"
"help.text"
-msgid "<image id=\"img_id3153527\" src=\"cmd/sc_removebullets.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153527\">Icon</alt></image>"
+msgid "<image id=\"img_id3153527\" src=\"cmd/lc_removebullets.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153527\">No List icon</alt></image>"
msgstr ""
-#. zSuGJ
+#. nFCu3
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3150443\n"
+"par_id151614326512513\n"
"help.text"
-msgid "<image id=\"img_id3163802\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3163802\">Icon</alt></image>"
+msgid "No List icon"
msgstr ""
-#. it4t7
+#. Uzqm6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3147618\n"
+"par_id3144511\n"
"help.text"
-msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>Numbering Off</emph> icon in the <emph>Bullets and Numbering</emph> bar."
+msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Toggle Unordered List</emph> icon on the <emph>Text Formatting</emph> bar."
msgstr ""
-#. CcCTx
+#. XLYd6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3155449\n"
"help.text"
-msgid "<image id=\"img_id3158432\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3158432\">Icon</alt></image>"
+msgid "<image id=\"img_id3158432\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3158432\">Icon</alt></image>"
msgstr ""
-#. biscq
+#. ikjGP
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3144511\n"
+"par_id781614327726646\n"
"help.text"
-msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Bullets On/Off </emph>icon on the <emph>Text Formatting</emph> bar."
+msgid "Toggle Unordered List icon"
msgstr ""
-#. CfCjc
+#. RE37f
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148946\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To remove numbering from a paragraph using the keyboard: </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> To remove a number or bullet from a paragraph while preserving the list indenting: </caseinline></switchinline>"
msgstr ""
-#. qETFj
+#. EsxZF
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148663\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a numbered paragraph and press the Backspace key. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a paragraph in a list and press the <keycode>Backspace</keycode> key. </caseinline></switchinline>"
msgstr ""
#. TY7jM
@@ -18691,6 +18700,15 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The numbering of the paragraph disappears and is removed from the numbering sequence. Numbering resumes in the following paragraph. </caseinline></switchinline>"
msgstr ""
+#. B8akd
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id911614326873271\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> at the beginning of a list paragraph to return the number or bullet."
+msgstr ""
+
#. FrmUz
#: numbering_stop.xhp
msgctxt ""
@@ -23326,13 +23344,13 @@ msgctxt ""
msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
-#. ir37U
+#. RYx7a
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id781554408625219\n"
"help.text"
-msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion."
+msgid "<variable id=\"seefilters\">See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion.</variable>"
msgstr ""
#. EiUnD
@@ -23929,13 +23947,13 @@ msgctxt ""
msgid "If you want to change the settings of your default tab stops, you will find further information under <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Text Document - General\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - General\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Drawing - General\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(module name) - General</defaultinline></switchinline> in the Options dialog box."
msgstr ""
-#. hqPQR
+#. hA4kf
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3146972\n"
"help.text"
-msgid "The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
+msgid "The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
msgstr ""
#. ojDwN
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index 6cf0ff04626..12797f0e3d3 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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6145,22 +6145,22 @@ msgctxt ""
msgid "List"
msgstr "قائمة"
-#. AcAJa
+#. sEbwG
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3144433\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the fonts for lists and numbering and all derived styles.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the font and font size for the <emph>List</emph> paragraph style, which is inherited by all derived paragraph styles.</ahelp>"
msgstr ""
-#. KnLN9
+#. aQFY4
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><emph>Format - Numbering/Bullets</emph></link></caseinline><defaultinline><emph>Format - Numbering/Bullets</emph></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
+msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><menuitem>Format - Bullets and Numbering</menuitem></link></caseinline><defaultinline><menuitem>Format - Bullets and Numbering</menuitem></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
msgstr ""
#. 3nSZ5
@@ -6235,13 +6235,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Specifies print settings within a text or HTML document.</ahelp>"
msgstr ""
-#. m2BYE
+#. rwhVS
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"par_id3153542\n"
"help.text"
-msgid "The print settings defined on this tab page apply to all subsequent print jobs, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
+msgid "The print settings defined on this tab page apply to subsequent new documents, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
msgstr ""
#. kHkS3
@@ -15919,6 +15919,15 @@ msgctxt ""
msgid "Java options"
msgstr ""
+#. BYguG
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id181614855578590\n"
+"help.text"
+msgid "The current list of %PRODUCTNAME modules and resources that depends on Java is available <link href=\"https://wiki.documentfoundation.org/Faq/General/015\" name=\"Java wiki\">in the wiki</link>."
+msgstr ""
+
#. J8Yfv
#: java.xhp
msgctxt ""
@@ -15937,6 +15946,15 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optadvancedpage/javaenabled\">Allows you to run Java applications in %PRODUCTNAME.</ahelp> When a Java application attempts to access your hard drive, a prompt opens."
msgstr ""
+#. JLKwC
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id881614855922649\n"
+"help.text"
+msgid "Make sure to install a JRE compatible with the %PRODUCTNAME architecture: 64-bit JRE for 64-bit %PRODUCTNAME and 32-bit JRE for 32-bit %PRODUCTNAME."
+msgstr ""
+
#. BBqDy
#: java.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/simpress.po b/source/ar/helpcontent2/source/text/simpress.po
index ed80374d1c4..2fb5f200c5b 100644
--- a/source/ar/helpcontent2/source/text/simpress.po
+++ b/source/ar/helpcontent2/source/text/simpress.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2017-10-04 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1555,85 +1555,85 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr ""
-#. CJJ22
+#. vmbqC
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3147401\n"
+"hd_id451615217475502\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgid "Styles"
msgstr ""
-#. AW2xS
+#. bpU6u
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149941\n"
+"par_id41615217505414\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgid "Shows commands to edit, update, create, and manage styles."
msgstr ""
-#. eZDbp
+#. CJJ22
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3147299\n"
+"hd_id3147401\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
msgstr ""
-#. TVJ8F
+#. AW2xS
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149499\n"
+"hd_id3149941\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Object and Shape</link>"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
-#. XrW2e
+#. eZDbp
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3154510\n"
+"hd_id3147299\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
+msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr ""
-#. wt8hF
+#. LnFgm
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149021\n"
+"hd_id801615217485302\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
+msgid "Table"
msgstr ""
-#. VkWBC
+#. ZH8Cz
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3155961\n"
+"par_id61615217563797\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
+msgid "Shows commands to format, edit, and delete a table and its elements."
msgstr ""
-#. nGRHD
+#. iZgpC
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3156286\n"
+"hd_id401615217493429\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
+msgid "Image"
msgstr ""
-#. MwAqP
+#. RNZjn
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3163827\n"
+"par_id901615217674598\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
+msgid "Shows commands to crop, edit, and manage images."
msgstr ""
#. F98f9
@@ -1663,22 +1663,391 @@ msgctxt ""
msgid "This menu provides slide management and navigation commands."
msgstr ""
-#. qN8UF
+#. XaqGZ
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id611615489755701\n"
+"help.text"
+msgid "Duplicate Slide"
+msgstr ""
+
+#. uJcAM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id71615490370664\n"
+"help.text"
+msgid "Creates a copy of the currently selected slide."
+msgstr ""
+
+#. Jtf2o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id631615489785082\n"
+"help.text"
+msgid "Delete Slide"
+msgstr ""
+
+#. FAJJ6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491193340\n"
+"help.text"
+msgid "Deletes the selected slide(s)."
+msgstr ""
+
+#. iZWVK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id721615489786162\n"
+"help.text"
+msgid "Save Background Image"
+msgstr ""
+
+#. 8ydAh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491449943\n"
+"help.text"
+msgid "If the slide has a background image, this option allows the user to save the corresponding background image file."
+msgstr ""
+
+#. Bhh37
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id161615489786339\n"
+"help.text"
+msgid "Set Background Image"
+msgstr ""
+
+#. ekbFN
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id781615491497404\n"
+"help.text"
+msgid "Opens a File Picker to choose an image file to be set as the background of the current slide."
+msgstr ""
+
+#. 92Pku
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id921615489787123\n"
+"help.text"
+msgid "New Master"
+msgstr ""
+
+#. kPJER
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id131615493790751\n"
+"help.text"
+msgid "Creates a new Master Slide. This function is only available in <emph>Master View</emph>."
+msgstr ""
+
+#. Vwom7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id491615494190854\n"
+"help.text"
+msgid "To enter the Master View, go to <emph>View - Master Slide</emph>. To exit the Master View, go to <emph>View - Normal</emph>."
+msgstr ""
+
+#. HQQHh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id421615489787299\n"
+"help.text"
+msgid "Delete Master"
+msgstr ""
+
+#. EBxxM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id661615494028415\n"
+"help.text"
+msgid "Deletes the currently selected Master Slide. This function is only available in <emph>Master View</emph>"
+msgstr ""
+
+#. hXNB7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id841615489787538\n"
+"help.text"
+msgid "Master Background"
+msgstr ""
+
+#. Kf3CF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id921615494351365\n"
+"help.text"
+msgid "This option allows to show or hide the background image defined in the master slide."
+msgstr ""
+
+#. 9GSWp
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id621615489788132\n"
+"help.text"
+msgid "Master Objects"
+msgstr ""
+
+#. wjDcS
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id541615494644223\n"
+"help.text"
+msgid "This option allows to show or hide objects defined in the master slide."
+msgstr ""
+
+#. BVTEY
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id51615489788356\n"
+"help.text"
+msgid "Master Elements"
+msgstr ""
+
+#. GaTGo
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id111615494747246\n"
+"help.text"
+msgid "Displays a dialog box where the following elements from the master slide can be enabled or disabled:"
+msgstr ""
+
+#. fvE2V
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id41615494861841\n"
+"help.text"
+msgid "Header"
+msgstr ""
+
+#. xcmiq
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id3145801\n"
+"par_id321615494881187\n"
"help.text"
-msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
+msgid "Date/Time"
msgstr ""
-#. BkUdP
+#. kfNdX
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id551556824896520\n"
+"par_id721615494891164\n"
"help.text"
-msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
+msgid "Footer"
+msgstr ""
+
+#. LLGmD
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id401615494904662\n"
+"help.text"
+msgid "Slide Number"
+msgstr ""
+
+#. sYXNP
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id851615489788586\n"
+"help.text"
+msgid "Show Slide"
+msgstr ""
+
+#. 6hQEB
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495037553\n"
+"help.text"
+msgid "If a slide is hidden, this function makes it visible again."
+msgstr ""
+
+#. FFLV4
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id201615489788874\n"
+"help.text"
+msgid "Hide Slide"
+msgstr ""
+
+#. jdiSK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id961615495104794\n"
+"help.text"
+msgid "If a slide is visible, this function hides it."
+msgstr ""
+
+#. nV23n
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id121615489789140\n"
+"help.text"
+msgid "Rename Slide"
+msgstr ""
+
+#. GpHBE
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id901615495187958\n"
+"help.text"
+msgid "Opens a dialog box where a name can be set for the current slide."
+msgstr ""
+
+#. D6GtH
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id551615489789347\n"
+"help.text"
+msgid "Jump to Last Edited Slide"
+msgstr ""
+
+#. Snoa6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id741615495336473\n"
+"help.text"
+msgid "Navigates to the last edited slide in the document."
+msgstr ""
+
+#. FA3Ra
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id641615489789548\n"
+"help.text"
+msgid "Move"
+msgstr ""
+
+#. GBPvF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id371615495363225\n"
+"help.text"
+msgid "Shows a list of move operations that can be applied to the current slide:"
+msgstr ""
+
+#. TF4iz
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id711615495448201\n"
+"help.text"
+msgid "<emph>Slide to Start:</emph> Moves the current slide to the first position."
+msgstr ""
+
+#. uAt25
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id101615495452464\n"
+"help.text"
+msgid "<emph>Slide Up:</emph> Moves the current slide one position up in the presentation."
+msgstr ""
+
+#. PdEMy
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id761615495456499\n"
+"help.text"
+msgid "<emph>Slide Down:</emph> Moves the current slide one position down in the presentation."
+msgstr ""
+
+#. ESDFM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495459372\n"
+"help.text"
+msgid "<emph>Slide to End:</emph> Moves the current slide to the last position."
+msgstr ""
+
+#. AsscG
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id301615489789755\n"
+"help.text"
+msgid "Navigate"
+msgstr ""
+
+#. 62VZA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558050553\n"
+"help.text"
+msgid "Shows a list of functions that can be used to navigate through the slides:"
+msgstr ""
+
+#. Mdi6Y
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id381615558169403\n"
+"help.text"
+msgid "<emph>To First Slide:</emph> Selects the first slide in the presentation."
+msgstr ""
+
+#. bYEak
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id131615558173437\n"
+"help.text"
+msgid "<emph>To Previous Slide:</emph> Navigates to the previous slide with respect to the currently selected slide."
+msgstr ""
+
+#. YXD3o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558176178\n"
+"help.text"
+msgid "<emph>To Next Slide:</emph> Navigates to the next slide with respect to the currently selected slide."
+msgstr ""
+
+#. dspAA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id91615558179041\n"
+"help.text"
+msgid "<emph>To Last Slide:</emph> Selects the last slide in the presentation."
msgstr ""
#. rCA2e
@@ -1734,3 +2103,30 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
+
+#. oAFfK
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object and Shape (Impress)"
+msgstr ""
+
+#. RHunz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"hd_id231615117568430\n"
+"help.text"
+msgid "<link href=\"text/simpress/submenu_object_shape.xhp\" name=\"Object and Shape\">Object and Shape</link>"
+msgstr ""
+
+#. HZBpz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"par_id111615131426235\n"
+"help.text"
+msgid "Opens a submenu to edit the properties of the selected object or shape."
+msgstr ""
diff --git a/source/ar/helpcontent2/source/text/simpress/00.po b/source/ar/helpcontent2/source/text/simpress/00.po
index 65d6789fdf4..bd52da9a136 100644
--- a/source/ar/helpcontent2/source/text/simpress/00.po
+++ b/source/ar/helpcontent2/source/text/simpress/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-03 12:43+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-04-17 15:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1420,13 +1420,13 @@ msgctxt ""
msgid "<variable id=\"frtiteh\">Choose <menuitem>Slide - Slide Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
msgstr ""
-#. y5oEX
+#. fuqnR
#: slide_menu.xhp
msgctxt ""
"slide_menu.xhp\n"
"par_id3155266\n"
"help.text"
-msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Slide Layout</menuitem> </variable>"
+msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Layout</menuitem> </variable>"
msgstr ""
#. j5KeJ
diff --git a/source/ar/helpcontent2/source/text/simpress/01.po b/source/ar/helpcontent2/source/text/simpress/01.po
index 946cf348792..d3903f4d87a 100644
--- a/source/ar/helpcontent2/source/text/simpress/01.po
+++ b/source/ar/helpcontent2/source/text/simpress/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: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2018-09-03 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3220,13 +3220,13 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Summary Slide</link>"
msgstr ""
-#. zGg5h
+#. sYR47
#: 04140000.xhp
msgctxt ""
"04140000.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains a bulleted list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
+msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains an unordered list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
msgstr ""
#. jvuJN
@@ -4147,13 +4147,13 @@ msgctxt ""
msgid "Delete Column"
msgstr ""
-#. qrDGC
+#. Luyeg
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"tit\n"
"help.text"
-msgid "Slide Layout"
+msgid "Layout"
msgstr ""
#. HJ8Jm
@@ -4165,22 +4165,22 @@ msgctxt ""
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
msgstr ""
-#. REe2P
+#. 4dvDP
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "Slide Layout"
+msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Layout\">Layout</link>"
msgstr ""
-#. dmgco
+#. dZ3GJ
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"par_id3149126\n"
"help.text"
-msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp> </variable>"
+msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp></variable>"
msgstr ""
#. CFkTY
@@ -9007,22 +9007,22 @@ msgctxt ""
msgid "Click <emph>Remove Client Authorization</emph>."
msgstr ""
-#. 7oZpm
+#. hTau2
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"tit\n"
"help.text"
-msgid "Slide"
+msgid "Slide Properties"
msgstr ""
-#. baLrD
+#. PGY7f
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"hd_id3149379\n"
"help.text"
-msgid "Slide"
+msgid "Slide Properties"
msgstr ""
#. YMWN6
diff --git a/source/ar/helpcontent2/source/text/simpress/guide.po b/source/ar/helpcontent2/source/text/simpress/guide.po
index fbd91cf0c36..f6a45a656a8 100644
--- a/source/ar/helpcontent2/source/text/simpress/guide.po
+++ b/source/ar/helpcontent2/source/text/simpress/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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/ar/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1535978201.000000\n"
#. S83CC
@@ -2761,13 +2761,31 @@ msgctxt ""
msgid "During a Slide Show"
msgstr ""
-#. DaXcL
+#. aonrJ
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id941616435513490\n"
+"help.text"
+msgid "To start a Slide Show"
+msgstr ""
+
+#. 3vhZG
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150650\n"
"help.text"
-msgid "To start a slide show, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F2</keycode> or <keycode>F5</keycode>."
+msgid "To start a slide show from the begining, press <keycode>F5</keycode>."
+msgstr ""
+
+#. WaqYV
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id911616435506012\n"
+"help.text"
+msgid "To start a slide show from the current slide, press <keycode>Shift+F5</keycode>."
msgstr ""
#. K3r3c
@@ -4165,31 +4183,31 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr ""
-#. GhgSf
+#. 3LhEr
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"tit\n"
"help.text"
-msgid "Copying Slides From Other Presentations"
+msgid "Insert Slide from File"
msgstr ""
-#. BEQux
+#. 34kPB
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"bm_id3146971\n"
"help.text"
-msgid "<bookmark_value>copying; slides</bookmark_value><bookmark_value>slides; copying between documents</bookmark_value><bookmark_value>pages; copying</bookmark_value><bookmark_value>inserting; slides from files</bookmark_value><bookmark_value>pasting;slides from other presentations</bookmark_value>"
+msgid "<bookmark_value>copying; slides</bookmark_value> <bookmark_value>slides; copying between documents</bookmark_value> <bookmark_value>pages; copying</bookmark_value> <bookmark_value>inserting; slides from files</bookmark_value> <bookmark_value>pasting;slides from other presentations</bookmark_value>"
msgstr ""
-#. paiDj
+#. BCJDc
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"hd_id3146971\n"
"help.text"
-msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Copying Slides From Other Presentations</link></variable>"
+msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Insert Slide from File</link></variable>"
msgstr ""
#. BNyAE
diff --git a/source/ar/helpcontent2/source/text/smath/01.po b/source/ar/helpcontent2/source/text/smath/01.po
index b4035474452..0d18aab118d 100644
--- a/source/ar/helpcontent2/source/text/smath/01.po
+++ b/source/ar/helpcontent2/source/text/smath/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: 2021-03-19 17:31+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"
@@ -205,13 +205,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03040000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr ""
-#. oeXhg
+#. 4GCbo
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
"par_id3154490\n"
"help.text"
-msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
msgstr ""
#. EyasV
@@ -241,13 +241,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03050000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr ""
-#. Q2ZAD
+#. yxSWi
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
msgstr ""
#. xSbDA
@@ -277,13 +277,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03060000.xhp\" name=\"Show All\">Show All</link>"
msgstr ""
-#. cMH92
+#. HGtyh
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id3148571\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
+msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
msgstr ""
#. WGriM
@@ -457,13 +457,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090100.xhp\" name=\"Unary/Binary Operators\">Unary/Binary Operators</link>"
msgstr ""
-#. JBpRR
+#. T3SNE
#: 03090100.xhp
msgctxt ""
"03090100.xhp\n"
"par_id3151241\n"
"help.text"
-msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
+msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
msgstr ""
#. 86s5i
@@ -1933,13 +1933,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">Operators</link>"
msgstr ""
-#. 9GqEF
+#. fJzeE
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"par_id3149755\n"
"help.text"
-msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. hDyQo
@@ -2392,13 +2392,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090400.xhp\" name=\"Functions\">Functions</link>"
msgstr "<link href=\"text/smath/01/03090400.xhp\" name=\"Functions\">الدوال</link>"
-#. ELsLc
+#. Q9Kv7
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
"par_id3155374\n"
"help.text"
-msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
+msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
msgstr ""
#. 35FEB
@@ -3139,13 +3139,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090500.xhp\" name=\"Brackets\">Brackets</link>"
msgstr ""
-#. uHWGz
+#. EhUo8
#: 03090500.xhp
msgctxt ""
"03090500.xhp\n"
"par_id3147258\n"
"help.text"
-msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. zusZw
@@ -3850,13 +3850,13 @@ msgctxt ""
msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">Attributes</link> </variable>"
msgstr ""
-#. Q2dMs
+#. mFqph
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145802\n"
"help.text"
-msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. LGFaf
@@ -4651,13 +4651,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090700.xhp\" name=\"Format\">Format</link>"
msgstr ""
-#. dcihp
+#. ZG9A4
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"par_id3147262\n"
"help.text"
-msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
+msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
msgstr ""
#. oGTCQ
@@ -5254,13 +5254,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090800.xhp\" name=\"Set Operations\">Set Operations</link>"
msgstr ""
-#. QzFc8
+#. X4op9
#: 03090800.xhp
msgctxt ""
"03090800.xhp\n"
"par_id3154641\n"
"help.text"
-msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
+msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
msgstr ""
#. CJVPF
diff --git a/source/ar/helpcontent2/source/text/swriter.po b/source/ar/helpcontent2/source/text/swriter.po
index 308b15a98d7..2f08ea2e296 100644
--- a/source/ar/helpcontent2/source/text/swriter.po
+++ b/source/ar/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/ar/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540152094.000000\n"
#. P7iNX
@@ -1060,13 +1060,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr ""
-#. dWAnk
+#. zjGX9
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id551602974854459\n"
"help.text"
-msgid "Align"
+msgid "Align Text"
msgstr ""
#. 7FD3V
@@ -1078,41 +1078,41 @@ msgctxt ""
msgid "Opens a submenu where you can align text and objects."
msgstr ""
-#. 7iyia
+#. 5EJHh
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id951602975070826\n"
+"hd_id3147261\n"
"help.text"
-msgid "Lists"
-msgstr ""
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">حرف</link>"
-#. SkZuS
+#. y8Ux2
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"par_id461602975083850\n"
+"hd_id3147286\n"
"help.text"
-msgid "Opens a submenu where you can modify the structure of numbered and bulleted paragraphs."
-msgstr ""
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">فقرة</link>"
-#. 5EJHh
+#. 7iyia
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147261\n"
+"hd_id951602975070826\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">حرف</link>"
+msgid "Lists"
+msgstr ""
-#. y8Ux2
+#. MKjWR
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147286\n"
+"par_id461602975083850\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">فقرة</link>"
+msgid "Opens a submenu where you can modify the formatting of list paragraphs."
+msgstr ""
#. gYqLC
#: main0105.xhp
@@ -1132,13 +1132,13 @@ msgctxt ""
msgid "Title Page"
msgstr ""
-#. DyKLQ
+#. crAFH
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"par_id471602976213270\n"
"help.text"
-msgid "Opens submenu where you can design a title page."
+msgid "Opens a dialog where you can design a title page."
msgstr ""
#. QKypm
@@ -1168,13 +1168,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">اعمدة</link>"
-#. JThwL
+#. HtHdy
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id11602979335965\n"
"help.text"
-msgid "Watermark"
+msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Watermark</link>"
msgstr ""
#. QSMBC
@@ -1195,24 +1195,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Image</link>"
msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page\">صفحة</link>"
-#. fqUFz
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id881602977324204\n"
-"help.text"
-msgid "Text Box and Shape"
-msgstr ""
-
-#. 5XtDF
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"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 ""
-
#. FUiBn
#: main0105.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter/00.po b/source/ar/helpcontent2/source/text/swriter/00.po
index 34ac383a6a4..622a2757f58 100644
--- a/source/ar/helpcontent2/source/text/swriter/00.po
+++ b/source/ar/helpcontent2/source/text/swriter/00.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2018-11-14 11:50+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: Arabic <kde-i18n-doc@kde.org>\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter00/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -230,7 +230,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "قائمة التحرير"
#. GRgvP
#: 00000402.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"hd_id3150344\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "قائمة التحرير"
#. MxzoA
#: 00000402.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"par_id3154485\n"
"help.text"
msgid "Choose <emph>Tools - AutoText</emph>"
-msgstr ""
+msgstr "اختر <emph>أدوات - نص تلقائي</emph>"
#. CuxBv
#: 00000402.xhp
@@ -266,7 +266,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "On the Insert toolbar, click"
-msgstr ""
+msgstr "في شريط الإدراج، انقر"
#. na7eb
#: 00000402.xhp
@@ -284,7 +284,7 @@ msgctxt ""
"par_id3150536\n"
"help.text"
msgid "AutoText"
-msgstr ""
+msgstr "نص تلقائي"
#. F7ALF
#: 00000402.xhp
@@ -1564,31 +1564,49 @@ msgctxt ""
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 ""
-#. JW9yE
+#. 4fpCB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "Choose <menuitem>Format - Paragraph - Outline & Numbering</menuitem> tab."
+msgid "Choose <menuitem>Format - Paragraph - Outline & List</menuitem> tab."
+msgstr ""
+
+#. q583F
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id231616224233651\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Paragraph - Outline & List</menuitem> tab."
+msgstr ""
+
+#. ExS89
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id41616224423602\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Edit Style - Outline & List</menuitem> tab."
msgstr ""
-#. qWCzG
+#. n5kFM
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154413\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Outline & Numbering</menuitem> tab (Paragraph Styles)."
+msgid "Choose <menuitem>Styles - Edit Style - Outline & List</menuitem> tab (Paragraph Styles)."
msgstr ""
-#. 7GJUj
+#. oVPyS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - Outline & Numbering</menuitem> tab (Paragraph Styles)."
+msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - List & Numbering</menuitem> tab (Paragraph Styles)."
msgstr ""
#. Rp3Q3
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index 86773aee1c4..f0b4d0340d9 100644
--- a/source/ar/helpcontent2/source/text/swriter/01.po
+++ b/source/ar/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ar/>\n"
"Language: ar\n"
@@ -32,7 +32,7 @@ msgctxt ""
"hd_id2013916\n"
"help.text"
msgid "<link href=\"text/swriter/01/01120000.xhp\">Print Preview</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/01120000.xhp\">معاينة الطباعة</link>"
#. eLMGB
#: 01120000.xhp
@@ -41,7 +41,7 @@ msgctxt ""
"par_id1471907\n"
"help.text"
msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page or closes the preview.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:PrintPreview\">تعرض معاينة للصفحة المطبوعة أو تغلق المعاينة.</ahelp>"
#. ZGjKD
#: 01120000.xhp
@@ -50,7 +50,7 @@ msgctxt ""
"par_id8697470\n"
"help.text"
msgid "Use the icons on the <emph>Print Preview Bar</emph> to scroll through the pages of the document or to print the document."
-msgstr ""
+msgstr "استخدم الأيقونات في <emph>شريط معاينة الطباعة</emph> لتلفّ عبر صفحات المستند أو لتطبع المستند."
#. 5AeGZ
#: 01120000.xhp
@@ -59,7 +59,7 @@ msgctxt ""
"par_id4314706\n"
"help.text"
msgid "You can also press Page Up and Page Down keys to scroll through the pages."
-msgstr ""
+msgstr "يمكنك ايضا الضغط على مفاتيح صفحة للأعلى وصفحة للأسفل لتلفّ عبر المستندات."
#. Xb4va
#: 01120000.xhp
@@ -5380,13 +5380,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. 3FwA8
+#. wsww3
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then press <emph>Insert</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then, click <emph>Insert</emph>.</ahelp>"
msgstr ""
#. s7rfA
@@ -12058,13 +12058,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromheadings\">Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index.</ahelp>"
msgstr ""
-#. XavFH
+#. RfKn4
#: 04120211.xhp
msgctxt ""
"04120211.xhp\n"
"par_id1209200804373840\n"
"help.text"
-msgid "You can also assign the outline levels in the <link href=\"text/swriter/01/05030800.xhp\">Outline & Numbering</link> tab page of the Format - Paragraph dialog."
+msgid "You can also assign outline levels to paragraphs in the <link href=\"text/swriter/01/05030800.xhp\">Outline & List</link> tab page of the Format - Paragraph dialog."
msgstr ""
#. y5UNJ
@@ -16081,31 +16081,31 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">Select the formatting style that you want to apply to the drop caps.</ahelp> To use the formatting style of the current paragraph, select [None]."
msgstr ""
-#. 24MpG
+#. nWCDv
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"tit\n"
"help.text"
-msgid "Outline & Numbering"
+msgid "Outline & List"
msgstr ""
-#. muqGR
+#. Nprja
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3151173\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & Numbering</link>"
+msgid "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & List</link></variable>"
msgstr ""
-#. Zue75
+#. x3BNB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, numbering, or bullets from the paragraph. You can also select the style of numbering to use, and reset the numbering in a numbered list.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, list style, and line numbering from the paragraph or paragraph style. You can also restart or modify the start number for numbered lists and line numbering.</ahelp>"
msgstr ""
#. qNyVD
@@ -16162,22 +16162,22 @@ msgctxt ""
msgid "Numbering"
msgstr ""
-#. UmpGx
+#. fFAFo
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3154188\n"
"help.text"
-msgid "Numbering Style"
+msgid "List Style"
msgstr ""
-#. WGB2B
+#. T2yMF
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> if you click the <emph>List Styles</emph> icon."
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">List Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) if you click the <emph>List Styles</emph> icon."
msgstr ""
#. MycJD
@@ -16198,22 +16198,22 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected numbering style.</ahelp> These properties will apply to all paragraphs formatted with the given numbering style."
msgstr ""
-#. dXFVa
+#. dxBEA
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3149195\n"
"help.text"
-msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering...</emph> to edit the outline level and numbering style."
+msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering</emph> to edit the outline level and numbering format."
msgstr ""
-#. GR3YW
+#. zBagB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3151117\n"
"help.text"
-msgid "Outline level and Numbering Style are independent of each other. Use <emph>Tools - Chapter Numbering...</emph> to assign numbering styles to paragraph styles."
+msgid "Outline level and List style are independent of each other. Use <emph>Tools - Chapter Numbering</emph> to assign a numbering format to paragraph styles used as headings in a document outline structure."
msgstr ""
#. 3KS2Y
@@ -22561,13 +22561,22 @@ msgctxt ""
msgid "Here you can create a List Style. The List Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window."
msgstr ""
-#. FZ2HA
+#. hVmyj
+#: 05130004.xhp
+msgctxt ""
+"05130004.xhp\n"
+"par_id317365356036\n"
+"help.text"
+msgid "When a List Style is created, a name is assigned to the style. The list style can be applied to paragraphs or assigned to a paragraph style in the Apply List Style section of the <link href=\"text/swriter/01/05030800.xhp\" name=\"ApplyListStyle\">Outline & List</link> tab."
+msgstr ""
+
+#. MU724
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"par_id3151390\n"
"help.text"
-msgid "When a List Style is created, a name is assigned to the style. Ordered lists use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>, and can be created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the icons of the <link href=\"text/swriter/main0206.xhp\" name=\"object bar\">object bar</link>."
+msgid "Ordered lists and unordered lists created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> and <link href=\"text/shared/02/06120000.xhp\" name=\"Toggle Unordered List\">Toggle Unordered List</link> icons of the <link href=\"text/swriter/main0202.xhp\" name=\"object bar\">Formatting</link> bar use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>. They are not list styles."
msgstr ""
#. UgisA
@@ -24604,49 +24613,40 @@ msgctxt ""
msgid "Chapter Numbering"
msgstr ""
-#. 483kg
+#. EWVsz
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Chapter Numbering"
+msgid "<variable id=\"ChapNumh1\"><link href=\"text/swriter/01/06060000.xhp\">Chapter Numbering</link></variable>"
msgstr ""
-#. XxAe3
+#. bAdVd
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3145246\n"
"help.text"
-msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the number format and the hierarchy for chapter numbering in the current document.</ahelp></variable>"
+msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the numbering scheme and outline format for chapter numbering in the current document.</ahelp></variable>"
msgstr ""
-#. FqzZs
+#. PKJax
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is achieved by assigning paragraph styles to outline levels, and a numbering scheme for each outline level. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline levels (1-10). You can use the dialog to assign a different paragraph style to an outline level."
msgstr ""
-#. uuEEQ
+#. DpAKZ
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr ""
-
-#. GBEmb
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3147567\n"
-"help.text"
-msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View - Field Shadings</emph>."
+msgid "<variable id=\"chapter_numbering_tip\">If you want numbered headings, choose <menuitem>Tools - </menuitem><link name=\"chapternumbering\" href=\"text/swriter/01/06060000.xhp#ChapNumh1\"><menuitem>Chapter Numbering</menuitem></link>. This command opens a dialog where numbering schemes can be assigned to paragraph styles used for headings. Do not use the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> icon on the <link href=\"text/swriter/main0202.xhp\" name=\"FormattingBar\">Formatting Bar</link> or the <menuitem>Format - </menuitem><link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><menuitem>Bullets and Numbering</menuitem></link> dialog.</variable>"
msgstr ""
#. DFbiG
@@ -24658,22 +24658,22 @@ msgctxt ""
msgid "Load/Save"
msgstr ""
-#. YUER3
+#. 4jFGn
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to load into other text documents.</ahelp>"
msgstr ""
-#. Eoxwy
+#. DkYUj
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Load/Save</emph> button is only available for chapter numbering. For numbered or bulleted list styles, modify the numbering styles of the paragraphs."
+msgid "The <widget>Load/Save</widget> button is only available for chapter numbering. Use List styles to save formatting for ordered or unordered lists."
msgstr ""
#. EV2DT
@@ -24685,13 +24685,13 @@ msgctxt ""
msgid "Untitled 1 - 9"
msgstr ""
-#. tbyhC
+#. GEBee
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150350\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select the predefined numbering style that you want to assign to the selected outline level.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select a predefined numbering format.</ahelp> Save your own predefined numbering formats using <emph>Save As</emph>."
msgstr ""
#. NoHGV
@@ -24703,31 +24703,13 @@ msgctxt ""
msgid "Save As"
msgstr ""
-#. LsqXh
+#. bwJgP
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
-msgstr ""
-
-#. G6SB9
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"hd_id3149689\n"
-"help.text"
-msgid "Save As"
-msgstr ""
-
-#. Uq3CL
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3154200\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numberingnamedialog/form\">Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current numbering and position settings for all levels. Saved settings are available to load into other documents.</ahelp>"
msgstr ""
#. G9Fz2
@@ -24766,13 +24748,13 @@ msgctxt ""
msgid "Level"
msgstr ""
-#. EBZSv
+#. kFsmA
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
msgstr ""
#. s4LDs
@@ -24802,13 +24784,13 @@ msgctxt ""
msgid "Paragraph Style"
msgstr ""
-#. EXNSB
+#. KQMUB
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#. 2Ko3X
@@ -24820,13 +24802,13 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. sayxC
+#. Ve6Gs
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3156319\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering style that you want to apply to the selected outline level.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering scheme that you want to apply to the selected outline level.</ahelp>"
msgstr ""
#. uCj2F
@@ -24847,6 +24829,24 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr ""
+#. AoxBN
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3155899\n"
+"help.text"
+msgid "1, 2, 3, ..."
+msgstr ""
+
+#. rDEQw
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154191\n"
+"help.text"
+msgid "Arabic numerals"
+msgstr ""
+
#. aMCaW
#: 06060100.xhp
msgctxt ""
@@ -24919,24 +24919,6 @@ msgctxt ""
msgid "Roman numerals (lower)"
msgstr ""
-#. AoxBN
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3155899\n"
-"help.text"
-msgid "1, 2, 3, ..."
-msgstr ""
-
-#. rDEQw
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154191\n"
-"help.text"
-msgid "Arabic numerals"
-msgstr ""
-
#. cihkt
#: 06060100.xhp
msgctxt ""
@@ -25000,13 +24982,13 @@ msgctxt ""
msgid "Character Style"
msgstr ""
-#. xjBZC
+#. h5uaa
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3147224\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the format of the numbering character.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the character style of the numbering character.</ahelp>"
msgstr ""
#. bkGnf
@@ -26611,13 +26593,13 @@ msgctxt ""
msgid "Line Numbering"
msgstr ""
-#. ca98d
+#. ZDVZ9
#: 06180000.xhp
msgctxt ""
"06180000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <emph>Format - Paragraph</emph>, click the <emph>Numbering </emph>tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
+msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <menuitem>Format - Paragraph</menuitem>, click the <emph>Outline & List</emph> tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
msgstr ""
#. GcdFF
@@ -27088,49 +27070,31 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
msgstr ""
-#. 4qVPZ
+#. YwkE4
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"tit\n"
"help.text"
-msgid "Object"
+msgid "Text Box and Shape"
msgstr ""
-#. 2vkco
+#. 5XTkz
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/swriter/01/format_object.xhp\">Object</link>"
+msgid "<link href=\"text/swriter/01/format_object.xhp\">Text Box and Shape</link>"
msgstr ""
-#. ev5DK
+#. RfLw2
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr ""
-
-#. QNeGm
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"hd_id1863460\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Text Attributes</link>"
-msgstr ""
-
-#. vqJQ9
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"par_id3542588\n"
-"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected textbox or shape.</ahelp>"
msgstr ""
#. UWnvc
diff --git a/source/ar/helpcontent2/source/text/swriter/02.po b/source/ar/helpcontent2/source/text/swriter/02.po
index 7009aa773e1..2b14d4686d4 100644
--- a/source/ar/helpcontent2/source/text/swriter/02.po
+++ b/source/ar/helpcontent2/source/text/swriter/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/ar/>\n"
"Language: ar\n"
@@ -16,23 +16,23 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511359260.000000\n"
-#. SGjBV
+#. sqxGb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering on/off"
-msgstr "فتح/غلق الترقيم"
+msgid "Toggle Ordered List"
+msgstr ""
-#. ACieD
+#. z8hCm
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150220\n"
"help.text"
-msgid "<link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Numbering On/Off</link>"
-msgstr "<link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">فتح/غلق الترقيم</link>"
+msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Toggle Ordered List</link></variable>"
+msgstr ""
#. 7QYre
#: 02110000.xhp
@@ -41,7 +41,7 @@ msgctxt ""
"par_id3150240\n"
"help.text"
msgid "<ahelp hid=\".uno:DefaultNumbering\">Adds or removes numbering from the selected paragraphs.</ahelp> To define the numbering format, choose <emph>Format - Bullets and Numbering</emph>. To display the <emph>Bullets and Numbering</emph> Bar, choose <emph>View - Toolbars - Bullets and Numbering</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".uno:DefaultNumbering\">يضيف او يزيل الترقيم من الفقرات المحددة.</ahelp> لتعرّف نسَق الترقيم، اختر <emph>تنسيق - تعداد نقطي ورقمي</emph>. لتعرض شريط <emph>التعداد النقطي والرقمي</emph>، اختر <emph>عَرض - أشرطة الأدوات - تعداد نقطي ورقمي</emph>."
#. 8MND6
#: 02110000.xhp
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">Web Layout</link>."
msgstr ""
-#. dARXh
+#. dwn77
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150502\n"
"help.text"
-msgid "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">أيقونة</alt></image>"
+msgid "<image id=\"img_id3150508\" src=\"cmd/lc_defaultnumbering.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150508\">Toggle Ordered List Icon</alt></image>"
+msgstr ""
-#. Xfqcn
+#. yYfzC
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Numbering On/Off"
-msgstr "فتح/غلق الترقيم"
+msgid "Toggle Ordered List"
+msgstr ""
#. fVWig
#: 02110000.xhp
@@ -502,49 +502,58 @@ msgctxt ""
msgid "Sum"
msgstr ""
-#. 4a76q
+#. GqFYN
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering Off"
+msgid "No List"
msgstr ""
-#. hAqDK
+#. wCBAJ
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"hd_id3145822\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">Numbering Off</link>"
+msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">No List</link>"
msgstr ""
-#. i8F2B
+#. MPBzT
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3154505\n"
"help.text"
-msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Turns off numbering or bullets in the current paragraph or selected paragraphs.</ahelp>"
+msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Removes numbering or bullets and list indenting for the current paragraph or selected paragraphs.</ahelp>"
msgstr ""
-#. p6pTC
+#. LDHCy
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3151177\n"
"help.text"
-msgid "<image src=\"cmd/sc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon Numbering Off</alt></image>"
+msgid "<image src=\"cmd/lc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon No List</alt></image>"
msgstr ""
-#. tfm6a
+#. iNFhx
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "Numbering Off"
+msgid "No List"
+msgstr ""
+
+#. 5FX23
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id811614270889392\n"
+"help.text"
+msgid "To preserve indenting, but remove bullet or number, place cursor at the beginning of the paragraph and press <keycode>Backspace</keycode>."
msgstr ""
#. MZn4T
@@ -790,13 +799,40 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06140000.xhp\" name=\"Restart Numbering\">Restart Numbering</link>"
msgstr ""
-#. tRqAn
+#. iwJHH
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id3145249\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts the text numbering.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
+msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts list numbering from 1.</ahelp> This command is only active when the cursor is positioned within a list."
+msgstr ""
+
+#. 89Xm9
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id631616370838434\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Restart Numbering</menuitem>."
+msgstr ""
+
+#. fh5aw
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id31616370717930\n"
+"help.text"
+msgid "Place cursor in a list paragraph, right-click and choose <menuitem>List - Restart Numbering</menuitem>."
+msgstr ""
+
+#. RgibL
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id351616370727010\n"
+"help.text"
+msgid "On <link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><emph>Bullets and Numbering</emph></link> bar, click"
msgstr ""
#. SLjuC
@@ -817,6 +853,24 @@ msgctxt ""
msgid "Restart Numbering"
msgstr ""
+#. DmEY6
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id761616370463787\n"
+"help.text"
+msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
+msgstr ""
+
+#. bEE4F
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id261616371203225\n"
+"help.text"
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - </menuitem><embedvar href=\"textswriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgstr ""
+
#. qCdhk
#: 08010000.xhp
msgctxt ""
@@ -3814,6 +3868,213 @@ msgctxt ""
msgid "Text Animation"
msgstr ""
+#. RajEo
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. mjGvU
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"bm_id1001616018043189\n"
+"help.text"
+msgid "<bookmark_value>Add to List</bookmark_value><bookmark_value>Lists;merging</bookmark_value>"
+msgstr ""
+
+#. X8yaz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id711614068729277\n"
+"help.text"
+msgid "<variable id=\"addtolisth1\"><link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\">Add to List</link></variable>"
+msgstr ""
+
+#. kM6AJ
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id231614069215429\n"
+"help.text"
+msgid "Include selected paragraphs, whether a list item or not, as part of a list."
+msgstr ""
+
+#. pxcFF
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151614079148636\n"
+"help.text"
+msgid "<variable id=\"howtogetaddtolist\">Choose <menuitem>Format - Lists - Add to List</menuitem></variable>."
+msgstr ""
+
+#. PUsxs
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631614079159620\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Add to List</menuitem>."
+msgstr ""
+
+#. Zb43J
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151615752168785\n"
+"help.text"
+msgid "<variable id=\"toolbar\">On <menuitem>Bullets and Numbering</menuitem> bar, click <emph>Add to List</emph> icon.</variable>"
+msgstr ""
+
+#. ViA36
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id651615752040364\n"
+"help.text"
+msgid "<image src=\"cmd/lc_continuenumbering.png\" id=\"img_id981615752040364\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761615752040364\">Add to List Icon</alt></image>"
+msgstr ""
+
+#. hxMDa
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id51615752040365\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. 6kruw
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id711616001147778\n"
+"help.text"
+msgid "The list labeling and indent formatting are applied to the selected paragraphs. The position of the paragraphs in the document does not change."
+msgstr ""
+
+#. pADj5
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id851614072896370\n"
+"help.text"
+msgid "Add Selected Paragraphs to a List"
+msgstr ""
+
+#. FGi4A
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id491615988072533\n"
+"help.text"
+msgid "Select paragraphs, whether in a list or not, to be added to a list."
+msgstr ""
+
+#. smjtz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id271615998908234\n"
+"help.text"
+msgid "For multiple selections, press and hold the <keycode> Ctrl</keycode> key after the first selection. The <keycode>Ctrl</keycode> key can be released without losing the selections, but must be pressed when clicking in the document."
+msgstr ""
+
+#. gwgyD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id551615985719902\n"
+"help.text"
+msgid "Press and hold the <keycode>Ctrl</keycode> key, then place cursor in the list."
+msgstr ""
+
+#. 3VT7j
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id901615999151001\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. qPKKN
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id141615979735757\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#howtogetaddtolist\"/>"
+msgstr ""
+
+#. FADNr
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id961614073544958\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#toolbar\"/>"
+msgstr ""
+
+#. D98D9
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id161615999749854\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click, choose <menuitem>List - Add to List</menuitem>.</variable> To preserve the selection, at least one character must be selected in the list."
+msgstr ""
+
+#. qFmgS
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id861614074931979\n"
+"help.text"
+msgid "This procedure works for ordered and unordered lists."
+msgstr ""
+
+#. L9RdM
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id441616017998739\n"
+"help.text"
+msgid "Add Consecutive List Entries to an Immediately Prior List"
+msgstr ""
+
+#. GJuBD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631616018294373\n"
+"help.text"
+msgid "Select one or more consecutive list entries, starting from the first entry, that you want to add to the immediately prior list."
+msgstr ""
+
+#. g9LRR
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id621616018340980\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#rightclick\"/>"
+msgstr ""
+
+#. p9hUv
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id811616018796902\n"
+"help.text"
+msgid "Use this procedure to combine two lists."
+msgstr ""
+
#. JsrhA
#: word_count_stb.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter/04.po b/source/ar/helpcontent2/source/text/swriter/04.po
index 86be59428c0..d827305a1b4 100644
--- a/source/ar/helpcontent2/source/text/swriter/04.po
+++ b/source/ar/helpcontent2/source/text/swriter/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-03-13 12:06+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2017-10-04 10:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -529,13 +529,13 @@ msgctxt ""
msgid "F12"
msgstr ""
-#. S2S9J
+#. jiXFc
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3148959\n"
"help.text"
-msgid "Numbering on"
+msgid "Toggle Ordered List"
msgstr ""
#. wAUBd
@@ -565,13 +565,13 @@ msgctxt ""
msgid "Shift+F12"
msgstr ""
-#. iuAiR
+#. fkbSD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3152763\n"
"help.text"
-msgid "Bullets on"
+msgid "Toggle Unordered List"
msgstr ""
#. pneN5
@@ -583,13 +583,13 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F12"
msgstr ""
-#. dGgoN
+#. E9pG5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153901\n"
"help.text"
-msgid "Numbering / Bullets off"
+msgid "Ordered / Unordered List off"
msgstr ""
#. HyF9c
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index cfde71213af..d56a150940e 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ar/>\n"
"Language: ar\n"
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Positioning Objects"
-msgstr ""
+msgstr "مَوضَعة الكائنات"
#. xUTz4
#: anchor_object.xhp
@@ -41,7 +41,7 @@ msgctxt ""
"hd_id3147828\n"
"help.text"
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
-msgstr ""
+msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">مَوضَعة الكائنات</link></variable>"
#. PYtpk
#: anchor_object.xhp
@@ -3031,13 +3031,13 @@ msgctxt ""
msgid "<bookmark_value>captions; adding chapter numbers</bookmark_value> <bookmark_value>objects; captioning automatically</bookmark_value> <bookmark_value>numbering; captions</bookmark_value> <bookmark_value>automatic numbering;of objects</bookmark_value> <bookmark_value>chapter numbers in captions</bookmark_value> <bookmark_value>inserting;chapter numbers in captions</bookmark_value>"
msgstr ""
-#. GfPV7
+#. xAnbA
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"hd_id3147684\n"
"help.text"
-msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link> </variable>"
+msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link></variable>"
msgstr ""
#. 5efvj
@@ -3076,13 +3076,13 @@ msgctxt ""
msgid "Choose <emph>Insert - Caption</emph>."
msgstr ""
-#. UpjLH
+#. 4Js6V
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "Select a caption title from the <item type=\"menuitem\">Category</item> box, and select a numbering style in the <item type=\"menuitem\">Numbering</item> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <item type=\"menuitem\">Caption</item> box."
+msgid "Select a caption title from the <menuitem>Category</menuitem> box, and select a numbering scheme in the <menuitem>Numbering</menuitem> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <menuitem>Caption</menuitem> box."
msgstr ""
#. H329F
@@ -3319,31 +3319,31 @@ msgctxt ""
msgid "To Add Automatic Numbering to a Heading Style"
msgstr ""
-#. Dxqw8
+#. Q2Dq4
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <menuitem>Tools - Chapter Numbering</menuitem>, and then click the <menuitem>Numbering</menuitem> tab."
msgstr ""
-#. 8RDya
+#. UuWGT
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155891\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Paragraph Style</item> box, select the heading style that you want to add chapter numbers to."
+msgid "In the <menuitem>Paragraph style</menuitem> box, select the heading style that you want to add chapter numbers to."
msgstr ""
-#. dGoy7
+#. EZW6q
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3150513\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Numbers</item> box, select the numbering style that you want to use, and then click <item type=\"menuitem\">OK</item>."
+msgid "In the <menuitem>Number</menuitem> box, select the numbering scheme that you want to use, and then click <menuitem>OK</menuitem>."
msgstr ""
#. EChDL
@@ -3364,13 +3364,22 @@ msgctxt ""
msgid "Click at the beginning of the text in the heading paragraph, after the number."
msgstr ""
-#. ZbJV9
+#. ABejd
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107D9\n"
"help.text"
-msgid "Press the Backspace key to delete the number."
+msgid "Press the <keycode>Backspace</keycode> key to delete the number."
+msgstr ""
+
+#. ycK3V
+#: chapter_numbering.xhp
+msgctxt ""
+"chapter_numbering.xhp\n"
+"par_id441614161571912\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> with the cursor at the beginning of the heading to return the number."
msgstr ""
#. itdUu
@@ -5470,13 +5479,13 @@ msgctxt ""
msgid "Click 'Page' in the <emph>Type</emph> list and 'Next page' in the <emph>Select</emph> list."
msgstr ""
-#. 4Y7oL
+#. gWQDr
#: footer_nextpage.xhp
msgctxt ""
"footer_nextpage.xhp\n"
"par_id3150517\n"
"help.text"
-msgid "Click a numbering style in the <item type=\"menuitem\">Format</item> list."
+msgid "Click a numbering scheme in the <menuitem>Format</menuitem> list."
msgstr ""
#. 9YJwh
@@ -6937,13 +6946,13 @@ msgctxt ""
msgid "To Create a Paragraph Style for Chapter Titles"
msgstr ""
-#. 8ScLd
+#. caxXE
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgid "Choose <menuitem>Tools - Chapter Numbering.</menuitem>"
msgstr ""
#. B8P3C
@@ -6955,13 +6964,13 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">Style</item> box, select the paragraph style that you want to use for chapter titles, for example, \"Heading 1\"."
msgstr ""
-#. u3oNh
+#. LoZJ2
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3147124\n"
"help.text"
-msgid "Select the numbering style for the chapter titles in the <item type=\"menuitem\">Number</item> box, for example, \"1,2,3...\"."
+msgid "Select the numbering scheme for the chapter titles in the <menuitem>Number</menuitem> box, for example, \"1,2,3...\"."
msgstr ""
#. AHCua
@@ -7774,13 +7783,13 @@ msgctxt ""
msgid "Position the cursor at the place where no hyphenation should occur."
msgstr ""
-#. pciJs
+#. eFYEG
#: hyphen_prevent.xhp
msgctxt ""
"hyphen_prevent.xhp\n"
"par_id0302200910262867\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Formatting Mark - No-width no break</item>."
+msgid "Choose <menuitem>Insert - Formatting Mark - Word Joiner</menuitem>."
msgstr ""
#. 6u4r9
@@ -8926,22 +8935,22 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr ""
-#. A74Fc
+#. FiGft
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <menuitem>Additional Styles</menuitem> check box in the <menuitem>Create from</menuitem> area, and then click the <menuitem>Assign styles</menuitem> button next to the check box. In the <menuitem>Assign Styles</menuitem> dialog, click the style in the list, and then click the <menuitem>>></menuitem> or the <menuitem><<</menuitem> button to define the outline level for the paragraph style."
msgstr ""
-#. a7Nyb
+#. mXE4E
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id1001574720273772\n"
"help.text"
-msgid "%PRODUCTNAME creates the table of contents entries based on the chapter level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
+msgid "%PRODUCTNAME creates the table of contents entries based on the outline level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
msgstr ""
#. Fdoe5
@@ -9619,31 +9628,31 @@ msgctxt ""
msgid "<bookmark_value>numbering; combining</bookmark_value> <bookmark_value>merging;numbered lists</bookmark_value> <bookmark_value>joining;numbered lists</bookmark_value> <bookmark_value>lists;combining numbered lists</bookmark_value> <bookmark_value>paragraphs;numbering non-consecutive</bookmark_value>"
msgstr ""
-#. aUM78
+#. uwK2S
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3150495\n"
"help.text"
-msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Numbered Lists</link></variable>"
+msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Ordered Lists</link></variable>"
msgstr ""
-#. ygDg8
+#. kFGF5
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3149692\n"
"help.text"
-msgid "You can combine numbered lists into a single consecutively numbered list."
+msgid "You can combine two ordered lists into a single list."
msgstr ""
-#. G4bPG
+#. 2mCAG
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3149452\n"
"help.text"
-msgid "To Combine Consecutive Numbered Lists"
+msgid "To Combine Two Ordered Lists"
msgstr ""
#. e25XR
@@ -9655,22 +9664,22 @@ msgctxt ""
msgid "Select all of the paragraphs in the lists."
msgstr ""
-#. FnnAw
+#. wTYyb
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3155911\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
msgstr ""
-#. huoiN
+#. yCERR
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3155870\n"
"help.text"
-msgid "To Create a Numbered List From Non-consecutive Paragraphs:"
+msgid "To Create a Ordered List From Non-consecutive Paragraphs"
msgstr ""
#. 3fmSg
@@ -9691,13 +9700,22 @@ msgctxt ""
msgid "Continue to hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and drag a selection in each numbered paragraph of the lists you want to combine."
msgstr ""
-#. mLFjo
+#. RaZCA
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3145102\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
+msgstr ""
+
+#. RNYoM
+#: join_numbered_lists.xhp
+msgctxt ""
+"join_numbered_lists.xhp\n"
+"par_id751615828987862\n"
+"help.text"
+msgid "To add selected paragraphs to an existing list, use <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
msgstr ""
#. rDMRb
@@ -10654,13 +10672,13 @@ msgctxt ""
msgid "All paragraph styles are based on the \"Default\" style."
msgstr ""
-#. zxroA
+#. 6Bnc6
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150931\n"
"help.text"
-msgid "Click the <emph>Outline & Numbering</emph> tab."
+msgid "Click the <emph>Outline & List</emph> tab."
msgstr ""
#. kfFgy
@@ -10744,13 +10762,13 @@ msgctxt ""
msgid "Click in a paragraph."
msgstr ""
-#. En2MK
+#. pvF59
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150721\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Outline & Numbering</item> tab."
+msgid "Choose <menuitem>Format - Paragraph</menuitem>, and then click the <menuitem>Outline & List</menuitem> tab."
msgstr ""
#. DB5Bp
@@ -10798,13 +10816,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">Tools - Line Numbering</link>"
msgstr ""
-#. y2EtS
+#. PG4ys
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Format - Paragraph - Numbering\">Format - Paragraph - Numbering</link>"
+msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
msgstr ""
#. foq8S
@@ -10816,13 +10834,13 @@ msgctxt ""
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
msgstr ""
-#. PngCd
+#. EQANu
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"tit\n"
"help.text"
-msgid "Modifying Numbering in a Numbered List"
+msgid "Modifying Numbering in an Ordered List"
msgstr ""
#. CZCFE
@@ -10834,40 +10852,31 @@ msgctxt ""
msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
-#. vsLZ8
+#. wER6G
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3149637\n"
"help.text"
-msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in a Numbered List</link></variable>"
+msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in an Ordered List</link></variable>"
msgstr ""
-#. UkDzC
+#. eP9Ei
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3145092\n"
"help.text"
-msgid "You can remove the numbering from a paragraph in a numbered list or change the number that a numbered list starts with."
+msgid "You can remove the numbering from a paragraph in an ordered list or change the number that an ordered list starts with."
msgstr ""
-#. 4arAA
-#: numbering_paras.xhp
-msgctxt ""
-"numbering_paras.xhp\n"
-"par_id2172612\n"
-"help.text"
-msgid "If you want numbered headings, use the <menuitem>Tools - Chapter Numbering</menuitem> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr ""
-
-#. XdFDM
+#. o2d3C
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3145107\n"
"help.text"
-msgid "To Remove the Number From a Paragraph in a Numbered List"
+msgid "To Remove the Number From a Paragraph in an Ordered List"
msgstr ""
#. Bdddz
@@ -10897,31 +10906,31 @@ msgctxt ""
msgid "To remove the number while preserving the indent of the paragraph, press the Backspace key."
msgstr ""
-#. vpCsg
+#. cszDd
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "To remove the number and the indent of the paragraph, click the <emph>Numbering on/off</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
+msgid "To remove the number and the indent of the paragraph, click the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
msgstr ""
-#. dHiFt
+#. 4sN9H
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3154856\n"
"help.text"
-msgid "To Change the Number That a Numbered List Starts With"
+msgid "To Change the Number That an Ordered List Starts With"
msgstr ""
-#. s3SHA
+#. rgBxU
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3155877\n"
"help.text"
-msgid "Click anywhere in the numbered list."
+msgid "Click anywhere in the ordered list."
msgstr ""
#. Nkqj8
@@ -12085,13 +12094,13 @@ msgctxt ""
msgid "Creating and Applying Page Styles"
msgstr ""
-#. BFGvL
+#. fPbBS
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"bm_id7071138\n"
"help.text"
-msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value>"
+msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value> <bookmark_value>overriding next style;for pages</bookmark_value>"
msgstr ""
#. MM4EQ
@@ -12211,6 +12220,15 @@ msgctxt ""
msgid "Click in the page that you want to apply the page style to."
msgstr ""
+#. vF8n9
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id471615462517274\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
#. GC7eD
#: pagestyles.xhp
msgctxt ""
@@ -12229,6 +12247,78 @@ msgctxt ""
msgid "Double-click a name in the list."
msgstr ""
+#. wAew8
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615460923756\n"
+"help.text"
+msgid "Right-click the page style displayed in the <link href=\"text/shared/01/03060000\" name=\"Status Bar\">Status Bar</link>. Select another page style."
+msgstr ""
+
+#. ombta
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"hd_id181615419889677\n"
+"help.text"
+msgid "To Manually Override the “Next style” of a Page Style"
+msgstr ""
+
+#. mX6AF
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615419994433\n"
+"help.text"
+msgid "Place cursor between the page with the page style and the page with the style specified in <emph>Next style</emph>."
+msgstr ""
+
+#. V4dVd
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id301615420000676\n"
+"help.text"
+msgid "Right-click and choose <menuitem>Edit Page Break</menuitem>."
+msgstr ""
+
+#. rsZHm
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id271615420006519\n"
+"help.text"
+msgid "Select the <emph>With page style</emph> checkbox."
+msgstr ""
+
+#. wdCZW
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615420013170\n"
+"help.text"
+msgid "Enter the page style to be applied."
+msgstr ""
+
+#. Fcn83
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id231615420303511\n"
+"help.text"
+msgid "See <link href=\"text/swriter/guide/pageorientation.xhp#scope\" name=\"Next Style\">Manually Defined Range of a Page style</link>."
+msgstr ""
+
+#. 2BGUb
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615463137607\n"
+"help.text"
+msgid "A special situation arises when a <emph>Next style</emph> is different than the page style itself, and you want to apply that page style to two consecutive pages. For example, if you have applied <emph>First Page</emph> style to a page, and want to apply First Page style again to the immediately following page, then you must manually override First Page style, because it is configured to be followed by <emph>Default Page Style</emph>."
+msgstr ""
+
#. enqf2
#: pagestyles.xhp
msgctxt ""
@@ -18322,13 +18412,13 @@ msgctxt ""
msgid "Adding Bullets"
msgstr ""
-#. npXYA
+#. 6sLBy
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"bm_id3155186\n"
"help.text"
-msgid "<bookmark_value>bullet lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</bookmark_value>"
+msgid "<bookmark_value>unordered lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</bookmark_value>"
msgstr ""
#. fHxYh
@@ -18358,22 +18448,22 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add bullets to."
msgstr ""
-#. SjDdr
+#. qaN2Z
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3149635\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Bullets On/Off</item> icon <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">Icon</alt></image> (Shift-F12)."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Unordered List</menuitem> icon (<keycode>Shift+F12</keycode>)."
msgstr ""
-#. fd4ap
+#. nQCke
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3145403\n"
"help.text"
-msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Bullets On/Off</emph> icon on the <emph>Formatting</emph> Bar."
+msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Toggle Unordered List</emph> icon on the <emph>Formatting</emph> Bar."
msgstr ""
#. HpLDk
@@ -18385,22 +18475,22 @@ msgctxt ""
msgid "To Format Bullets"
msgstr ""
-#. eLxDt
+#. gUFZk
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3154416\n"
"help.text"
-msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>."
+msgid "To change the formatting of an unordered list, choose <menuitem>Format - Bullets and Numbering</menuitem>."
msgstr ""
-#. wyMSC
+#. qZ6Zu
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3153390\n"
"help.text"
-msgid "Click on the <item type=\"menuitem\">Bullet</item> tab or the <item type=\"menuitem\">Image</item> tab, and then select a symbol style in the <item type=\"menuitem\">Selection</item> area."
+msgid "Click on the <menuitem>Unordered</menuitem> tab or the <menuitem>Image</menuitem> tab, and then select a symbol style in the <menuitem>Selection</menuitem> area."
msgstr ""
#. XtKb5
@@ -18421,13 +18511,13 @@ msgctxt ""
msgid "Adding Numbering"
msgstr ""
-#. UTBpr
+#. pGetS
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"bm_id3147418\n"
"help.text"
-msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs; numbering on/off</bookmark_value> <bookmark_value>formatting;numbered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
+msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs;toggle ordered list</bookmark_value> <bookmark_value>formatting;ordered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
msgstr ""
#. ZPrUH
@@ -18457,76 +18547,112 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add numbering to."
msgstr ""
-#. TZrEV
+#. PAGDn
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id181615764064889\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. B2NZk
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3149968\n"
"help.text"
-msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Numbered List</emph> icon (<keycode>F12</keycode>)."
+msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Ordered List</emph> icon (<keycode>F12</keycode>)"
msgstr ""
-#. seYCG
+#. dpmx5
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id3149573\n"
+"par_id211615764184529\n"
"help.text"
-msgid "To change the formatting and the hierarchy of a numbered list, click in the list, and then open the <emph>Bullets and Numbering</emph> toolbar."
+msgid "Right-click, choose <menuitem>Lists</menuitem>, then select a list style."
msgstr ""
-#. cBsKj
+#. dQ6VP
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id91611756820703\n"
+"par_id941615766439690\n"
"help.text"
-msgid "<image src=\"cmd/lc_defaultnumbering.png\" id=\"img_id531611756820703\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id961611756820703\">Toggle Numbered List Icon</alt></image>"
+msgid "A <link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Paragraph Style\">paragraph style</link> can be configured to add numbering."
msgstr ""
-#. 8rCsx
+#. 96JB9
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id141611756820703\n"
+"hd_id861615765870820\n"
"help.text"
-msgid "Toggle Numbered List"
+msgid "To Remove Paragraphs from an Ordered List"
msgstr ""
-#. 4KDug
+#. PwFjK
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3153365\n"
"help.text"
-msgid "To remove numbering, select the numbered paragraphs, and then click the <emph>Toggle Numbered List</emph> icon on the <emph>Formatting</emph> Bar."
+msgid "To remove numbering, select the numbered paragraphs, then click the <emph>Toggle Ordered List</emph> icon or the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar."
msgstr ""
-#. SWoqA
+#. iFCsz
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"hd_id3154233\n"
"help.text"
-msgid "To Format a Numbered List"
+msgid "To Format an Ordered List"
msgstr ""
-#. AXMM3
+#. XpCAC
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3154246\n"
"help.text"
-msgid "To change the formatting of a numbered list, click in the list, then choose <emph>Format - Bullets and Numbering</emph>."
+msgid "To change the formatting of a numbered list, do one of the following:"
+msgstr ""
+
+#. ctBEK
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id801615765243022\n"
+"help.text"
+msgid "Click in the list, then choose <menuitem>Format - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. ThdUE
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id161615765280165\n"
+"help.text"
+msgid "Right-click in the list, then choose <menuitem>Lists - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. xgmVR
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id3149573\n"
+"help.text"
+msgid "To change the hierarchy of an ordered list, click in the list, then use the icons in the <emph>Bullets and Numbering</emph> toolbar."
msgstr ""
-#. 9MZVK
+#. y2KEo
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id21611757614734\n"
"help.text"
-msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Numbered List</emph> twice."
+msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Ordered List</emph> twice. Any formatting on the pasted item is reset to default."
msgstr ""
#. MAprK
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office.po b/source/ar/officecfg/registry/data/org/openoffice/Office.po
index 28c0f017299..5d34f9ae4d1 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2021-02-19 21:36+0000\n"
+"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022440.000000\n"
#. HhMVS
@@ -98,14 +98,13 @@ msgstr ""
#. 6BbAU
#: Addons.xcu
-#, fuzzy
msgctxt ""
"Addons.xcu\n"
".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n"
"Title\n"
"value.text"
msgid "Logo command line (press Enter for command execution or F1 for help)"
-msgstr "شعار سطر الأوامر (اضغط على إدخال لتنفيذ الأمر أو F1 للحصول على تعليمات)"
+msgstr "سطر أوامر لوغو (اضغط على إدخال لتنفيذ الأمر أو F1 للحصول على مساعدة)"
#. CXFcL
#: Addons.xcu
@@ -215,7 +214,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "B~usiness Cards"
-msgstr ""
+msgstr "~بطاقات عمل"
#. JPTt8
#: Common.xcu
@@ -225,7 +224,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "M~aster Document"
-msgstr ""
+msgstr "مستند ~رئيس"
#. vVFd6
#: Common.xcu
@@ -325,7 +324,7 @@ msgctxt ""
"LastName\n"
"value.text"
msgid "Last Name"
-msgstr "الاسم الأخير"
+msgstr "لقب‌ الشهرة"
#. EZWkG
#: DataAccess.xcu
@@ -2169,14 +2168,13 @@ msgstr "إظهار نظرة عامة على الشرائح"
#. LpzsF
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.x\n"
"Left\n"
"value.text"
msgid "Ctrl-'4'"
-msgstr "Ctrl-'1'"
+msgstr "تحكّم-'4'"
#. SCQbh
#: PresenterScreen.xcu
@@ -2326,7 +2324,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف الفئة"
#. DSPes
#: TableWizard.xcu
@@ -2336,7 +2334,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف الفئة"
#. xEMQw
#: TableWizard.xcu
@@ -2346,7 +2344,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr "CategoryName"
+msgstr "اسم الفئة"
#. MbNHE
#: TableWizard.xcu
@@ -2356,7 +2354,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategName"
-msgstr "CategName"
+msgstr "اسم‌فئة"
#. WDrG3
#: TableWizard.xcu
@@ -2366,7 +2364,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Products"
-msgstr "المنتجات"
+msgstr "المنتَجات"
#. RkFwb
#: TableWizard.xcu
@@ -2376,7 +2374,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "معرّف المنتَج"
#. GSBpp
#: TableWizard.xcu
@@ -2386,7 +2384,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "معرّف المنتَج"
#. 97F6C
#: TableWizard.xcu
@@ -2396,7 +2394,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductName"
-msgstr "ProductName"
+msgstr "اسم‌المنتَج"
#. zraYR
#: TableWizard.xcu
@@ -2406,7 +2404,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProdName"
-msgstr "ProdName"
+msgstr "اسم‌منتَج"
#. g3BsG
#: TableWizard.xcu
@@ -2416,7 +2414,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductDescription"
-msgstr "ProductDescription"
+msgstr "وصف‌المنتَج"
#. CJXCi
#: TableWizard.xcu
@@ -2426,7 +2424,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProdDescr"
-msgstr "ProdDescr"
+msgstr "وصف‌منتَج"
#. B5osD
#: TableWizard.xcu
@@ -2436,7 +2434,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف‌الفئة"
#. BN3ED
#: TableWizard.xcu
@@ -2446,7 +2444,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف‌الفئة"
#. d6dbD
#: TableWizard.xcu
@@ -2456,7 +2454,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "معرّف‌المجهّز"
#. dBDCQ
#: TableWizard.xcu
@@ -2466,7 +2464,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "معرّف‌المجهّز"
#. tZWpm
#: TableWizard.xcu
@@ -2476,7 +2474,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Serialnumber"
-msgstr "Serialnumber"
+msgstr "الرقم‌التسلسلي"
#. PDfnC
#: TableWizard.xcu
@@ -2486,7 +2484,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SerialNo"
-msgstr "SerialNo"
+msgstr "رقم‌تسلسلي"
#. AZojE
#: TableWizard.xcu
@@ -2496,7 +2494,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitsInStock"
-msgstr "UnitsInStock"
+msgstr "وحدات‌في‌المخزون"
#. 97AFF
#: TableWizard.xcu
@@ -2506,7 +2504,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitsStock"
-msgstr "UnitsStock"
+msgstr "وحدات‌مخزون"
#. fkNjC
#: TableWizard.xcu
@@ -2516,7 +2514,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitsOnOrder"
-msgstr "UnitsOnOrder"
+msgstr "وحدات‌قيد‌الطلب"
#. 23szD
#: TableWizard.xcu
@@ -2526,7 +2524,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitsOrder"
-msgstr "UnitsOrder"
+msgstr "وحدات‌طلب"
#. dAunB
#: TableWizard.xcu
@@ -2536,7 +2534,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "سعر‌الوحدة"
#. eGtxt
#: TableWizard.xcu
@@ -2546,7 +2544,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "سعر‌الوحدة"
#. KqcS7
#: TableWizard.xcu
@@ -2556,7 +2554,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ReorderLevel"
-msgstr "ReorderLevel"
+msgstr "مستوى‌إعادةالطلب"
#. bqDNZ
#: TableWizard.xcu
@@ -2566,7 +2564,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ReordLevel"
-msgstr "ReordLevel"
+msgstr "مستوى‌إعادةطلب"
#. cCJQe
#: TableWizard.xcu
@@ -2576,7 +2574,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Discontinued"
-msgstr "Discontinued"
+msgstr "موقَف"
#. ARETj
#: TableWizard.xcu
@@ -2586,7 +2584,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Discontin"
-msgstr "Discontin"
+msgstr "موقَف"
#. DAruv
#: TableWizard.xcu
@@ -2626,7 +2624,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "معرّف‌المجهّز"
#. 9zuNX
#: TableWizard.xcu
@@ -2636,7 +2634,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplierID"
-msgstr "SupplierID"
+msgstr "معرّف‌المجهّز"
#. 3cftq
#: TableWizard.xcu
@@ -2646,7 +2644,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SupplierName"
-msgstr "SupplierName"
+msgstr "اسم‌المجهّز"
#. gy5rG
#: TableWizard.xcu
@@ -2656,7 +2654,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SupplName"
-msgstr "SupplName"
+msgstr "اسم‌مجهّز"
#. vTPJj
#: TableWizard.xcu
@@ -2666,7 +2664,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ContactName"
-msgstr "ContactName"
+msgstr "اسم‌جهة‌الاتصال"
#. wGpqC
#: TableWizard.xcu
@@ -2676,7 +2674,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ContctName"
-msgstr "ContctName"
+msgstr "اسم‌جهة‌اتصال"
#. VP49N
#: TableWizard.xcu
@@ -2686,7 +2684,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ContactTitle"
-msgstr "ContactTitle"
+msgstr "كنيةجهة‌الاتصال"
#. ZHx9j
#: TableWizard.xcu
@@ -2696,7 +2694,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ContctTitl"
-msgstr "ContctTitl"
+msgstr "كنيةجهة‌اتصال"
#. tsUqe
#: TableWizard.xcu
@@ -2746,7 +2744,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "الرمزالبريدي"
#. KvC6p
#: TableWizard.xcu
@@ -2756,7 +2754,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "الرمزالبريدي"
#. Pb9ix
#: TableWizard.xcu
@@ -2766,7 +2764,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ولايةأومحافظة"
#. L2kTq
#: TableWizard.xcu
@@ -2776,7 +2774,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ولايةمحافظة"
#. 7vbwU
#: TableWizard.xcu
@@ -2786,7 +2784,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "بلدأومنطقة"
#. DD6BN
#: TableWizard.xcu
@@ -2796,7 +2794,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "بلدمنطقة"
#. S54BS
#: TableWizard.xcu
@@ -2806,7 +2804,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "رقم‌الهاتف"
#. Q84gW
#: TableWizard.xcu
@@ -2816,7 +2814,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "رقم‌هاتف"
#. x2pEX
#: TableWizard.xcu
@@ -2826,7 +2824,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "رقم‌الفاكس"
#. E3GV3
#: TableWizard.xcu
@@ -2836,7 +2834,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "رقم‌فاكس"
#. CTw9G
#: TableWizard.xcu
@@ -2846,7 +2844,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PaymentTerms"
-msgstr "PaymentTerms"
+msgstr "بنودالدفع"
#. 6o6vG
#: TableWizard.xcu
@@ -2856,7 +2854,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PaymntTerm"
-msgstr "PaymntTerm"
+msgstr "بنوددفع"
#. JyCyG
#: TableWizard.xcu
@@ -2866,7 +2864,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "EmailAddress"
-msgstr "EmailAddress"
+msgstr "البريدالالكتروني"
#. zwHpn
#: TableWizard.xcu
@@ -2876,7 +2874,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "EmailAddr"
-msgstr "EmailAddr"
+msgstr "بريدالكتروني"
#. hADDx
#: TableWizard.xcu
@@ -2906,7 +2904,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MailingList"
-msgstr "MailingList"
+msgstr "قائمةبريد"
#. jky3u
#: TableWizard.xcu
@@ -2916,7 +2914,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MailingListID"
-msgstr "MailingListID"
+msgstr "معرّف‌قائمةبريد"
#. TTFZc
#: TableWizard.xcu
@@ -2926,7 +2924,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MailingID"
-msgstr "MailingID"
+msgstr "معرّف‌بريد"
#. pyP93
#: TableWizard.xcu
@@ -2956,7 +2954,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "الاسم‌الاول"
#. PCZTC
#: TableWizard.xcu
@@ -2966,7 +2964,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FirstName"
-msgstr "FirstName"
+msgstr "اسم‌اول"
#. Bnv2f
#: TableWizard.xcu
@@ -2976,7 +2974,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MiddleName"
-msgstr "MiddleName"
+msgstr "الاسم‌الاوسط"
#. mDGzN
#: TableWizard.xcu
@@ -2986,7 +2984,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MiddleName"
-msgstr "MiddleName"
+msgstr "اسم‌اوسط"
#. Es6Cc
#: TableWizard.xcu
@@ -2996,7 +2994,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. bmrdH
#: TableWizard.xcu
@@ -3006,7 +3004,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. yjZCw
#: TableWizard.xcu
@@ -3136,7 +3134,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ولايةأومحافظة"
#. bCtze
#: TableWizard.xcu
@@ -3146,7 +3144,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ولايةمحافظة"
#. opTNs
#: TableWizard.xcu
@@ -3156,7 +3154,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "بلدأومنطقة"
#. yKEd8
#: TableWizard.xcu
@@ -3166,7 +3164,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "بلدمنطقة"
#. PRTbv
#: TableWizard.xcu
@@ -3196,7 +3194,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "رقم‌الفاكس"
#. NTzW3
#: TableWizard.xcu
@@ -3206,7 +3204,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "رقم‌فاكس"
#. 8eqkq
#: TableWizard.xcu
@@ -3216,7 +3214,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "رقم‌الجوال"
#. r4uTd
#: TableWizard.xcu
@@ -3226,7 +3224,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "رقم‌جوال"
#. 8EQGZ
#: TableWizard.xcu
@@ -3256,7 +3254,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. DpbEZ
#: TableWizard.xcu
@@ -3266,7 +3264,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. DiuoZ
#: TableWizard.xcu
@@ -3526,7 +3524,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. px2EF
#: TableWizard.xcu
@@ -3536,7 +3534,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. dFGLe
#: TableWizard.xcu
@@ -3626,7 +3624,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ولايةأومحافظة"
#. FmUCY
#: TableWizard.xcu
@@ -3636,7 +3634,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ولايةمحافظة"
#. CFsHm
#: TableWizard.xcu
@@ -3646,7 +3644,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "بلدأومنطقة"
#. JTFSE
#: TableWizard.xcu
@@ -3656,7 +3654,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "بلدمنطقة"
#. 2TV22
#: TableWizard.xcu
@@ -3686,7 +3684,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "رقم‌الفاكس"
#. bH6b2
#: TableWizard.xcu
@@ -3696,7 +3694,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "رقم‌فاكس"
#. JADDL
#: TableWizard.xcu
@@ -3706,7 +3704,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "رقم‌الجوال"
#. NrcEd
#: TableWizard.xcu
@@ -3716,7 +3714,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "رقم‌جوال"
#. JjtjB
#: TableWizard.xcu
@@ -3766,7 +3764,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. DaDRX
#: TableWizard.xcu
@@ -3776,7 +3774,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. LHvdQ
#: TableWizard.xcu
@@ -3976,7 +3974,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CompanyName"
-msgstr "اسم الشركة"
+msgstr "اسم‌الشركة"
#. LtYAX
#: TableWizard.xcu
@@ -3986,7 +3984,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CompnyName"
-msgstr "اسم الشركة"
+msgstr "اسم‌شركة"
#. Cdh9H
#: TableWizard.xcu
@@ -4116,7 +4114,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "ولاية او محافظة"
+msgstr "ولايةأومحافظة"
#. EzF6m
#: TableWizard.xcu
@@ -4126,7 +4124,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "ولاية محافظة"
+msgstr "ولايةمحافظة"
#. BwFKY
#: TableWizard.xcu
@@ -4136,7 +4134,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "بلد او منطقة"
+msgstr "بلدأومنطقة"
#. MCsgJ
#: TableWizard.xcu
@@ -4146,7 +4144,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "بلد منطقة"
+msgstr "بلدمنطقة"
#. h9GMq
#: TableWizard.xcu
@@ -4176,7 +4174,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "رقم الفاكس"
+msgstr "رقم‌الفاكس"
#. 9qtCa
#: TableWizard.xcu
@@ -4186,7 +4184,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "رقم فاكس"
+msgstr "رقم‌فاكس"
#. kbBNB
#: TableWizard.xcu
@@ -4196,7 +4194,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "رقم الجوال"
+msgstr "رقم‌الجوال"
#. 3Rt7A
#: TableWizard.xcu
@@ -4346,7 +4344,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. vgGDB
#: TableWizard.xcu
@@ -4356,7 +4354,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. FeJAR
#: TableWizard.xcu
@@ -4546,7 +4544,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ولايةأومحافظة"
#. BaA5m
#: TableWizard.xcu
@@ -4556,7 +4554,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ولايةمحافظة"
#. GFCJY
#: TableWizard.xcu
@@ -4566,7 +4564,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "بلدأومنطقة"
#. NtxhJ
#: TableWizard.xcu
@@ -4576,7 +4574,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "بلدمنطقة"
#. VJN6T
#: TableWizard.xcu
@@ -4586,7 +4584,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "رقم‌الهاتف"
#. MFCDP
#: TableWizard.xcu
@@ -4596,7 +4594,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PhoneNo"
-msgstr "PhoneNo"
+msgstr "رقم‌هاتف"
#. CaqN8
#: TableWizard.xcu
@@ -4606,7 +4604,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "رقم‌الفاكس"
#. WZTt7
#: TableWizard.xcu
@@ -4616,7 +4614,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "رقم‌فاكس"
#. XBaAK
#: TableWizard.xcu
@@ -4626,7 +4624,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "رقم‌الجوال"
#. uPPF9
#: TableWizard.xcu
@@ -4636,7 +4634,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "رقم‌جوال"
#. BGoki
#: TableWizard.xcu
@@ -4646,7 +4644,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. FgEa7
#: TableWizard.xcu
@@ -4656,7 +4654,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. EqHuQ
#: TableWizard.xcu
@@ -5056,7 +5054,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipCity"
-msgstr "ShipCity"
+msgstr "مدينةالشحن"
#. 5sLAQ
#: TableWizard.xcu
@@ -5066,7 +5064,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ShipCity"
-msgstr "ShipCity"
+msgstr "مدينةالشحن"
#. ChHem
#: TableWizard.xcu
@@ -5076,7 +5074,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipStateOrProvince"
-msgstr "ShipStateOrProvince"
+msgstr "ولايةأومحافظةالشحن"
#. h96Fc
#: TableWizard.xcu
@@ -5286,7 +5284,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "معرّف المنتَج"
#. pUve6
#: TableWizard.xcu
@@ -5296,7 +5294,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "معرّف المنتَج"
#. 3Azty
#: TableWizard.xcu
@@ -5306,7 +5304,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "تاريخ بيع"
#. HBgBM
#: TableWizard.xcu
@@ -5316,7 +5314,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "تاريخ بيع"
#. yAv7W
#: TableWizard.xcu
@@ -6176,7 +6174,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "معرّف المنتَج"
#. abY8X
#: TableWizard.xcu
@@ -6186,7 +6184,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "ProductID"
-msgstr "ProductID"
+msgstr "معرّف المنتَج"
#. y2d6A
#: TableWizard.xcu
@@ -7636,7 +7634,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationCity"
-msgstr "DestinationCity"
+msgstr "مدينةالوجهة"
#. Efxpf
#: TableWizard.xcu
@@ -7646,7 +7644,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DestinCity"
-msgstr "DestinCity"
+msgstr "مدينةالوجهة"
#. DACJL
#: TableWizard.xcu
@@ -7656,7 +7654,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationStateProvince"
-msgstr "DestinationStateProvince"
+msgstr "ولايةأومحافظةالوجهة"
#. uLVeW
#: TableWizard.xcu
@@ -8206,7 +8204,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "تاريخ بيع"
#. VHLzZ
#: TableWizard.xcu
@@ -8216,7 +8214,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DateSold"
-msgstr "DateSold"
+msgstr "تاريخ بيع"
#. yEJDv
#: TableWizard.xcu
@@ -8936,7 +8934,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr "CategoryName"
+msgstr "اسم الفئة"
#. z63pH
#: TableWizard.xcu
@@ -8946,7 +8944,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategName"
-msgstr "CategName"
+msgstr "اسم‌فئة"
#. j8c7b
#: TableWizard.xcu
@@ -9006,7 +9004,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. hyxKi
#: TableWizard.xcu
@@ -9016,7 +9014,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. nR9MD
#: TableWizard.xcu
@@ -9106,7 +9104,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ولايةأومحافظة"
#. LfFya
#: TableWizard.xcu
@@ -9116,7 +9114,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ولايةمحافظة"
#. 7AFVw
#: TableWizard.xcu
@@ -9126,7 +9124,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "بلدأومنطقة"
#. DyUE4
#: TableWizard.xcu
@@ -9136,7 +9134,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CountryReg"
-msgstr "CountryReg"
+msgstr "بلدمنطقة"
#. bieQa
#: TableWizard.xcu
@@ -9166,7 +9164,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "FaxNumber"
-msgstr "FaxNumber"
+msgstr "رقم‌الفاكس"
#. qihaY
#: TableWizard.xcu
@@ -9176,7 +9174,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "FaxNo"
-msgstr "FaxNo"
+msgstr "رقم‌فاكس"
#. vi58V
#: TableWizard.xcu
@@ -9186,7 +9184,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MobileNumber"
-msgstr "MobileNumber"
+msgstr "رقم‌الجوال"
#. CA36T
#: TableWizard.xcu
@@ -9196,7 +9194,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MobileNo"
-msgstr "MobileNo"
+msgstr "رقم‌جوال"
#. v9ftm
#: TableWizard.xcu
@@ -9246,7 +9244,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. tQEhY
#: TableWizard.xcu
@@ -9256,7 +9254,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. XmKRD
#: TableWizard.xcu
@@ -11876,7 +11874,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. TFspR
#: TableWizard.xcu
@@ -11886,7 +11884,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LastName"
-msgstr "LastName"
+msgstr "اسم العائلة"
#. LGZss
#: TableWizard.xcu
@@ -11916,7 +11914,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. 2HAuD
#: TableWizard.xcu
@@ -11926,7 +11924,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthdate"
-msgstr "Birthdate"
+msgstr "تاريخ‌الميلاد"
#. bRu4G
#: TableWizard.xcu
@@ -11936,7 +11934,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Birthplace"
-msgstr "Birthplace"
+msgstr "مكان‌الميلاد"
#. jBw8e
#: TableWizard.xcu
@@ -11946,7 +11944,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Birthplace"
-msgstr "Birthplace"
+msgstr "مكان‌الميلاد"
#. tgPTP
#: TableWizard.xcu
@@ -11956,7 +11954,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DateofDeath"
-msgstr "DateofDeath"
+msgstr "تاريخ‌الوفاة"
#. tCgGF
#: TableWizard.xcu
@@ -11966,7 +11964,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatofDeath"
-msgstr "DatofDeath"
+msgstr "تاريخ‌الوفاة"
#. dkGCG
#: TableWizard.xcu
@@ -11976,7 +11974,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TrainingLocation"
-msgstr "TrainingLocation"
+msgstr "مكان‌التدريب"
#. rj7yq
#: TableWizard.xcu
@@ -11986,7 +11984,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TraininLoc"
-msgstr "TraininLoc"
+msgstr "مكان‌التدريب"
#. BpvXK
#: TableWizard.xcu
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index a859ae1486d..dfce62ef21a 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ar/>\n"
"Language: ar\n"
@@ -454,7 +454,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Formula Object"
-msgstr ""
+msgstr "أدرِج كائن الصيغة"
#. Ui6br
#: CalcCommands.xcu
@@ -1296,14 +1296,24 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "حدّد الخلايا غير المحمية"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
+msgid "Select Visible Rows Only"
+msgstr ""
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
msgstr ""
#. LEvrC
@@ -3176,15 +3186,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "تنسيق ال~صفحة..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "الص~فحة..."
+msgid "~Page Style..."
+msgstr ""
#. C83UC
#: CalcCommands.xcu
@@ -9465,6 +9475,26 @@ msgctxt ""
msgid "Layout"
msgstr "التخطيط"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10376,7 +10406,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Notes Layout..."
-msgstr ""
+msgstr "تخطيط الملاحظات الرئيسة..."
#. FzmHt
#: DrawImpressCommands.xcu
@@ -10386,7 +10416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Handout Layout..."
-msgstr ""
+msgstr "تخطيط المنشورات الرئيسة..."
#. n3pZ9
#: DrawImpressCommands.xcu
@@ -16137,7 +16167,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Fontwork Text"
-msgstr ""
+msgstr "أدرج نص معمل الخطوط"
#. xaHfX
#: GenericCommands.xcu
@@ -16207,7 +16237,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Basic Shapes"
-msgstr ""
+msgstr "أشكال أساسية"
#. MCJkK
#: GenericCommands.xcu
@@ -20671,34 +20701,24 @@ msgctxt ""
msgid "Background Color"
msgstr "لون الخلفية"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -21290,7 +21310,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "طُرُز الجداول"
#. GF4U9
#: GenericCommands.xcu
@@ -21540,7 +21560,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save Document as URL"
-msgstr "احفظ المستند كمسار"
+msgstr "احفظ المستند كمسار URL"
#. a7yVj
#: GenericCommands.xcu
@@ -21664,7 +21684,6 @@ msgstr "أدرج تسميات"
#. aUHaf
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertBusinessCard\n"
@@ -23423,15 +23442,15 @@ msgctxt ""
msgid "~Export As"
msgstr "~صدّر كَ‍"
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export as PDF"
+msgstr ""
#. YsFV2
#: GenericCommands.xcu
@@ -23453,15 +23472,15 @@ msgctxt ""
msgid "Export as PDF"
msgstr "صدّر بنسق PDF"
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export Directly as PDF"
+msgstr ""
#. 8eSWp
#: GenericCommands.xcu
@@ -24723,7 +24742,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh document layout"
-msgstr ""
+msgstr "أعد تحميل تخطيط المستند"
#. V8JAY
#: GenericCommands.xcu
@@ -25173,7 +25192,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a dialog to select the user interface"
-msgstr ""
+msgstr "يُظهر حواريا لتحديد واجهة المستخدم"
#. uQVBR
#: GenericCommands.xcu
@@ -25545,15 +25564,15 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
-msgstr "أداة التطوير"
+msgid "Development Tools"
+msgstr ""
#. jLF5j
#: GenericCommands.xcu
@@ -26135,14 +26154,14 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr ""
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
+msgid "Word ~Joiner"
msgstr ""
#. UvwGS
@@ -33442,6 +33461,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "أعِد بدء الترقيم"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33672,6 +33701,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "حدّد الفقرة"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -33952,16 +33991,6 @@ msgctxt ""
msgid "Fields"
msgstr "الحقول"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "لون النص المبرز"
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34412,15 +34441,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "وضع التحديد"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "أكمل الترقيم السابق"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr ""
#. oCEjg
#: WriterCommands.xcu
@@ -37852,7 +37891,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Basic Shapes"
-msgstr "الأشكال الأساسية"
+msgstr "أشكال أساسية"
#. yHPLZ
#: WriterWindowState.xcu
diff --git a/source/ar/oox/messages.po b/source/ar/oox/messages.po
index fffd98995c6..b7d493e9f0a 100644
--- a/source/ar/oox/messages.po
+++ b/source/ar/oox/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/ooxmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
#. C5e9E
#: oox/inc/strings.hrc:15
@@ -30,12 +30,12 @@ msgstr "عنوان المحور"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -45,37 +45,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -85,9 +85,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/readlicense_oo/docs.po b/source/ar/readlicense_oo/docs.po
index 5702ba7278f..3525ee2cc5b 100644
--- a/source/ar/readlicense_oo/docs.po
+++ b/source/ar/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2021-02-13 19:36+0000\n"
+"PO-Revision-Date: 2021-03-19 16:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022443.000000\n"
#. q6Gg3
@@ -473,7 +473,7 @@ msgctxt ""
"linuxlangpack1\n"
"readmeitem.text"
msgid "Download the language pack for your desired language and platform. They are available from the same location as the main installation archive. From the Nautilus file manager, extract the downloaded archive into a directory (your desktop, for instance). Ensure that you have exited all ${PRODUCTNAME} applications (including the QuickStarter, if it is started)."
-msgstr "نزل حزمة اللغة المرغوبة للغتك وبيئتك. تلك الحزم متوفرة من نفس مكان أرشيف التثبيت الرئيسي. من مدير ملفات Nautilus، استخرج الأرشيف المنزل في دليل (سطح المكتب، مثلاٌ). تأكد من أنك خرجت من كل تطبيقات ${PRODUCTNAME} (بما في ذلك التشغيل السريع، إذا كان قد بدأ)."
+msgstr "نزل حزمة اللغة للّغة والمنصة المرغوبة. تلك الحزم متوفرة من نفس مكان أرشيف التثبيت الرئيسي. من مدير ملفات Nautilus، استخرج الأرشيف المنزّل إلى دليل ملفات (في سطح المكتب، مثلاٌ). تأكد من أنك خرجت من كل تطبيقات ${PRODUCTNAME} (بما في ذلك التشغيل السريع، إذا كان قد بدأ)."
#. uQM2g
#: readme.xrm
diff --git a/source/ar/reportdesign/messages.po b/source/ar/reportdesign/messages.po
index a7c4f94598e..3d818b61d29 100644
--- a/source/ar/reportdesign/messages.po
+++ b/source/ar/reportdesign/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:56+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1518296086.000000\n"
#. FBVr9
@@ -180,12 +180,12 @@ msgstr "وسط"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -195,37 +195,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -235,12 +235,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. NaDFE
#: reportdesign/inc/strings.hrc:25
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index 04b44c97050..b5fd86788e3 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-19 16:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022445.000000\n"
#. kBovX
@@ -36,7 +36,6 @@ msgstr "مالية"
#. HVWFu
#: sc/inc/compiler.hrc:30
-#, fuzzy
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Information"
msgstr "معلومات"
@@ -67,14 +66,12 @@ msgstr "الإحصائية"
#. vYqjB
#: sc/inc/compiler.hrc:35
-#, fuzzy
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Spreadsheet"
msgstr "جدول مُمتد"
#. ZUnEM
#: sc/inc/compiler.hrc:36
-#, fuzzy
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Text"
msgstr "النص"
@@ -88,12 +85,12 @@ msgstr "الإضافات"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -103,37 +100,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -143,12 +140,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. BDDVk
#. * This file is reserved for string IDs of permanently loaded resident string
@@ -208,13 +205,13 @@ msgstr "حذف"
#: sc/inc/globstr.hrc:43
msgctxt "STR_UNDO_SELATTR"
msgid "Attributes"
-msgstr "السمات"
+msgstr "الصفات"
#. cbfQK
#: sc/inc/globstr.hrc:44
msgctxt "STR_UNDO_SELATTRLINES"
msgid "Attributes/Lines"
-msgstr "السمات/الخطوط"
+msgstr "الصفات/الخطوط"
#. xGiQs
#: sc/inc/globstr.hrc:45
@@ -274,7 +271,7 @@ msgstr "استبدال"
#: sc/inc/globstr.hrc:54
msgctxt "STR_UNDO_CURSORATTR"
msgid "Attributes"
-msgstr "السمات"
+msgstr "الصفات"
#. y7oGy
#: sc/inc/globstr.hrc:55
@@ -532,7 +529,7 @@ msgstr "الحجم الأصلي"
#: sc/inc/globstr.hrc:97
msgctxt "STR_UNDO_FITCELLSIZE"
msgid "Fit to Cell Size"
-msgstr ""
+msgstr "وائِم إلى حجم الخلية"
#. SzED2
#: sc/inc/globstr.hrc:98
@@ -21113,10 +21110,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "الصّيغة"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -25203,231 +25200,231 @@ msgid "No solution was found."
msgstr "لم يوجد أي حل."
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ar/scaddins/messages.po b/source/ar/scaddins/messages.po
index 1607b537372..7b2171e73b4 100644
--- a/source/ar/scaddins/messages.po
+++ b/source/ar/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: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1516047279.000000\n"
#. i8Y7Z
@@ -4062,12 +4062,12 @@ msgstr "الجدول"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -4077,37 +4077,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -4117,12 +4117,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. VGRBw
#: scaddins/inc/datefunc.hrc:27
diff --git a/source/ar/sccomp/messages.po b/source/ar/sccomp/messages.po
index 8ee5dba2ff4..f5e131e516a 100644
--- a/source/ar/sccomp/messages.po
+++ b/source/ar/sccomp/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sccompmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1511366208.000000\n"
#. whDxm
@@ -103,12 +103,12 @@ msgstr "وصلتُ إلى حدّ الزمن."
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -118,37 +118,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -158,9 +158,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/scp2/source/math.po b/source/ar/scp2/source/math.po
index d49721b2510..8c8cd84dfb1 100644
--- a/source/ar/scp2/source/math.po
+++ b/source/ar/scp2/source/math.po
@@ -3,19 +3,20 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2017-02-15 14:11+0000\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcemath/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1487167912.000000\n"
+#. hBjNe
#: folderitem_math.ulf
msgctxt ""
"folderitem_math.ulf\n"
@@ -24,6 +25,7 @@ msgctxt ""
msgid "Create and edit scientific formulas and equations by using Math."
msgstr "إنشاء الصيغ العلمية و المعادلات و تحريرها باستخدام ماث."
+#. GhCeF
#: module_math.ulf
msgctxt ""
"module_math.ulf\n"
@@ -32,6 +34,7 @@ msgctxt ""
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME ماث"
+#. AhgCA
#: module_math.ulf
msgctxt ""
"module_math.ulf\n"
@@ -40,6 +43,7 @@ msgctxt ""
msgid "Create and edit scientific formulas and equations by using %PRODUCTNAME Math."
msgstr "إنشاء الصيغ العلمية و المعادلات و تحريرها باستخدام %PRODUCTNAME ماث."
+#. BUC7Z
#: module_math.ulf
msgctxt ""
"module_math.ulf\n"
@@ -48,6 +52,7 @@ msgctxt ""
msgid "Program Module"
msgstr "الوحدة النمطية للبرنامج"
+#. MCPma
#: module_math.ulf
msgctxt ""
"module_math.ulf\n"
@@ -56,6 +61,7 @@ msgctxt ""
msgid "The application %PRODUCTNAME Math"
msgstr "التطبيق %PRODUCTNAME ماث"
+#. 2zAjE
#: module_math.ulf
msgctxt ""
"module_math.ulf\n"
@@ -64,6 +70,7 @@ msgctxt ""
msgid "%PRODUCTNAME Math Help"
msgstr "مساعدة %PRODUCTNAME ماث"
+#. 5jFUu
#: module_math.ulf
msgctxt ""
"module_math.ulf\n"
@@ -72,6 +79,7 @@ msgctxt ""
msgid "Help about %PRODUCTNAME Math"
msgstr "مساعدة حول %PRODUCTNAME ماث"
+#. wcGkE
#: registryitem_math.ulf
msgctxt ""
"registryitem_math.ulf\n"
@@ -80,14 +88,16 @@ msgctxt ""
msgid "&New"
msgstr "جدي&د"
+#. eHa5D
#: registryitem_math.ulf
msgctxt ""
"registryitem_math.ulf\n"
"STR_REG_VAL_SO60_FORMULA\n"
"LngText.text"
msgid "%SXWFORMATNAME %SXWFORMATVERSION Formula"
-msgstr "%SXWFORMATNAME %SXWFORMATVERSION الصيغة"
+msgstr "صيغة %SXWFORMATNAME %SXWFORMATVERSION"
+#. 6XiB5
#: registryitem_math.ulf
msgctxt ""
"registryitem_math.ulf\n"
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 51509c80497..818ebf47e6f 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ar/>\n"
"Language: ar\n"
@@ -24,7 +24,6 @@ msgstr "الشرائح"
#. wFuXP
#: sd/inc/DocumentRenderer.hrc:28
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "نشرات"
@@ -51,37 +50,37 @@ msgstr "حسب التخطيط"
#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
-msgstr ""
+msgstr "1"
#. EHHWd
#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
-msgstr ""
+msgstr "2"
#. UF5Xv
#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
-msgstr ""
+msgstr "3"
#. 2VEN3
#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
-msgstr ""
+msgstr "4"
#. fZdRe
#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
-msgstr ""
+msgstr "6"
#. NjtiN
#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
-msgstr ""
+msgstr "9"
#. rEFBA
#: sd/inc/DocumentRenderer.hrc:46
@@ -218,12 +217,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -233,37 +232,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -273,12 +272,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. uvDNG
#: sd/inc/errhdl.hrc:31
@@ -902,158 +901,164 @@ msgstr ""
"\n"
"أتريد تحجيم الكائنات المنسوخة لملاءمة حجم الصّفحة الجديد؟"
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "أنشئ شرائح"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "تعديل تنسيق الصفحة"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "تعديل هوامش الصفحة"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "ت~حرير"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "احذف الشّرائح"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "الطابعة المحددة لا تقبل تنسيق المستند."
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "تعذّر فتح ملفّ الصّورة"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "تعذّرت قراءة ملفّ الصّورة"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "نسق الصّورة مجهول"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "إصدارة ملفّ الصّورة هذا غير مدعومة"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "لم يُعثر على مرشّح الصّورة"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "الذّاكرة غير كافية لاستيراد الصّورة"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "الكائنات"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "اكتمل التدقيق الإملائي للمستند بأكمله."
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "انتهى التدقيق الإملائي للكائنات المحددة."
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "هل تريد تحويل الكائن المحدد إلى منحنى؟"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "تعديل كائن العرض التقديمي '$'"
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "مخطط الشريحة"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr ""
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "إدراج ملف"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "إدراج رموز خاصة"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "تعيين تخطيط العرض التقديمي"
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "~تشغيل"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "إي~قاف"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "الحجم الأصلي"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1063,128 +1068,128 @@ msgstr ""
"هل تريد إدخال مقياس جديد؟"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "بدون إجراء"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "الانتقال إلى الشريحة السابقة"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "الانتقال إلى الشريحة التالية"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "الانتقال إلى الشريحة الأولى"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "الانتقال إلى الشريحة الأخيرة"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "الانتقال إلى صفحة أو كائن"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "الانتقال إلى المستند"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr "شغّل الصّوت"
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr "تنفيذ إجراء كائن"
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "تشغيل البرنامج"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "تشغيل ماكرو"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "أنهِ العرض"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "هدف"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "إ~جراء"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr "الصّوت"
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "شريحة / كائن"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "المستند"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "برنامج"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "ماكرو"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr ""
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1197,254 +1202,254 @@ msgstr[5] ""
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "إدراج نص"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr ""
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "ذكي"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "يسار"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "يمين"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "أعلى"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "أسفل"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "أعلى اليسار؟"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "أسفل اليسار؟"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "أعلى اليمين؟"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "أسفل اليمين؟"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "أفقي"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "رأسي"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "الكل؟"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr "لا يمكن تنفيذ هذه العملية في الوضع المباشر."
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "السابق"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "متابعة"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "التلخيص"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "مبدّل اللون"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr "الانتقال التدريجي"
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "توسيع الشريحة"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "شريحة جدول المحتويات"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr "ليس هناك مصدر SANE متوفر حاليًا."
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr "لا يوجد حاليًا مصدر TWAIN متوفر."
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "ثابت"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "المتغير"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "قياسي"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "قياسي (قصير)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "قياسي (طويل)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "اسم الملف"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "المسار/اسم الملف"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "المسار"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "اسم الملف بدون امتداد"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr "عرض تقديمي مخصّص جديد"
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "نسخ "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr "نسق عرض %PRODUCTNAME تقديمي (إمبريس 6)"
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr "نسق رسم %PRODUCTNAME (درو 6)"
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr "فك تجميع ملف(ات) التعريف..."
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr "تعذر فك تجميع جميع الكائنات الرسومية."
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr "عرض %PRODUCTNAME %PRODUCTVERSION تقديمي"
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr "رسم %PRODUCTNAME %PRODUCTVERSION"
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1454,159 +1459,159 @@ msgstr ""
"هل تريد استبداله؟"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "النص"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "رابط"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "رابط مُزار"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "رابط نشط"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "ملاحظات"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "جدول المحتويات"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr "انقر هنا للبدء"
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "المؤلف"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr ""
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "الصفحة الرئيسية"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr "معلومات إضافية"
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "تنزيل العرض التقديمي"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr "لسوء الحظ، متصفحك لا يدعم الإطارات العائمة."
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "الصفحة الأولى"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "الصفحة الأخيرة"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "النص"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
#, fuzzy
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "صورة"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "بمحتويات"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "بدون محتويات"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "إلى الصفحة المحددة"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "تحويل الصورة النقطية إلى مضلع"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr "انقر لإنهاء العرض..."
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "إيقاف مؤقت..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr "تطبيق الخصائص ثلاثية الأبعاد المُفضلة"
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
#, fuzzy
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "مرشّح الصور"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1616,829 +1621,829 @@ msgstr ""
"ليس ملفًّا صوتيًّا صالحًا!"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "تحويل إلى ملف تعريف"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "تحويل إلى صورة نقطية"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "تعذر إنشاء الملف $(URL1)."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "تعذر فتح الملف $(URL1)."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr "تعذر نسخ الملف $(URL1) إلى $(URL2)"
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr ""
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "غيّر اسم الشريحة"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr ""
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr ""
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "الاسم"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr "غيّر اسم الشريحة الرئيسية"
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr "منطقة العنوان للمخططات التلقائية"
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr "منطقة الكائن للمخططات التلقائية"
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "منطقة التذييل"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "منطقة الترويسة"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "منطقة التاريخ"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "منطقة رقم الشريحة"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "منطقة رقم الصفحة"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<ترويسة>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<تذييل>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<التاريخ/الوقت>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<الرقم>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<count>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr "<اسم-الشريحة>"
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr "<اسم-الصفحة>"
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "منطقة الملاحظات"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "تحويل هانغول/هانجا"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "الشرائح"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "الصفحات"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "المعاينة غير متوفرة"
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "تجهيز المعاينة"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "المخططات"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr "أنماط الرسم"
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "أنماط العرض التقديمي"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "أنماط الخلايا"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr "شكل %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr ""
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "التعليقات"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "إعادة تعيين تخطيط الشريحة"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "إدراج جدول"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "إدراج مخطط"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "أدرج صورة"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "أدرج صوتيًّا أو مرئيًّا"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "سحب وإسقاط الصفحات"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "سحب وإسقاط الشرائح"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "يرجى إضافة صور إلى الألبوم."
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "شريحة النص"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr "الدليل الوجهة المحلي ”%FILENAME“ ليس فارغًا. قد يُكتب فوق بعض الملفات. أتريد المتابعة؟"
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "الخلفيّة"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "كائنات الخلفيّة"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "التّخطيط"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr "المتحكّمات"
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr "خطوط القياس"
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "الشّريحة"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "الصفحة"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "الشريحة"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr "الشريحة الرئيسية"
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr "الشريحة الرئيسية:"
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "الصفحة الرئيسية"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr "الصفحة الرئيسية:"
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(ملاحظات)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "نشرات"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "انقر لتحرير تنسيق نص العنوان"
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "انقر لتحرير نسَق نص المخطط"
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr ""
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr "انقر مزدوجا لتحرير نسَق نص المخطط"
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "المستوى الثاني للمخطط"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "المستوى الثالث للمخطط"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "المستوى الرابع للمخطط"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "المستوى الخامس للمخطط"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "المستوى السادس للمخطط"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "المستوى السابع للمخطط"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "انقر لإزاحة الشريحة"
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "انقر لتحرير تنسيق الملاحظات"
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr ""
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr ""
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "انقر لإضافة عنوان"
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "انقر لإضافة نصّ"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "انقر لإضافة نصّ"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "انقر لإضافة ملاحظات"
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr ""
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr ""
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr ""
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "انقر مزدوجًا لإضافة صورة"
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "انقر مزدوجًا لإضافة كائن"
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "انقر مزدوجًا لإضافة رسم بيانيّ"
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "انقر مزدوجًا لإضافة رسم بيانيّ هيكليّ"
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "انقر مزدوجًا لإضافة جدول مُمتد"
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "المبدئيّ"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "المسمى الوظيفي"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr ""
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "إزاحة الشرائح"
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr ""
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr ""
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr ""
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "كائن بدون تعبئة"
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "كائن بلا تعبئة وبلا سطر"
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "النص"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr ""
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr ""
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr ""
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr ""
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr ""
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr ""
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr ""
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr ""
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr ""
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr "أشكال"
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr ""
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr ""
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr ""
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr ""
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr ""
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr ""
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr ""
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr ""
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr "خُطّط"
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr "خُطّط بالازرق"
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr "خُطّط بالاخضر"
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr "خُطّط بالاصفر"
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr "خُطّط بالاحمر"
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "المسمى الوظيفي"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "العنوان الفرعي"
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "مخطط"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "كائنات الخلفية"
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "الخلفية"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "ملاحظات"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "استيراد باوربوينت"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "حفظ المستند"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "خلية التباين"
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "ترويسة"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "سطر الإجمالي"
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "العمود الأول"
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "العمود الأخير"
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "قلّص مقاس الخط"
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "كبّر حجم الخط"
@@ -2446,641 +2451,640 @@ msgstr "كبّر حجم الخط"
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "عرض الرسم"
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "عرض الرسم"
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "عرض المخطط"
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "عرض الشرائح"
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "هنا يمكن فرز الشرائح."
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "عرض الملاحظات"
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "عرض النشرة"
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "أنماط العرض التقديمي"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "أنماط العرض التقديمي"
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "أنماط العرض التقديمي"
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "عرض تقديمي"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "أنماط العرض التقديمي"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "نشرة"
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
#. sA8of
-#: sd/inc/strings.hrc:389
-#, fuzzy
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
-msgstr "أنماط العرض التقديمي"
+msgstr "تذييل‌العَرض‌التقديمي"
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "عرض تقديمي"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "عرض%PRODUCTNAME تقديمي"
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "العنوان"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "تخطيط"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "العنوان الفرعي"
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "الصفحة"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "الملاحظات"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "نشرة"
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "التذييل"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "الترويسة"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "التاريخ"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "الرقم"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(للقراءة فقط)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "بلا"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "حتى النقرة التالية"
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "حتى انتهاء الشريحة"
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "الاتجاه:"
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "تكبير/تصغير"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "المحاور"
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "اللون الأول:"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "اللون الثاني:"
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "لون الملء:"
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "النمط:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "الخط:"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "لون الخط:"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "النمط:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "النسق"
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "لون الخط:"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "حجم الخط:"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "الحجم:"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "الكمية:"
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "اللون:"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(بلا صوت)"
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(أوقِف الصوت السابق)"
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "صوت آخر..."
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "نموذج"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "بدء تشغيل"
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "مسارات المستخدم"
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr "دخول: %1"
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "تأكيد: %1"
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "خروج: %1"
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "مسارات حركة: %1"
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr "متنوعة: %1"
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "بلا"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "اليوم،"
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "الأمس،"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(دون مؤلف)"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "بلغ %PRODUCTNAME امبريس نهاية العرض التقديمي. هل تريد المتابعة من البداية؟"
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "بلغ %PRODUCTNAME امبريس بداية العرض التقديمي. هل تريد المتابعة إلى النهاية؟"
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "بلغ %PRODUCTNAME درو نهاية المستند. هل تريد المتابعة من البداية؟"
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "بلغ %PRODUCTNAME درو بداية المستند. هل تريد المتابعة إلى النهاية؟"
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "إدراج تعليق"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "حذف تعليق (تعليقات)"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "نقل تعليق"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "تحرير التعليق"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "رد على %1"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "تشغيل الوسائط"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "الجدول"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "المستند"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr ""
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr ""
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "الم~حتويات"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "اسم ال~شريحة"
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "اسم ال~صفحة"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "ال~تاريخ والوقت"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "الصفحات المخفية"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "اللون"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "ال~حجم"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "_كتيب"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "جوانب الصفحة"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "تضمين"
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "اس~تخدم فقط درج الورق من تفضيلات الطابعة"
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr ""
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr ""
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "بحث %PRODUCTNAME امبريس حتى نهاية العرض. هل تريد متابعة البحث من البداية؟"
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "بحث %PRODUCTNAME امبريس حتى بداية العرض. هل تريد متابعة البحث حتى النهاية؟"
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "بحث %PRODUCTNAME درو حتى نهاية العرض. هل تريد البحث من البداية؟"
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "بحث %PRODUCTNAME درو حتى بداية العرض. هل تريد متابعة البحث من النهاية؟"
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr ""
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -9088,10 +9092,9 @@ msgstr "صدّر الصفحات المخ_فيّة"
#. EnRtp
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1267
-#, fuzzy
msgctxt "publishingdialog|effectsLabel"
msgid "Effects"
-msgstr "التأثير:"
+msgstr "التأثيرات"
#. 6QQcx
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1310
@@ -9654,139 +9657,139 @@ msgid "Sound:"
msgstr "الصوت:"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "بلا صوت"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "أوقِف الصوت السابق"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "صوت آخر..."
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr ""
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "كرّر حتى الصوت التالي"
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr ""
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "التنويعة:"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr ""
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "عدّل الانتقال"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "عند النقر بالفأرة"
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr ""
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
-msgstr "آليا بعد:"
+msgid "After:"
+msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "تقديم الشريحة"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr "طبّق الحركة على كل الشرائح"
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr ""
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "معاينة آلية"
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr ""
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "شغّل"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr ""
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr ""
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 82cbe78f422..efa04a930fe 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
+"PO-Revision-Date: 2021-03-18 14:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ar/>\n"
"Language: ar\n"
@@ -80,7 +80,7 @@ msgstr "احذف"
#: include/sfx2/strings.hrc:35
msgctxt "STR_SFX_RENAME"
msgid "Rename"
-msgstr ""
+msgstr "أعِد التسمية"
#. C2ngg
#: include/sfx2/strings.hrc:36
@@ -92,7 +92,7 @@ msgstr "غيّر اسم الفئة"
#: include/sfx2/strings.hrc:37
msgctxt "STR_RENAME_TEMPLATE"
msgid "Enter new template name:"
-msgstr ""
+msgstr "أدخل اسم القالب الجديد:"
#. TVTsi
#: include/sfx2/strings.hrc:38
@@ -213,7 +213,7 @@ msgstr ""
#: include/sfx2/strings.hrc:56
msgctxt "STR_QRYTEMPL_MESSAGE"
msgid "The template '$(ARG1)' on which this document is based, has been modified. Do you want to update the styles of the current document, using the modified template?"
-msgstr ""
+msgstr "القالب '$(ARG1)' الذي يعتمد عليه هذا المستند، قد عُدّل. أتريد تحديث طُرُز المستند الحالي، باستخدام القالب المحدَّث؟"
#. ABmvY
#: include/sfx2/strings.hrc:57
@@ -249,7 +249,7 @@ msgstr "اح~ذف فئة"
#: include/sfx2/strings.hrc:62
msgctxt "STR_CATEGORY_SELECT"
msgid "Select Category"
-msgstr "اختر فئة"
+msgstr "حدد صنفًا"
#. YdoDu
#: include/sfx2/strings.hrc:63
@@ -335,13 +335,13 @@ msgstr ""
#: include/sfx2/strings.hrc:73
msgctxt "STR_QMSG_SEL_FOLDER_DELETE"
msgid "Do you want to delete the selected category?"
-msgstr ""
+msgstr "أتريد حذف الفئة المحددة؟"
#. C9pLF
#: include/sfx2/strings.hrc:74
msgctxt "STR_QMSG_TEMPLATE_OVERWRITE"
msgid "A template named $1 already exists in $2. Do you want to overwrite it?"
-msgstr ""
+msgstr "يوجد مسبقا قالب بالإسم $1 في $2. أتريد الكتابة عليه؟"
#. 6MoGu
#: include/sfx2/strings.hrc:75
@@ -521,7 +521,7 @@ msgstr ""
#: include/sfx2/strings.hrc:104
msgctxt "STR_NO_ABS_URI_REF"
msgid "\"$(ARG1)\" cannot be passed to an external application to open it (e.g., it might not be an absolute URL, or might denote no existing file)."
-msgstr ""
+msgstr "لا يمكن تمرير \"$(ARG1)\" الى تطبيق خارجي لفتحه (مثلا لأنه قد لا يكون رابط URL مطلق، أو أنه قد يشير الى ملف غير موجود)."
#. XDUCY
#: include/sfx2/strings.hrc:105
@@ -760,6 +760,10 @@ msgid ""
"Would you like to change the document, and update all links\n"
"to get the most recent data?"
msgstr ""
+"يحتوي المستند %{filename} رابطا أو أكثر الى بيانات خارجية.\n"
+"\n"
+"أترغب في تحديث المستند، وتحديث كل الروابط\n"
+"للحصول على أحدث البيانات؟"
#. zJGEM
#: include/sfx2/strings.hrc:144
@@ -855,11 +859,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "بلا"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "صورة"
+msgstr ""
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1019,25 +1023,25 @@ msgstr "أفلت مستندا هنا أو اختر تطبيقا من الجهة
#: include/sfx2/strings.hrc:185
msgctxt "STR_REDACTION_TARGET_TYPE_TEXT"
msgid "Text"
-msgstr ""
+msgstr "نص"
#. eG5qc
#: include/sfx2/strings.hrc:186
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
-msgstr ""
+msgstr "تعبير نظامي"
#. TaDCG
#: include/sfx2/strings.hrc:187
msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF"
msgid "Predefined"
-msgstr ""
+msgstr "معرّف مسبقا"
#. bDjwW
#: include/sfx2/strings.hrc:188
msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN"
msgid "Unknown"
-msgstr ""
+msgstr "غير معروف"
#. Ao6kC
#. Translators: Column headers in Auto-redaction dialog's targets list
@@ -1136,13 +1140,13 @@ msgstr ""
#: include/sfx2/strings.hrc:210
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
-msgstr ""
+msgstr "حرّر الوجهة"
#. ACY9D
#: include/sfx2/strings.hrc:211
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
-msgstr ""
+msgstr "حصل خطأ أثناء إضافة وجهة جديدة. رجاءا أبلغ عن هذه الحادثة."
#. znVBU
#: include/sfx2/strings.hrc:212
@@ -1337,7 +1341,7 @@ msgstr "إلغاء التسجيل"
#: include/sfx2/strings.hrc:249
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
-msgstr "يهيّأ الآن المكونات للمرة الأولى."
+msgstr "تُهيَّأ القوالب لاستخدام المرة الأولى."
#. F3ym2
#: include/sfx2/strings.hrc:251
@@ -1643,11 +1647,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1668,16 +1672,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "خرائط أولية"
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1698,10 +1702,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "طير الغابة"
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1716,10 +1720,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "أضواء"
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1764,11 +1768,11 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "تقدُّم"
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
-msgstr ""
+msgid "Sunset"
+msgstr "الغروب"
#. 73Y2e
#: include/sfx2/strings.hrc:320
@@ -1829,7 +1833,7 @@ msgstr "بطاقة أعمال فيها شعار"
#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
-msgstr ""
+msgstr "بسيط"
#. W7NVH
#: include/sfx2/strings.hrc:331
@@ -1918,12 +1922,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -1933,37 +1937,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -1973,12 +1977,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. F5rSU
#: sfx2/inc/dinfdlg.hrc:27
@@ -2288,11 +2292,311 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "اللصائق"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr ""
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr ""
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr ""
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr ""
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr ""
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr ""
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr ""
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr ""
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr ""
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr ""
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr ""
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr ""
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr ""
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
msgid "Add Target"
-msgstr ""
+msgstr "أضف وجهة"
#. JC8Vd
#: sfx2/uiconfig/ui/addtargetdialog.ui:89
@@ -2430,13 +2734,13 @@ msgstr ""
#: sfx2/uiconfig/ui/autoredactdialog.ui:122
msgctxt "autoredactdialog|target"
msgid "Target Name"
-msgstr ""
+msgstr "اسم الوجهة"
#. szYkX
#: sfx2/uiconfig/ui/autoredactdialog.ui:135
msgctxt "autoredactdialog|description"
msgid "Type"
-msgstr ""
+msgstr "النوع"
#. udcn4
#: sfx2/uiconfig/ui/autoredactdialog.ui:148
@@ -2466,31 +2770,31 @@ msgstr ""
#: sfx2/uiconfig/ui/autoredactdialog.ui:222
msgctxt "autoredactdialog|btnLoadTargets"
msgid "Load Targets"
-msgstr ""
+msgstr "حمّل الوجهات"
#. tpbYA
#: sfx2/uiconfig/ui/autoredactdialog.ui:235
msgctxt "autoredactdialog|btnSaveTargets"
msgid "Save Targets"
-msgstr ""
+msgstr "احفظ الوجهات"
#. TQg85
#: sfx2/uiconfig/ui/autoredactdialog.ui:261
msgctxt "autoredactdialog|add"
msgid "Add Target"
-msgstr ""
+msgstr "أضف وجهة"
#. 4TvHR
#: sfx2/uiconfig/ui/autoredactdialog.ui:274
msgctxt "autoredactdialog|edit"
msgid "Edit Target"
-msgstr ""
+msgstr "حرّر الوجهة"
#. knEqb
#: sfx2/uiconfig/ui/autoredactdialog.ui:287
msgctxt "autoredactdialog|delete"
msgid "Delete Target"
-msgstr ""
+msgstr "احذف الوجهة"
#. iLkdK
#: sfx2/uiconfig/ui/bookmarkdialog.ui:8
@@ -2639,9 +2943,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2667,7 +2971,7 @@ msgstr "ال_كلمات المفتاحيّة:"
#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
-msgstr "التّ_عليقات:"
+msgstr "الت_عليقات:"
#. qw238
#: sfx2/uiconfig/ui/descriptioninfopage.ui:79
@@ -2691,7 +2995,7 @@ msgstr ""
#: sfx2/uiconfig/ui/descriptioninfopage.ui:137
msgctxt "descriptioninfopage|extended_tip|comments"
msgid "Enter comments to help identify the document."
-msgstr ""
+msgstr "أدخِل تعليقات لتساعد في تعريف المستند."
#. sGW3Z
#: sfx2/uiconfig/ui/descriptioninfopage.ui:150
@@ -2700,91 +3004,157 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr ""
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr ""
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
+msgstr "النوع"
+
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr ""
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
msgctxt "documentfontspage|embedFonts"
@@ -3398,7 +3768,7 @@ msgstr ""
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:165
msgctxt "loadtemplatedialog|extended_tip|categories"
msgid "Lists the available template categories. Click a category to view its contents in the Templates list."
-msgstr ""
+msgstr "يسرد أصناف القوالب المتاحة. انقر صنفًا لمعاينة محتوياته في لائحة القوالب."
#. PZS7L
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:176
@@ -3410,7 +3780,7 @@ msgstr "الفئات"
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:230
msgctxt "loadtemplatedialog|extended_tip|templates"
msgid "Lists the available templates for the selected category."
-msgstr ""
+msgstr "يسرد القوالب المتاحة للصنف المحدد."
#. hryGV
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:241
@@ -3422,7 +3792,7 @@ msgstr "القوالب"
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:245
msgctxt "loadtemplatedialog|label2|tooltip_text"
msgid "Templates in the selected category"
-msgstr ""
+msgstr "القوالب في الصنف المحدد"
#. rFENe
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:264
@@ -3657,7 +4027,7 @@ msgstr ""
#: sfx2/uiconfig/ui/optprintpage.ui:79
msgctxt "optprintpage|label4"
msgid "Settings for"
-msgstr ""
+msgstr "إعدادات لـ"
#. 2T5Af
#: sfx2/uiconfig/ui/optprintpage.ui:109
@@ -3935,9 +4305,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr ""
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
@@ -4365,7 +4735,7 @@ msgstr "قائمة بآخر الملفات"
#: sfx2/uiconfig/ui/startcenter.ui:531
msgctxt "startcenter|local_view_label"
msgid "Templates List"
-msgstr "قائمة القوالب"
+msgstr "لائحة القوالب"
#. UHrAZ
#: sfx2/uiconfig/ui/stylecontextmenu.ui:12
@@ -4437,7 +4807,7 @@ msgstr "إعدادات الشريط الجانبي"
#: sfx2/uiconfig/ui/templatecategorydlg.ui:16
msgctxt "templatecategorydlg|TemplatesCategoryDialog"
msgid "Select Category"
-msgstr "اختر فئة"
+msgstr "حدد صنفًا"
#. HXfot
#: sfx2/uiconfig/ui/templatecategorydlg.ui:108
diff --git a/source/ar/shell/messages.po b/source/ar/shell/messages.po
index fc66ec26d0e..fab1b30f76f 100644
--- a/source/ar/shell/messages.po
+++ b/source/ar/shell/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/shellmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
#. 9taro
#: shell/inc/spsupp/spsuppStrings.hrc:15
@@ -58,12 +58,12 @@ msgstr "ألغِ"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -73,37 +73,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -113,9 +113,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/shell/source/win32/shlxthandler/res.po b/source/ar/shell/source/win32/shlxthandler/res.po
index eadb5001678..7f5d951ddb6 100644
--- a/source/ar/shell/source/win32/shlxthandler/res.po
+++ b/source/ar/shell/source/win32/shlxthandler/res.po
@@ -3,19 +3,20 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-07-09 15:25+0000\n"
-"Last-Translator: صفا الفليج <safaalfulaij@hotmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2021-03-18 14:58+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/shellsourcewin32shlxthandlerres/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1436455519.000000\n"
+#. nMHZG
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -24,6 +25,7 @@ msgctxt ""
msgid "Title"
msgstr "العنوان"
+#. 7QBxh
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -32,6 +34,7 @@ msgctxt ""
msgid "Title:"
msgstr "العنوان:"
+#. UGL46
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -40,6 +43,7 @@ msgctxt ""
msgid "Subject"
msgstr "الموضوع"
+#. Rqom8
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -48,6 +52,7 @@ msgctxt ""
msgid "Subject:"
msgstr "الموضوع:"
+#. BbVSy
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -56,6 +61,7 @@ msgctxt ""
msgid "Author"
msgstr "المؤلّف"
+#. 6eSDz
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -64,6 +70,7 @@ msgctxt ""
msgid "Author:"
msgstr "المؤلّف:"
+#. nA6Zp
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -72,6 +79,7 @@ msgctxt ""
msgid "Keywords"
msgstr "الكلمات المفتاحيّة"
+#. hJatc
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -80,6 +88,7 @@ msgctxt ""
msgid "Keywords:"
msgstr "الكلمات المفتاحيّة:"
+#. NyeBb
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -88,14 +97,16 @@ msgctxt ""
msgid "Comments"
msgstr "تعليقات"
+#. tN79v
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
"%COMMENTS_COLON%\n"
"LngText.text"
msgid "Comments:"
-msgstr "تعليقات:"
+msgstr "التعليقات:"
+#. C7AUH
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -104,6 +115,7 @@ msgctxt ""
msgid "Pages"
msgstr "الصفحات"
+#. vhAWA
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -112,6 +124,7 @@ msgctxt ""
msgid "Tables"
msgstr "الجداول"
+#. VNMuj
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -120,6 +133,7 @@ msgctxt ""
msgid "Images"
msgstr "الصّور"
+#. WePDJ
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -128,6 +142,7 @@ msgctxt ""
msgid "Objects"
msgstr "الكائنات"
+#. CXU2C
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -136,6 +151,7 @@ msgctxt ""
msgid "OLE Objects"
msgstr "كائنات OLE"
+#. zATfj
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -144,6 +160,7 @@ msgctxt ""
msgid "Paragraphs"
msgstr "فقرات"
+#. S4c4V
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -152,6 +169,7 @@ msgctxt ""
msgid "Words"
msgstr "كلمات"
+#. D4Ywc
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -160,6 +178,7 @@ msgctxt ""
msgid "Characters"
msgstr "الحروف"
+#. 8LRV5
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -168,6 +187,7 @@ msgctxt ""
msgid "Lines"
msgstr "أسطر"
+#. UhaXY
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -176,6 +196,7 @@ msgctxt ""
msgid "Origin"
msgstr "المصدر"
+#. eEVzH
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -184,6 +205,7 @@ msgctxt ""
msgid "Version"
msgstr "الإصدار"
+#. CGpUh
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -192,6 +214,7 @@ msgctxt ""
msgid "Sheets"
msgstr "أوراق"
+#. 2okgs
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -200,6 +223,7 @@ msgctxt ""
msgid "Cells"
msgstr "خلايا"
+#. rgN97
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -208,6 +232,7 @@ msgctxt ""
msgid "Document Statistics"
msgstr "إحصائيات المستند"
+#. VsBfC
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -216,6 +241,7 @@ msgctxt ""
msgid "Summary"
msgstr "الملخص"
+#. MiuQD
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -224,6 +250,7 @@ msgctxt ""
msgid "Property"
msgstr "الخاصية"
+#. mGZKg
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -232,6 +259,7 @@ msgctxt ""
msgid "Value"
msgstr "القيمة"
+#. TCEEW
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -240,6 +268,7 @@ msgctxt ""
msgid "Modified"
msgstr "معدل"
+#. YYD9t
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -248,6 +277,7 @@ msgctxt ""
msgid "Modified:"
msgstr "عُدّل:"
+#. vBE2F
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -256,6 +286,7 @@ msgctxt ""
msgid "Revision number"
msgstr "رقم التنقيح"
+#. FXXNk
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -264,6 +295,7 @@ msgctxt ""
msgid "Revision number:"
msgstr "رقم المراجعة:"
+#. HdSaz
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -272,6 +304,7 @@ msgctxt ""
msgid "Total editing time"
msgstr "إجمالي وقت التحرير"
+#. snZkq
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -280,6 +313,7 @@ msgctxt ""
msgid "Total editing time:"
msgstr "إجمالي وقت التحرير:"
+#. AuQLP
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -288,6 +322,7 @@ msgctxt ""
msgid "Description"
msgstr "الوصف"
+#. WESrR
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -296,6 +331,7 @@ msgctxt ""
msgid "Description:"
msgstr "الوصف:"
+#. RWroq
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
@@ -304,6 +340,7 @@ msgctxt ""
msgid "Size:"
msgstr "الحجم:"
+#. 3GFSY
#: shlxthdl.ulf
msgctxt ""
"shlxthdl.ulf\n"
diff --git a/source/ar/starmath/messages.po b/source/ar/starmath/messages.po
index 99aa7d44c38..d500b721541 100644
--- a/source/ar/starmath/messages.po
+++ b/source/ar/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-19 16:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1525785875.000000\n"
#. GrDhX
@@ -427,12 +427,12 @@ msgstr "أو"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -442,37 +442,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -482,2232 +482,2232 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "علامة +"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "علامة -"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "علامة +-"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "علامة -+"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "”ليس“ منطقية"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "جمع +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "طرح ـ"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "ضرب (نقطة)"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "ضرب (×)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "ضرب (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "قسمة (/)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "قسمة (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "قسمة (كسر)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "”و“ منطقية"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "”أو“ منطقية"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "يساوي"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "لا يساوي"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "أقل من"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "أكبر من"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "أقل من أو يساوي"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "أكبر من أو يساوي"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "أقل من أو يساوي"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "أكبر من أو يساوي"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "أقل بكثير من"
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "أكبر بكثير من"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "يرادف"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "يساوي تقريبًا"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "يشابه"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "يشابه أو يساوي"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "متناسب مع"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "متعامد على"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "متوازٍ مع"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "باتجاه"
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ضمن"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ليس ضمن"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "يمتلك"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "اتحاد"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "التقاطع"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "الاختلاف"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "جزء من"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "جزء من أو يساوي"
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "مجموعة فائقة"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "مجموعة فائقة أو يساوي"
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "ليس جزء من"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "ليس جزء من أو يساوي"
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "ليس مجموعة فائقة"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "ليس مجموعة فائقة أو يساوي"
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "قيمة مطلقة"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
#, fuzzy
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "جذر تربيعي"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "جذر نوني"
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "الدالة الأسية"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "الدالة الأسية"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "لوغاريتم طبيعي"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "لوغاريتم"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "جيب"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "جيب تمام"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "ظل"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "ظل التمام"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "مقابل الجيب"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "مقابل جيب التمام"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "مقابل الظل"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "قوس ظل التمام"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "جيب الزائد"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "جيب التمام الزائد"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "ظل الزائد"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "ظل تمام الزائد"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
#, fuzzy
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "جيب الزائد"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
#, fuzzy
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "جيب التمام الزائد"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
#, fuzzy
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "ظل الزائد"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
#, fuzzy
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "ظل تمام الزائد"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "المجموع"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "مجموع منخفض لأسفل"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "مجموع مرتفع لأعلى"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "سكرِبت مجموع فوقي/تحتي"
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "المنتج"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "منخفض أسفل"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproduct"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "منخفض أسفل"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Limes"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "منخفض أسفل"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "مرتفع أعلى"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "سكرِبت مجموع فوقي/تحتي"
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "موجود"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "غير موجود"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "للكل"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "تكامل"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "تكامل مزدوج"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "تكامل ثلاثي"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Curve Integral"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Double Curve Integral"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triple Curve Integral"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acute Accent"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Line Above"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Reverse Circumflex"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "دائرة"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "نقطة"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Double Dot"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Triple Dot"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Grave Accent"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circumflex"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Vector Arrow"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "خط تحت"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "خط فوق"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "خط عبر"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "شفاف"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "خط عريض"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "خط مائل"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "تغيير الحجم"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "تغيير الخط"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "تلوين بالأسود"
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "تلوين بالأزرق"
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "تلوين بالأخضر"
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "تلوين بالأحمر"
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "منتقي الألوان"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "جدولة ملونة"
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "تلوين بالأصفر"
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "أقواس تجميع"
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "أقواس مستديرة"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "أقواس مربعة"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "أقواس مزدوجة مربعة"
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "أقواس متموجة"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "أقواس مدببة"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "دالة عدد صحيح"
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "خطوط مفردة"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "خطوط مزدوجة"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "أقواس مُعاملات"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "أقواس دائرية (قابلة للتحجيم)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "أقواس مربعة (قابل للتحجيم)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "أقواس مربعة مزدوجة (قابل للتحجيم)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "أقواس متموجة (قابلة للتحجيم)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "أقواس مدببة (قابلة للتحجيم)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "دالة عدد صحيح (قابل للتحجيم)"
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "دالة عدد صحيح (قابل للتحجيم)"
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "خطوط مفردة (قابلة للتحجيم)"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "خطوط مزدوجة (قابلة للتحجيم)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "أقواس مُعاملات (قابلة للتحجيم)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "أقواس متموجة بالأعلى (قابلة للتحجيم)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "أقواس متموجة بالأسفل (قابلة للتحجيم)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "منخفض يمين"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "الأس"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "منخفض يسار"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "مرتفع أيسر"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "منخفض أسفل"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "مرتفع أعلى"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "تباعد صغير"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "فراغ"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "سطر جديد"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "تراكم أفقي (عنصران)"
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "تراكم أفقي"
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Matrix Stack"
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "محاذاة إلى اليسار"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "محاذاة إلى الوسط"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "محاذاة إلى اليمين"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "ألف"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "مجموعة فارغة"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "جزء حقيقي"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "جزء خيالي"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "مالانهاية"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "جزئي"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "رمز تباعد"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "نقاط في وسط"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "نقاط إلى أعلى"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "نقاط إلى أسفل"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "نقاط بالأسفل"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "نقاط رأسية"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "سَلسَلة"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "قسمة (/)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "يقبل القسمة"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "لا يقبل القسمة"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "سهمان إلى اليسار"
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "سهمان إلى اليسار واليمين"
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "سهمان إلى اليمين"
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "مجموعة أرقام طبيعية"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "مجموعة الأعداد الصحيحة"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "مجموعة الأعداد المنطقية"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "مجموعة الأعداد الحقيقية"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "مجموعة الأعداد المركبة"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Large Circumflex"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Large Tilde"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Large Vector Arrow"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "شريط h"
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "شريط لامدا"
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "سهم لليسار"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "سهم لليمين"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "سهم لأعلى"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "سهم لأسفل"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "لا مسافة"
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "يسبق"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "يسبق أو يساوي"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "يسبق أو يعادل"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "يتبع"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "يتبع أو يساوي"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "يتبع أو يعادل"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "لا يسبق"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "لا يتبع"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "مُعاملات أحادية/ثنائية"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "العلاقات"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Set Operations"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "الدوال"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "المُعاملات"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
-msgstr "السمات"
+msgstr "الصفات"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "الأقواس"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "تنسيقات"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "غيرها"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "أمثلة"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "قياسي"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "مائل"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "عريض"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "أسود"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "أزرق"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "أخضر"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "أحمر"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "رمادي"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "ليموني"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "كستنائي"
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "أزرق ليلي"
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "زيتوني"
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "بنفسجي"
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "فضي"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "أزرق مخضر"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "أصفر"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "إخفاء"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "الحجم"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "الخط"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "يسار"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "توسيط"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "يمين"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "تعليقات"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "المعادلات"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "يحفظ المستند..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "معادلات %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "خطأ : "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "حرف غير متوقع"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "متوقع '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "متوقع '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "متوقع '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "متوقع ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "متوقع '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Color required"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' expected"
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "‏%PRODUCTNAME‏ %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "المحتويات"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ال~عنوان"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ن~ص المعادلة"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "الح~دود"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "الحجم"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "الحجم الأ~صلي"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ملاءمة ~حجم الصفحة"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "ال~مقياس"
diff --git a/source/ar/svl/messages.po b/source/ar/svl/messages.po
index 5f4ddc631e2..ba21d5309ff 100644
--- a/source/ar/svl/messages.po
+++ b/source/ar/svl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svlmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1519741483.000000\n"
#. PDMJD
@@ -32,12 +32,12 @@ msgstr "تصفّح..."
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -47,37 +47,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -87,9 +87,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index 64254de3978..4757a7f2f85 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/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: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542195198.000000\n"
#. fLdeV
@@ -1740,12 +1740,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -1755,37 +1755,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -1795,12 +1795,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. tBGDJ
#: svtools/inc/borderline.hrc:17
@@ -5450,7 +5450,7 @@ msgstr "يتطلّب %PRODUCTNAME إحدى بيئات جافا التّشغيل
#: svtools/uiconfig/ui/linewindow.ui:18
msgctxt "linewindow|none_line_button"
msgid "None"
-msgstr ""
+msgstr "بدون"
#. LwyoW
#: svtools/uiconfig/ui/placeedit.ui:18
@@ -5502,10 +5502,9 @@ msgstr "الجذر:"
#. uEUaM
#: svtools/uiconfig/ui/placeedit.ui:197
-#, fuzzy
msgctxt "placeedit|shareLabel"
msgid "Share:"
-msgstr "المشاركة:"
+msgstr "مشاركة:"
#. xJNi8
#: svtools/uiconfig/ui/placeedit.ui:224
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 3ef230b8ca7..e48e3acf852 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-19 16:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ar/>\n"
"Language: ar\n"
@@ -835,2275 +835,2281 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "عكس ترتيب %1"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "نقل %1"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "تغيير حجم %1"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "دوّر %1"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "قلب %1 أفقيًا"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "قلب %1 رأسيًا"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "قلب %1 قطريًا"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "قلب %1 يدويًا"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "تشويه %1 (مائل)"
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "تنظيم %1 في دائرة"
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "ثني %1 في دائرة"
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "تشويه %1"
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "تراجع %1"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "تعديل خصائص bézier لـ %1"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "تعديل خصائص bézier لـ %1"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "تعيين اتجاه الخروج لـ %1"
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
-msgstr "تعيين السمة النسبية لـ %1"
+msgstr "تعيين الصفة النسبية عند %1"
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "تعيين نقطة مرجع لـ %1"
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "تجميع %1"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "ألغِ تجميع %1"
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
-msgstr "تطبيق السمات على %1"
+msgstr "تطبيق الصفات على %1"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "تطبيق الأنماط على %1"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "إزالة نمط من %1"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "تحويل %1 إلى مضلع"
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "تحويل %1 إلى مضلعات"
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "تحويل %1 إلى منحنى"
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "تحويل %1 إلى منحنيات"
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "تحويل %1 إلى شبه منحرف"
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "تحويل %1 إلى أشباه منحرف"
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "محاذاة %1"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "محاذاة %1 إلى أعلى"
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "محاذاة %1 إلى أسفل"
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "توسيط %1 أفقيًا"
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "محاذاة %1 إلى اليسار"
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "محاذاة %1 إلى اليمين"
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "توسيط %1 رأسيًا"
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "توسيط %1"
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "تحويل %1"
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "ضم %1"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "دمج %1"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "طرح %1"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "تداخل %1"
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "توزيع الكائنات المحددة"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
#, fuzzy
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "~ناغم العرض"
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
#, fuzzy
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "نا~غم الارتفاع"
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "ضم %1"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "تقسيم %1"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "تقسيم %1"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "تقسيم %1"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "إدراج كائن(ات)"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "إدراج نقطة إلى %1"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr "إدراج نقطة لصق إلى %1"
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "إزاحة النقطة المرجعية"
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "تغيير %1 هندسيًا"
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "نقل %1"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "تغيير حجم %1"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "دوّر %1"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "قلب %1 أفقيًا"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "قلب %1 رأسيًا"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "قلب %1 قطريًا"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "قلب %1 يدويًا"
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "تدرج تفاعلي لـ %1"
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "شفافية تفاعلية لـ %1"
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "تشويه %1 (مائل)"
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "تنظيم %1 في دائرة"
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "ثني %1 في دائرة"
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "تشويه %1"
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "تجميع %1"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "تبديل شعاع لـ %1"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "تغيير %1"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "تغيير حجم %1"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "نقل %1"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "نقل النقطة النهائية لـ %1"
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "ضبط زاوية بنسبة %1"
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "تغيير %1"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "تحرير نص: الفقرة %1، الصف %2، العمود %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 محدد"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "نقطة من %1"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 نقطة/نقاط من %1"
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr "نقطة لصق من %1"
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr "%2 نقاط لصق من %1"
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "تحديد كائنات"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "تحديد كائنات إضافية"
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "تحديد نقاط"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "تحديد نقاط إضافية"
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr "تحديد نقاط اللصق"
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr "تحديد نقاط لصق إضافية"
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "إنشاء %1"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "إدراج %1"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "نسخ %1"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "تغيير ترتيب كائن %1"
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "تحرر نص %1"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "إدراج صفحة"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "حذف صفحة"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "نسخ الصفحة"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "تغيير ترتيب الصفحات"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "إزالة تعيين صفحات الخلفية"
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "تغيير تعيين صفحات الخلفية"
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "إدراج مستند"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "إدراج طبقة"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "حذف طبقة"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "تغيير اسم كائن %1 إلى"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "تغيير عنوان كائن %1"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "تغيير وصف كائن %1"
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "في"
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "إيقاف"
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "نعم"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "لا"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "النوع 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "النوع 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "النوع 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "النوع 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "أفقي"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "رأسي"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "تلقائي"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "إيقاف تشغيل"
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "تناسبي"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "ملائمة الحجم (جميع الصفوف على حدة) "
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
-msgstr "استخدام سمات يدوية"
+msgstr "استخدام صفات يدوية"
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "أعلى"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "وسط"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "أسفل"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "استغلال كامل الارتفاع"
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "ممطوط"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "يسار"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "وسط"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "يمين"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "استغلال كامل العرض"
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "ممطوط"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "إيقاف"
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "وميض"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "تمرير عبر"
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "متناوب"
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "تمرير داخل"
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "يسار"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "أعلى"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "يمين"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "أسفل"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "رابط قياسي"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "موصل خطي"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "موصل مباشر"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "موصل المنحيات"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "قياسي"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "نصف قُطر"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "تلقائي"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr "إلى اليسار خارجًا"
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "بالداخل (الوسط)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr "إلى اليمين خارجًا"
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "تلقائي"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "على الخط"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "خط مقطوع"
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "أسفل الخط"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "توسيط"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "دائرة ممتلئة"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "قطاع دائري"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "قطاع من دائرة"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "قوس"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
-msgstr "سمة مجهولة"
+msgstr "صفة مجهولة"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "نمط الخط"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "نقش الخط"
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "سُمك الخط"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "لون الخط"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "بداية الخط"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "نهاية الخط"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "عرض بداية الخط"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "عرض نهاية الخط"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "توسيط بداية الخط"
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "توسيط نهاية الخط"
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "شفافية الخط"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "وصلة خطوط"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
-msgstr "سمات الخط"
+msgstr "صفات الخط"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "نمط التعبئة"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "لون التعبئة"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "تدرج اللون"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "نقش"
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "صورة تعبئة نقطية"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "الشفافية"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "عدد خطوات تدرج اللون"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "تعبئة البلاطة"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "موضع صور تعبئة نقطية"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "عرض صورة التعبئة النقطية"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "ارتفاع صورة التعبئة النقطية"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "تدرج شفّاف"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "التعبئة محجوزة لـ2"
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "حجم البلاطة بغير %"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "إزاحة البلاطة س بمقدار %"
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "إزاحة البلاطة ص بمقدار %"
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "تحجيم صورة نقطية"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "موضع البلاطة س بمقدار %"
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "موضع البلاطة ص بمقدار %"
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "تعبئة الخلفية"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
-msgstr "سمات التعبئة"
+msgstr "صفات التعبئة"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "نمط Fontwork"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "محاذاة Fontwork"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "تباعد Fontwork"
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "بداية خط Fontwork"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "الكتابة المنعكسة لـ Fontwork"
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "الخط المحيط لـ Fontwork"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "ظل Fontwork"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "لون ظل Fontwork"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "إزاحة ظل Fontwork (س)"
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "إزاحة ظل Fontwork (ص)"
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "إخفاء الخط المحيط لـ Fontwork"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "شفافية ظل Fontwork"
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "ظل"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "لون الظل"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "تباعد الظل (س)"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "تباعد الظل (ص)"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "شفافية الظل"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "ظل ثلاثي الأبعاد"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "ظل منظوري"
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "نوع التعليق"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "زاوية ثابتة للتعليق"
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "زاوية التعليق"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "فاصل سطور التعليق"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "محاذاة تعليق الخروج"
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "موضع خروج نسبي"
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "موضع خروج نسبي"
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "تعليق الخروج المطلق"
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "طول سطر التعليق"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "الطول التلقائي لسطور التعليق"
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "نصف قطر الزاوية"
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "الارتفاع الأدنى للإطار"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "ملاءمة الارتفاع تلقائيًا"
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "ملاءمة النص للإطار"
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "التباعد الأيسر لإطار النص"
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "تباعد الإطار الأيمن النص"
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "تباعد الإطار العلوي النص"
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "تباعد الإطار الأسفل النص"
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
#, fuzzy
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "مربط النص الرأسي"
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "الارتفاع الأقصى للإطار"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "العرض الأدنى للإطار"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "العرض الأقصى للإطار"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "ملاءمة العرض تلقائيًا"
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
#, fuzzy
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "مربط النص الأفقي"
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "الساعة"
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "اتجاه الساعة"
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "الساعة تبدأ في الداخل"
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "الساعة تتوقف في الداخل"
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "عدد مرات تشغيل الساعة"
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "سرعة الساعة"
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "حجم خطوة الساعة"
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "سريان نص الخط الخارجي"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
-msgstr "سمات معرّفة من قبل المستخدم"
+msgstr "صفات يعرّفها المستخدم"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "استخدام تباعد سطر غير مرتبط بالخط"
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "لف النص في الشكل"
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "نوع الرابط"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "كائن التباعد الأفقي 1"
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "كائن التباعد الرأسي 1"
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "تباعد الكائن الأفقي 2"
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "تباعد الكائن الرأسي 2"
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "تباعد الكائن الملصق 1"
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "تباعد الكائن الملصق 2"
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "عدد الخطوط القابلة للإزاحة"
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "خط الإزاحة 1"
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "خط الإزاحة 2"
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "خط الإزاحة 3"
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "نوع القياس"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "قيمة القياس - الموضع الأفقي"
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "قيمة القياس - الموضع الرأسي"
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "تباعد خط القياس"
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "قياس سطر المساعدة المتدلي"
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "تباعد سطر مساعدة القياس"
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "ركيزة قياس خط المساعدة 1"
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "ركيزة قياس خط المساعدة 2"
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "مقياس الحافة السفلى"
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "قيمة القياس عبر سطر القياس"
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "دوّر قيمة القياس ١٨٠ درجة"
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "قياس الخط المتدلي"
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "وحدة القياس"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "معيار قياسي إضافي"
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "عرض وحدة القياس"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "تنسيق قيمة القياس"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "موضع تلقائي لنص القياس"
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "عرض الزاوية التلقائية لقيمة القياس"
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "تعيين زاوية قيمة القياس"
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "زاوية قيمة القياس"
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "المنازل العشرية"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "نوع الدائرة"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "زاوية البدء"
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "زاوية النهاية"
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "موضع كائن محمي"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "حجم كائن محمي"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "الكائن قابل للطباعة"
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "كائن، مرئي"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "معرف الطبقة"
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "طبقة"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "اسم الكائن"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "الموضع س، بالكامل"
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "الموضع ص، بالكامل"
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "كامل العرض"
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "كامل الارتفاع"
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "الموضع س مفرد"
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "الموضع ص مفرد"
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "عرض مفرد"
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "ارتفاع فردي"
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "العرض المنطقي"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "الارتفاع المنطقي"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "زاوية دوران فردية"
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "زاوية القص المفرد"
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "إزاحة أفقيًا"
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "إزاحة رأسيًا"
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "تغيير حجم فردي (س)"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "تغيير حجم فردي (ص)"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "دوران مفرد"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "قص أفقي مفرد"
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "قص أفقي رأسي"
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "تغيير حجم س كليًا"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "تغيير حجم ص كليًا"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "دوّر الكل"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "قص أفقي كلي"
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "قص رأسي كلي"
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "النقطة المرجعية 1 س"
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "النقطة المرجعية 1 ص"
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "النقطة المرجعية 2 س"
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "النقطة المرجعية 2 ص"
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "فصل المقاطع"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "إظهار التنقيط"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "عمل إزاحات عند التعداد"
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "مستوى التعداد"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "تنقيط وترقيم"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "إزاحات"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "تباعدات الفقرة"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "تباعد الأسطر"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "محاذاة الفقرة"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "علامات الجدولة"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "لون الخط"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "مجموعة أحرف"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "حجم الخط"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "عرض الخط"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "عريض (السّمْك)"
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "تسطير"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "خط علوي"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "شطب"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "مائل"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "تخطيط"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "ظل الخط"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "مرتفع/منخفض"
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
-msgstr "تقنين الأحرف"
+msgstr "التقنين"
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
-msgstr "تقنين أحرف يدوي"
+msgstr "تقنين يدوي"
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "الفراغات بدون تسطير"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "علامة جدولة"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "فاصل أسطر تلقائي"
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "أحرف غير قابلة للتحويل"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "الحقول"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "أحمر"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "أخضر"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "أزرق"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "الإضاءة"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "التباين"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "جاما"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "الشفافية"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "عكس"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
#, fuzzy
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "وضع الصورة"
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "اقتصاص"
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "كائن وسائطي"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "كائنات الأوساط"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "إدراج عمود"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "إدراج صف"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "حذف عمود"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "حذف صف"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "تقسيم الخلايا"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "دمج الخلايا"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "تنسيق خلية"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "توزيع الصفوف"
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "توزيع الأعمدة"
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
#, fuzzy
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "حذف المحتويات"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "نمط الجدول"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "إعدادات نمط الجدول"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "الجدول"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "الجداول"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
#, fuzzy
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
@@ -3111,3472 +3117,3472 @@ msgstr "معمل الخطوط"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "متواصل"
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "تدرج اللون"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "صورة نقطية"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "نمط"
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "نمط بلا عنوان"
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "نمط الخط"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "بلا"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "اللون"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "نقش"
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "رؤوس الأسهم"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "سهم"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "مربع"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "دائرة"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- بلا -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "الشفافية"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "توسيط"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "غير موسّط"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "المبدئيّ"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "تدرج رمادي"
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "أسود/أبيض"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "علامة مائيّة"
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "أسود"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "رمادي"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "أبيض"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "أصفر"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "ذهبي"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "برتقالي"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "أحمر"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "أرجواني"
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "بنفسجي"
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "أزرق"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "فيروزي"
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "أخضر"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "ليموني"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "رمادي فاتح"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "أصفر فاتح"
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "ذهبي فاتح"
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "برتقالي فاتح"
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "طوبي فاتح"
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "أحمر فاتح"
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "أرجواني فاتح"
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "نيلي فاتح"
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "أزرق فاتح"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "فيروزي فاتح"
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "أخضر فاتح"
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "ليموني فاتح"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "رمادي غامق"
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "أصفر غامق"
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "ذهبي غامق"
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "برتقالي غامق"
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "طوبي غامق"
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "أحمر غامق"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "أرجواني غامق"
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "نيلي غامق"
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "أزرق غامق"
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "فيروزي غامق"
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "أخضر غامق"
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "ليموني غامق"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "بنفسجي"
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "سماوي"
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "أزرق كلاسيكي"
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "رمادي مزرق"
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "أحمر قانٍ"
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "أصفر شاحب"
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "أخضر شاحب"
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "بنفسجي داكن"
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "قرنفلي"
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "أزرق نيلي"
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "المخطط البياني"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "أزرق سماوي"
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "أخضر مصفر"
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "وردي"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "تركوازي"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "ثلاثي الأبعاد"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "أسود 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "أسود 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "أزرق"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "بني"
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "عملة"
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "عملة ثلاثية الأبعاد"
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "عملة رمادية"
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "عملة أرجوانية فاتحة"
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "عملة تركوازية"
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "رمادي"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "أخضر"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "أرجواني فاتح"
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "أحمر"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "تركوازي"
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "أصفر"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "أنيق"
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "المالية"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "وصلة خطوط متوسطة"
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "وصلة خطوط متصلة"
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "وصلة خطوط متقاطعة"
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "وصلة خطوط دائرية"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "خط سقف مسطح"
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "خط سقف مدور"
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "خط سقف مربع"
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "تدرج اللون"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "خطي أزرق/أبيض"
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "خطي أرجواني/أخضر"
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "خطي أصفر/بني"
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "شعاعي أخضر/أسود"
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "شعاعي أحمر/أصفر"
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "مستطيل أحمر/أبيض"
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "مربع أصفر/أبيض"
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "بيضوي رمادي مزرق/أزرق فاتح"
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "محوري أحمر فاتح/أبيض"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "قطري 1 يسار"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "قطري 1 يمين"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "قطري 2 يسار"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "قطري 2 يمين"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "قطري 3 يسار"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "قطري 3 يمين"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "قطري 4 بسار"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "قطري 4 يمين"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "قطري أزرق"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "قطري أخضر"
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "قطري برتقالي"
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "قطري أحمر"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "قطري فيروزي"
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "قطري بنفسجي"
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "من زاوية"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "من زاويةـ أزرق"
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "من زاويةـ أخضر"
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "من زاوية، برتقالي"
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "من زاوية، أحمر"
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "من زاوية، فيروزي"
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "من زاوية، بنفسجي"
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "من الوسط"
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "من الوسط، أزرق"
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "من الوسط، أخضر"
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "من الوسط، برتقالي"
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "من الوسط، أحمر"
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "من الوسط، فيروزي"
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "من الوسط، بنفسجي"
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "أفقي"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "أفقي أزرق"
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "أفقي أخضر"
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "أفقي برتقالي"
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "أفقي أحمر"
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "أفقي فيروزي"
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "أفقي بنفسجي"
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "شعاعي"
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "شعاعي أزرق"
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "شعاعي أخضر"
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "شعاعي برتقالي"
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "شعاعي أحمر"
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "شعاعي فيروزي"
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "شعاعي بنفسجي"
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "رأسي"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "رأسي أزرق"
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "رأسي أخضر"
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "رأسي برتقالي"
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "رأسي أحمر"
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "رأسي فيروزي"
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "رأسي بنفسجي"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "تدرّج رمادي"
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "تدرّج أصفر"
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "تدرّج برتقالي"
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "تدرّج أحمر"
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "تدرّج وردي"
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "سماء"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "تدرّج سيان"
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "تدرّج أزرق"
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "أنبوب بنفسجي"
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "مساء"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "تدرّج أخضر"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "فارغ"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "صورة نقطية"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "٥ بالمئة"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "١٠ بالمئة"
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "٢٠ بالمئة"
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "٢٥ بالمئة"
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "٣٠ بالمئة"
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "٤٠ بالمئة"
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "٥٠ بالمئة"
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "٦٠ بالمئة"
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "٧٠ بالمئة"
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "٧٥ بالمئة"
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "٨٠ بالمئة"
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "٩٠ بالمئة"
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "قُطري فاتح لأسفل"
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "قُطري فاتح لأعلى"
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "قُطري داكن لأسفل"
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "قُطري داكن لأعلى"
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "قُطري واسع لأسفل"
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "قُطري واسع لأعلى"
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "رأسي فاتح"
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "أفقي فاتح"
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "رأسي ضيّق"
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "أفقي ضيّق"
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "رأسي داكن"
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "أفقي داكن"
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "شُرط قُطرية لأسفل"
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "شُرط قُطرية لأعلى"
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "شُرط أفقية"
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "شُرط رأسية"
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "حلوى صغيرة"
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "حلوى كبيرة"
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "متعرّج"
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "متموّج"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "قرميد قُطري"
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "قرميد أفقي"
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "حياكة"
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "نسيج نقش"
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "عشب"
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "شبكة منقّطة"
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "ماس منقّط"
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "قرميد خشبي"
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "تعريشة"
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "كرة"
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "شبكة صغيرة"
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "شبكة كبيرة"
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "رقعة شطرنج صغيرة"
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "رقعة شطرنج كبيرة"
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "حدود الماس"
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "ماس مملوء"
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "رأسي"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "أفقي"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "قُطري لأسفل"
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "قُطري لأعلى"
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "متقاطع"
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "قُطري متقاطع"
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "مربع 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "سهم مزدوج"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "دائرة"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "مربع"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "سهم"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "مثلث غير معبأ"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "معين غير معبأ"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "معين"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "دائرة مفرغة"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "مربع قائم غير معبأ"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "مربع مفرغ"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "الشفافية"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "علامة نقطية خضراء"
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "علامة نقطية زرقاء"
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "علامة نقطية برتقالية"
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "بنفسجي"
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "علامة نقطية بنفسجية"
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "علامة نقطية صفراء"
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "سمة المعرض"
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "نجحت الاستعادة"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "استُعيد المستند الأصلي"
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "فشلت الاستعادة"
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "تقدّم الاستعادة"
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "لم تتم الاستعادة بعد"
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "بدأ %PRODUCTNAME %PRODUCTVERSION باستعادة مستنداتك. يختلف وقت انتهاء العملية حسب حجم المستندات."
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "اكتملت استعادة مستنداتك. انقر ’أنهِ‘ لرؤيتها."
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "إ~نهاء"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
#, fuzzy
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "القيم المخصّصة الأخيرة"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "نقطة"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "تصدير الصورة"
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "احفظ كصورة"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "إدراج كائن(ات)"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "تدوير الكائن ثلاثي الأبعاد"
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "إنشاء كائن نتوء"
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "إنشاء كائن الدوران"
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "تقسيم كائن ثلاثي الأبعاد"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[All]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "مرشّح الرسوم"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "سمة جديدة"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "تأثيرات ثلاثية الأبعاد"
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "حركات"
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "نقاط"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "مكتب"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "أعلام"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "تخطيطات انسيابية"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "صور تعبيرية"
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "الصور"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "خلفيات"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "الصفحة الرئيسية"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "تفاعل"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "خرائط"
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "أشخاص"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "أسطح"
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "الحواسيب"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "مخططات"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "بيئة"
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "مالية"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "نقل"
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "أشكال نصية"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "أصوات"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "رموز"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "سِمَتي"
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "الأسهم"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "بالونات"
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "لوحة المفاتيح"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "الوقت"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "عرض تقديمي"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "التقويم"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "الملاحة"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "اتصال"
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "مالية"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "الحواسيب"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "الطقس"
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "المدرسة والجامعة"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "حل المشاكل"
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans"
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "طباعة التحديد"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "هل تريد طباعة التحديد فقط أم المستند بأكمله؟"
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "ال~كل"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "ال~تحديد"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "نتوء شمالي-غربي"
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "نتوء شمالي"
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "نتوء شمالي-شرقي"
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "نتوء غربي"
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "نتوء للخلف"
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "نتوء شرقي"
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "نتوء جنوبي-غربي"
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "نتوء جنوبي"
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "نتوء جنوبي-شرقي"
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 سم"
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 سم"
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 سم"
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 سم"
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~سم"
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 إنش"
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.~5 إنش"
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 إنش"
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 إنش"
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 إنش"
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "بلا تعبئة"
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
#, fuzzy
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "الشفافية"
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "المبدئيّ"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "الحدود"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "نمط الحدود"
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "بقية أنواع الترقيم…"
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
#, fuzzy
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "حسب المؤلف"
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "الصفحات"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "مسح التنسيق"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "أنماط أكثر..."
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "خيارات أكثر..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "اسم الخط"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "اسم الخط. اسم الخط الحالي غير متوفّر وسيُستبْدَل."
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "مخصّصة"
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "ألوان المستند"
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "لون المستند"
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "النتوء"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "تطبيق تشغيل/إيقاف النتوء"
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "إمالة لأسفل"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "إمالة لأعلى"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "إمالة لليسار"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "إمالة لليمين"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "تغيير عمق النتوء"
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "تغيير الاتجاه"
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "تغيير نوع التوجيه"
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "تغيير الإضاءة"
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "تغيير البياض"
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "تغيير سطح النتوء"
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "تغيير لون النتوء"
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "المفضل"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "أحمر:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "أخضر:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "أزرق:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "معمل الخطوط"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "تطبيق شكل معمل الخطوط"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "تطبيق ارتفاع الأحرف نفسه لمعمل الخطوط"
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "تطبيق محاذاة معمل الخطوط"
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "تطبيق تباعد أحرف معمل الخطوط"
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "مع"
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "النمط"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "و"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "عنصر تحكم الزاوية"
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "تحديد نقطة زاوية."
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "أعلى اليسار"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "أعلى الوسط"
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "أعلى اليمين"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "يسار الوسط"
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "وسط"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "يمين الوسط"
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "أسفل اليسار"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "أسفل الوسط"
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "أسفل اليمين"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "عنصر تحكم خط كفافي"
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "يمكنك هنا تعديل الخط الكفافي."
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "اختيار الأحرف الخاصة"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "اختيار الأحرف الخاصة في هذه المساحة."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "رمز الحرف "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "مطلوب إدخال في الحقل '#'. الرجاء كتابة قيمة."
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "النماذج"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "لم يتم تحديد عنصر تحكم"
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "الخصائص: "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "خصائص النموذج"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "ملاح النموذج"
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "النموذج"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "النموذج"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "وحدة تحكم مخفية"
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "عنصر تحكم"
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "السجل"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "من"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "إضافة حقل:"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "حدث خطأ أثناء الكتابة في قاعدة البيانات"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "خطأ في بنية عبارة الاستعلام"
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "تنوي حذف سجل واحد."
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "سيتم حذف # سجل."
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6586,331 +6592,337 @@ msgstr ""
"هل تريد المتابعة على أي حال؟"
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "شريط الملاحة"
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "العمود"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "تعيين الخاصية '#'"
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "إدراج في حاوية"
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "حذف #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "حذف # كائن"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "استبدال أحد عناصر الحاوية"
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "استبدال عنصر تحكم"
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "زر الضغط"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr "زر خيار"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "مربع نص"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "خانة اختيار"
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "فشلت التسمية"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "مربع مجموعة"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "مربع نص"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "حقل مُنسَّق"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "مربع تحرير وسرد"
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "مربع قائمة"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr "مربع تحرير وسرد"
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "زر صورة"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "التحكم بالصورة"
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "تحديد الملف"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "حقل التاريخ"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "حقل الوقت"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "حقل رقمي"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "حقل العملة"
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "حقل النمط"
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "حقل مُنسَّق"
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "زر الضغط"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "زر خيار"
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "فشلت التسمية"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "مربع مجموعة"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "زر صورة"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "التحكم بالصورة"
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "تحديد الملف"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "التحكم بالجدول "
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "شريط التمرير"
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "زر زيادة ونقصان"
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "شريط الملاحة"
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "تحديد متعدد"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "لا يوجد عناصر تحكم مرتبطة في النموذج الحالية!"
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (التاريخ)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (الوقت)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "ملاح الترشيح"
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "مرشّح"
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "أو"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "في النموذج الحالي، لا توجد عناصر تحكم صالحة يمكن استخدامها في طريقة عرض الجدول!"
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<حقل تلقائي>"
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "خطأ في بناء الجملة بعبارة SQL"
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "لا يمكن استخدام القيمة #1 مع LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "لا يمكن استخدام LIKE في هذا الحقل."
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "القيمة المدخلة ليست بالتاريخ الصالح. الرجاء إدخال تاريخ بتنسيق صالح على سبيل المثال MM/DD/YY."
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "لا يمكن مقارنة الحقل بعدد صحيح."
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "قاعدة البيانات لا تحتوي على الجدول المسمى \"#\"."
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "قاعدة البيانات لا تحتوي على جدول مسمى أو حتى استعلام \"#\"."
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "قاعدة البيانات تحتوي مسبقا على جدول أو عرض باسم \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "قاعدة البيانات تحتوي مسبقا على استعلام باسم \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "العمود \"#1\" مجهول في الجدول \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "لا يمكن مقارنة الحقل مع رقم ذي نقطة عائمة!"
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "لا يمكن مقارنة المعيار الذي تم إدخاله بهذا الحقل."
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "ملاح البيانات"
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (للقراءة فقط)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "الملف موجود بالفعل. هل تريد استبداله؟"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "تسمية #object#"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6920,7 +6932,7 @@ msgstr ""
"أتريد حقًّا حذف هذا النّموذج؟"
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6930,7 +6942,7 @@ msgstr ""
"أمتأكد من حذف السيرورة؟"
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6940,13 +6952,13 @@ msgstr ""
"أمتأكد من حذف العنصر؟"
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
-msgstr "هل ترغب بالفعل في حذف هذه الصفة '$ATTRIBUTENAME'؟"
+msgstr "هل ترغب بالفعل في حذف الصفة '$ATTRIBUTENAME'؟"
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6958,7 +6970,7 @@ msgstr ""
"أمتأكد من حذف التسليم؟"
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6970,1006 +6982,1005 @@ msgstr ""
"أمتأكد من حذف الرابط؟"
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "الاسم '%1' غير صالح في XML. الرجاء إدخال اسم مختلف."
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "البادئة '%1' غير صالحة في XML. الرجاء إدخال بادئة مختلفة."
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "الاسم '%1' موجود بالفعل. الرجاء إدخال اسم جديد."
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "التسليم يجب أن يكون له اسم."
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "إرسال"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "إحضار"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
#, fuzzy
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "لا شيء"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "السيرورة"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
#, fuzzy
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "المستندات:"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "الربط: "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "مرجع: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "إجراء: "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "طريقة: "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "استبدال: "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "إضافة عنصر"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "تحرير العنصر"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "حذف العنصر"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
-msgstr "إضافة صفة"
+msgstr "أضف صفة"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
-msgstr "تحرير الصفة"
+msgstr "حرّر الصفة"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
-msgstr "حذف الصفة"
+msgstr "احذف الصفة"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "إضافة ربط"
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "تحرير الربط"
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "حذف الربط"
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "إضافة طلب"
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "تحرير التسليم"
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "حذف التسليم"
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
#, fuzzy
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "العناصر"
#. U4Btb
-#: include/svx/strings.hrc:1270
-#, fuzzy
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
-msgstr "السمات"
+msgstr "الصفة"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
#, fuzzy
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "روابط"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
#, fuzzy
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "ت_عبير الرّبط:"
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "أتريد حقًّا إهمال استرجاع مستند %PRODUCTNAME؟"
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "يسار"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "يمين"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "وسط"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "عشري"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "وضع الإدراج. انقر للتّغيير إلى وضع الكتابة الفوقيّة."
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "وضع الكتابة الفوقيّة. انقر للتّغيير إلى وضع الإدراج."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "الكتابة على"
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "التوقيع الرقمي: توقيع المستند مقبول."
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "التوقيع الرقمي: توقيع المستند مقبول ولكن الشهادات تعذر تحقق منها."
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "التوقيع الرقمي: هذا المستند غير موقع."
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "التوقيع الرقمي: توقيع المستند والشهادة صحيحان، لكن لم يتم توقيع جميع أجزاء المستند."
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "لقد عُدّل المستند. انقر لحفظه."
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "لم يتم أي تعديل في المستند منذ آخر عملية حفظ."
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "يحمّل المستند..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "لائم الشّريحة إلى النّافذة الحاليّة."
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "لم يمكن تحميل كل كائنات الرسم الذكي SmartArt. الحفظ بـ مايكروسوفت أوفيس 2010 أو ما بعده سيتجنّب هذه المشكلة."
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "عامل التكبير. انقر يميناً لتغيير عامل التكبير او انقر لتفتح حواريّ التكبير."
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "قرّب"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "بعّد"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "٥٠٪"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "١٠٠٪"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "١٥٠٪"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "٢٠٠٪"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "صفحة كاملة"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "عرض الصفحة"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "المعاينة المُثلى"
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "بما في ذلك الأنماط"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "أنما~ط الفقرات"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "أنما~ط الخلايا"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "ابحث عن تنسيق"
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "استبدل بالتنسيق"
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "وصلت إلى نهاية المستند"
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "وصلت إلى نهاية المستند، مستمراً من البداية"
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "وصلت إلى نهاية الورقة"
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "لم يُعثر على مفتاح البحث"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "لم يُعثر على عنصر الإبحار"
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "وصلت إلى بداية المستند"
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "وصلنا إلى بداية المستند، مستمراً من النهاية"
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr "وصلت إلى أول تذكير، مستمراً من الأخير"
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr "وصلت إلى آخِر تذكير، مستمراً من الأول"
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "لوح الألوان"
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "مستبدل الألوان"
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "تأثيرات ثلاثية الأبعاد 3D"
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "كلمة السر غير صحيحة"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "كلمتا السر غير متطابقتين"
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "تنقيط دائرية صغيرة صلبة"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "تنقيط دائرية كبيرة صلبة"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "تنقيط ألماس صلب"
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "تنقيط مربعة كبيرة صلبة"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "تنقيط سهم مملوء يشير يميناً"
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "تنقيط سهم يشير يميناً"
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "تنقيط علامة صليب"
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "تنقيط علامة تأشير"
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "رقم 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "رقم 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "رقم (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "أرقام رومانية كبيرة I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "أحرف كبيرة ‪A) B) C)‬"
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "أحرف صغيرة ‪a) b) c)‬"
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "أحرف صغيرة ‪(a) (b) (c)‬"
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "أرقام رومانية صغيرة ‪i. ii. iii.‬"
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "عددي وعددي وأحرف صغيرة ونقطة دائرية صغيرة صلبة"
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "عددي وأحرف صغيرة ونقطة دائرية صغيرة صلبة"
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "عددي - حروف صغيرة - رومانية صغيرة - حروف كبيرة نقط دائرية صغيرة صلبة"
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "عددي"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "حروف رومانية كبيرة - حروف صغيرة - حروف رومانية صغيرة - حروف صغيرة - نقطة دائرية صغيرة صلبة"
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "حروف كبيرة - حروف رومانية كبيرة - حروف صغيرة - حروف رومانية صغيرة - نقطة دائرية صغيرة صلبة"
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "عددي مع كل المستويات الفرعية"
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "نقطة تأشير يمين، نقطة سهم تأشير يمين، نقطة ألماسية صلبة، نقطة دائرية صغيرة صلبة"
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "تعذر إنشاء ملف zip."
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "أنماط تصميم الجدول"
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "الإجراءات التي سيتم التراجع عنها: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "الإجراءات التي سيتم التراجع عنها: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "الإجراءات التي ستتم إعادتها: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "الإجراءات التي ستتم إعادتها: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "بحث"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "مطابقة الحالة"
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) f بكسل)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) بدقّة $(DPI) نقطة لكل بوصة"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) ك.بايت"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "صورة GIF"
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "صورة JPEG"
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "صورة PNG"
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "صورة TIFF"
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "صورة WMF"
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "صورة MET"
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "صورة PCT"
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "صورة SVG"
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "صورة BMP"
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "مجهول"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "حوّل"
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "وضع الصورة"
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "أحمر"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "أخضر"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "أزرق"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "الإضاءة"
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "التباين"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "جاما"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "الشفافية"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "اقتصاص"
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "الاتجاه المبدئيّ"
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "من أعلى إلى أسفل"
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "من أسفل إلى أعلى"
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "متراكم"
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "الهامش الأيسر: "
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "الهامش العلوي: "
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "الهامش الأيمن: "
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "الهامش السفلي: "
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "وصف الصفحة: "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "أحرف كبيرة"
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "أحرف صغيرة"
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "أحرف استهلالية رومانية"
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "أحرف صغيرة رومانية"
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "العربية"
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "بلا"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "بالعرض"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "بالطول"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "اليسار"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "اليمين"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "الكل"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "منعكس"
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "المؤلف: "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "التاريخ: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "النص: "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "خلفية الحرف"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "لوح الألوان"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7977,1951 +7988,2054 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "لاتيني أساسي"
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "لاتيني-1"
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "لاتيني موسّع-A"
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "لاتيني موسّع-A"
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "ملحقات IPA"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "أحرف معدّل المسافات"
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "ضم علامات المميزة"
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "يوناني أساسي"
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "رموز يونانية وقبطية"
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "السيريلية"
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "الأرمنية"
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "عبري أساسي"
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "عبري موسّع"
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "عربي أساسي"
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "عربي موسّع"
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "ديفاناغاري"
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "البنغالية"
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "غورموكي"
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "الجيوجاراتية"
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "الأورية"
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "التاميلية"
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "التيلوجو"
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "الكانادية"
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "المالايلامية"
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "التايلاندية"
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "اللاوية"
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "الجورجية الأساسية"
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "الجورجية الموسّعة"
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "هانغول جامو"
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "إضافات لاتينية موسعة"
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "يوناني موسّع"
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "علامات تنقيط عامّة"
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "مرتفع ومنخفض"
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "رموز العملة"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "ضم الرموز المميزة"
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "رموز كالأحرف"
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "أشكال الأرقام"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "الأسهم"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "مُعاملات رياضية"
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "تقنية متنوعة"
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "تحكم بالصور"
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "تعرف بصري على الأحرف"
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "تضمين النظام الذي يحوي الحروف والأرقام معا"
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "رسم مربع"
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "عناصر الكتلة"
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "أشكال هندسية"
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "رموز مختلفة"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "رموز تزيينية"
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "رموز وعلامات تنقيط صينية ويابانية وكورية"
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "هيراجانا"
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "كاتاكانا"
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "بوبوموفو"
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "جامو المتوافق مع هانغول"
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "متفرقات صينية ويابانية وكورية"
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "أحرف وأشهر صينية ويابانية وكورية في دائرة"
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "توافق الصينية واليابانية والكورية"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "هانغول"
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "أيديوغرام موحّد صيني وياباني وكوري"
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات أ)"
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "منطقة استعمال خاص"
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "توافق إيديوغرام الصينية واليابانية والكورية"
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "نماذج عروض تقديمية أبجدية"
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "نماذج عروض تقديمية عربية-A"
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "ضم علامات النصف"
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "نماذج توافق الصينية واليابانية والكورية"
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "أنواع النماذج الصغيرة"
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "نماذج عروض تقديمية عربية-B"
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "نماذج نصف العرض وكامل العرض"
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "خاصة"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "مقاطع يي"
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "جذور يي"
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "إيطالي قديم"
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "القوطية"
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "الديسيريت"
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "رموز موسيقية بيزنطية"
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "رموز موسيقية"
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "رموز رياضية أبجدية رقمية"
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات ب)"
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات ج)"
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات د)"
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "إديوگرافات ص‌ي‌ك توافقية (تكميلي)"
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "الوسوم"
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "سريلي تكميلي"
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "تحديدات مختلفة"
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "مساحة تكميلية للاستعمال الخاص-أ"
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "مساحة تكميلية للاستعمال الخاص-ب"
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "اللمبو"
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "تاي لي"
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "رموز الخمارية"
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "امتدادات صوتية"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "رموز وأسهم متفرقة"
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "رموز يي جِن السداسية"
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "مقاطع خطية ب"
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "صور معنوية خطية ب"
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "أرقام إيجية"
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "الأوغاريتية"
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "الشفيانية"
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "العثمانية"
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "سينهالا"
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "التيبتية"
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "ميانمار"
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "الخميرية"
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "الأوغمية"
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "روني"
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "السريانية"
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "تانا"
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "الحبشية"
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "شيروكي"
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "مقاطع الأرومي الكاناديين"
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "المنغولية"
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "رموز رياضية متفرقة-A"
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "أسهم إضافية-A"
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "أحرف بريل"
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "أسهم إضافية-B"
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "رموز رياضية متفرقة-B"
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "تحميل العلامات الجذرية الصينية واليابانية والكورية"
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "جذور كانغ سي"
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "أحرف وصف إيديوغرامية"
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "فلبينية"
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "هانونو"
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "تاغبانوا"
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "بوهِد"
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "كانبَن"
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "بوبوموفو موسّع"
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "صوتيّات كاتاكانا"
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "تركيبات ص‌ي‌ك"
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "مقاطع القبرصية"
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "رموز تاي زوان دجن"
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "تكميليات منتقيات التنويعات"
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "رموز موسيقية يونانية قديمة"
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "أرقام يونانية قديمة"
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "عربي تكميلي"
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "البجينيزية"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "تكميلة علامات تشكيل مركبة"
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "القبطية"
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "إثيوبي ممتد"
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "إثيوبي تكميلي"
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "جورجي تكميلي"
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "گلاگولي"
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "خاروشذي"
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "حروف النغمات المغيرة"
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "تاي لو الجديد"
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "فارسية قديمة"
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "امتدادات صوتية تكميلية"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "ترقيم تكميلي"
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "سيولتي ناگري"
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "تيفيناغ"
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "نماذج رأسية"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "إنكو"
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "بالينية"
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "لاتيني موسّع-ج"
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "لاتيني موسّع-د"
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "فاگس-با"
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "فينيقية"
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "مسماري"
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "أعداد وترقيم مسماري"
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "تعداد أرقام رود"
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "سُنداني"
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "ليبشا"
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "أُول تشيكي"
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "سريلي موسّع-أ"
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "ڤاي"
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "سريلي موسّع-ب"
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "سوراشترا"
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "كاياه لي"
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "ريجانگ"
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "تشام"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "رموز أثرية"
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "قرص فستوس"
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "ليشياني"
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "كاريان"
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "ليديان"
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "مربعات ماهجونغ"
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "مربعات دومينو"
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "سامري"
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "مقاطع الكنديين الأصليين موسع"
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "تاي ثام"
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "امتدادات ڤيدية"
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "ليسو"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "باموم"
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "أشكال الأعداد الهندية الشائعة"
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "ديفاناغاري موسّع"
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "هنگول جامو موسّع-أ"
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "جاوية"
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "ميانمار موسّع-أ"
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "تاي ڤيت"
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "ميتي مايك"
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "هنگول جامو موسّع-ب"
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "آرامي ملكي"
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "عربي جنوبي قديم"
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "أڤستانية"
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "بارثيان نحتي"
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "بهلوي نحتي"
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "تركي قديم"
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "رموز أرقام رومية"
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "كياثي"
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "هيروغليفي مصري"
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "أبجدي رقمي محاط تكميلي"
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "إديوگرافات محاطة تكميلي"
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "مندياني"
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "باتاك"
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "إثيوبي موسّع-أ"
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "برهمي"
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "باموم تكميلي"
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "كانا تكميلي"
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "أوراق لعب"
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "رموز وبكتوجرافات متنوعة"
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "صور تعبيرية"
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "رموز السفر والخرائط"
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "رموز الخيميا"
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "عربي موسّع-أ"
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "رموز رياضية عربية أبجدية"
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "شاكما"
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "ميتي مايك تكميلي"
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "مروية متصلة"
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "مروية هيروغليفية"
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "مياو"
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "شارادا"
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "سورا سُمپِنگ"
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "سُنداني تكميلي"
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "تاكري"
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "تكميلة علامات تشكيل مركبة"
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "لاتيني موسّع-A"
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "خطّي"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "وضع"
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "ميانمار موسّع-أ"
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "عربي جنوبي قديم"
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "أسهم إضافية-A"
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات أ)"
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "سريلي موسّع-أ"
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "جورجي تكميلي"
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "جديد"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "الإستخدام"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات أ)"
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "ميانمار موسّع-أ"
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "سريلي تكميلي"
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -9931,37 +10045,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -9971,12 +10085,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. oFcMf
#: include/svx/svxitems.hrc:33
@@ -10066,7 +10180,7 @@ msgstr "لون الخط"
#: include/svx/svxitems.hrc:47
msgctxt "RID_ATTR_NAMES"
msgid "Kerning"
-msgstr "تقنين الأحرف"
+msgstr "التقنين"
#. eJdFK
#: include/svx/svxitems.hrc:48
@@ -10305,10 +10419,9 @@ msgstr "الدوران"
#. W8gBY
#: include/svx/svxitems.hrc:87
-#, fuzzy
msgctxt "RID_ATTR_NAMES"
msgid "Character scaling"
-msgstr "تباعد المحارف"
+msgstr "تحجيم المحارف"
#. d574i
#: include/svx/svxitems.hrc:88
@@ -10775,7 +10888,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "خط حد قطري من أسفل اليسار إلى أعلى اليمين"
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10783,14 +10896,32 @@ msgstr "خط حد قطري من أسفل اليسار إلى أعلى اليمي
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr "اعتيادي"
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr "ثخين"
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr "مائل"
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
-msgstr ""
+msgstr "خاطيء"
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
-msgstr ""
+msgstr "صحيح"
#. hPpj7
#. SVX_NUM_NUMBER_NONE
@@ -11323,7 +11454,7 @@ msgstr "$(ERR) أثناء إنشاء قاموس."
#: svx/inc/svxerr.hrc:39
msgctxt "RID_SVXERRCTX"
msgid "$(ERR) setting background attribute."
-msgstr "$(ERR) أثناء تعيين سمة الخلفية."
+msgstr "$(ERR) أثناء تعيين صفة الخلفية."
#. YFjdh
#: svx/inc/svxerr.hrc:41
@@ -13694,176 +13825,44 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "إدراج عمود"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "مربع نص"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr "خانة اختيار"
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr "مربع تحرير وسرد"
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "مربع قائمة"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "حقل التاريخ"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "حقل الوقت"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "حقل رقمي"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr "حقل العملة"
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr "حقل النمط"
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr "حقل مُنسَّق"
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr ""
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "ا_ستبدل بِ‍"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "مربع نص"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr "خانة اختيار"
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr "مربع تحرير وسرد"
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "مربع قائمة"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "حقل التاريخ"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "حقل الوقت"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "حقل رقمي"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr "حقل العملة"
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr "حقل النمط"
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr "حقل مُنسَّق"
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr ""
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "حذف عمود"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr "أ_خفِ العمود"
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr "أ_ظهر العمود"
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "أ_خرى..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
msgctxt "colsmenu|all"
msgid "_All"
msgstr "ال_كل"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
#, fuzzy
msgctxt "colsmenu|column"
msgid "Column..."
@@ -14020,144 +14019,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "معلومات الصورة"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-#, fuzzy
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "مربع نص"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-#, fuzzy
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "زر"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-#, fuzzy
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "فشلت التسمية"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-#, fuzzy
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "مربع مجموعة"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-#, fuzzy
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "مربع قائمة"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-#, fuzzy
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr "خانة اختيار"
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-#, fuzzy
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr "~زر خيار"
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-#, fuzzy
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr "مربع تحرير وسرد"
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-#, fuzzy
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "زر صورة"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-#, fuzzy
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "تحديد الملف"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-#, fuzzy
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "حقل التاريخ"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-#, fuzzy
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "حقل الوقت"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-#, fuzzy
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "حقل رقمي"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-#, fuzzy
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr "حقل العملة"
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-#, fuzzy
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr "حقل النمط"
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-#, fuzzy
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr "التحكم بالصورة"
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-#, fuzzy
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr "حقل مُنسَّق"
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-#, fuzzy
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr "شريط التمرير"
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr "زر زيادة ونقصان"
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr "شريط الملاحة"
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
@@ -14195,7 +14056,7 @@ msgstr "أر_سل بلاغ الانهيار"
#: svx/uiconfig/ui/crashreportdlg.ui:50
msgctxt "crashreportdlg|btn_cancel"
msgid "Do _Not Send"
-msgstr ""
+msgstr "_لا ترسل"
#. afExy
#: svx/uiconfig/ui/crashreportdlg.ui:64
@@ -14231,7 +14092,7 @@ msgstr "أ_ضف..."
#: svx/uiconfig/ui/datanavigator.ui:16
msgctxt "datanavigator|extended_tip|instancesadd"
msgid "Opens a dialog where you can add a new instance."
-msgstr ""
+msgstr "يفتح حواريا حيث يمكنك إضافة سيرورة جديدة."
#. BdRnW
#: svx/uiconfig/ui/datanavigator.ui:25
@@ -14243,7 +14104,7 @@ msgstr "_حرّر..."
#: svx/uiconfig/ui/datanavigator.ui:29
msgctxt "datanavigator|extended_tip|instancesedit"
msgid "Opens a dialog where you can modify the current instance."
-msgstr ""
+msgstr "يفتح حواريا حيث يمكنك تعديل السيرورة الحالية."
#. GJFJh
#: svx/uiconfig/ui/datanavigator.ui:38
@@ -14255,7 +14116,7 @@ msgstr "أ_زل..."
#: svx/uiconfig/ui/datanavigator.ui:42
msgctxt "datanavigator|extended_tip|instancesremove"
msgid "Deletes the current instance. You cannot delete the last instance."
-msgstr ""
+msgstr "يحذف السيرورة الحالية. لا يمكنك حذف آخر سيرورة."
#. YM7Tk
#: svx/uiconfig/ui/datanavigator.ui:57
@@ -14267,7 +14128,7 @@ msgstr "أ_ظهر التّفاصيل"
#: svx/uiconfig/ui/datanavigator.ui:61
msgctxt "datanavigator|extended_tip|instancesdetails"
msgid "Switches the display to show or hide details."
-msgstr ""
+msgstr "يبدّل العَرض ليُظهر أو يخفي التفاصيل."
#. rMqsT
#: svx/uiconfig/ui/datanavigator.ui:74
@@ -14327,7 +14188,7 @@ msgstr ""
#: svx/uiconfig/ui/datanavigator.ui:224
msgctxt "datanavigator|instance"
msgid "Instance"
-msgstr "السّيرورة"
+msgstr "السيرورة"
#. 3Yg5b
#: svx/uiconfig/ui/datanavigator.ui:271
@@ -14346,13 +14207,13 @@ msgstr "الرّبطات"
#: svx/uiconfig/ui/datanavigator.ui:335
msgctxt "datanavigator|instances"
msgid "_Instances"
-msgstr "ال_سّيرورات"
+msgstr "ال_سيرورات"
#. VtqeQ
#: svx/uiconfig/ui/datanavigator.ui:349
msgctxt "datanavigator|extended_tip|instances"
msgid "This button has submenus to add, edit or remove instances."
-msgstr ""
+msgstr "لهذا الزر قوائم فرعية لإضافة أو تحرير أو إزالة السيرورات."
#. f7Awc
#: svx/uiconfig/ui/datanavigator.ui:368
@@ -14382,7 +14243,7 @@ msgstr "الموصّلات"
#: svx/uiconfig/ui/defaultshapespanel.ui:139
msgctxt "defaultshapespanel|label4"
msgid "Basic Shapes"
-msgstr "الأشكال الأساسية"
+msgstr "أشكال أساسية"
#. 6QEJj
#: svx/uiconfig/ui/defaultshapespanel.ui:171
@@ -17807,7 +17668,7 @@ msgstr "وحدة التخزين"
#: svx/uiconfig/ui/namespacedialog.ui:18
msgctxt "namespacedialog|NamespaceDialog"
msgid "Namespaces for Forms"
-msgstr ""
+msgstr "نطاقات أسماء النماذج"
#. WaBQW
#: svx/uiconfig/ui/namespacedialog.ui:111
@@ -17819,7 +17680,7 @@ msgstr "أ_ضف..."
#: svx/uiconfig/ui/namespacedialog.ui:118
msgctxt "namespacedialog|extended_tip|add"
msgid "Adds a new namespace to the list."
-msgstr ""
+msgstr "يضيف اسم نطاق جديد إلى اللائحة."
#. PQJdj
#: svx/uiconfig/ui/namespacedialog.ui:130
@@ -17831,39 +17692,37 @@ msgstr "_حرّر..."
#: svx/uiconfig/ui/namespacedialog.ui:137
msgctxt "namespacedialog|extended_tip|edit"
msgid "Edits the selected namespace."
-msgstr ""
+msgstr "يحرر اسم النطاق المحدد."
#. 6EYf8
#: svx/uiconfig/ui/namespacedialog.ui:156
msgctxt "namespacedialog|extended_tip|delete"
msgid "Deletes the selected namespace."
-msgstr ""
+msgstr "يحذف اسم النطاق المحدد."
#. VNMFK
#: svx/uiconfig/ui/namespacedialog.ui:196
-#, fuzzy
msgctxt "namespacedialog|prefix"
msgid "Prefix"
-msgstr "السّاب_قة:"
+msgstr "السّاب_قة"
#. AZm4M
#: svx/uiconfig/ui/namespacedialog.ui:209
-#, fuzzy
msgctxt "namespacedialog|url"
msgid "URL"
-msgstr "عنوان URL"
+msgstr "الرابط"
#. c6DzL
#: svx/uiconfig/ui/namespacedialog.ui:220
msgctxt "namespacedialog|extended_tip|namespaces"
msgid "Lists the currently defined namespaces for the form."
-msgstr ""
+msgstr "يسرد نطاقات الأسماء المعرَّفة حاليا للنموذج."
#. 7hgpE
#: svx/uiconfig/ui/namespacedialog.ui:237
msgctxt "namespacedialog|label1"
msgid "Namespaces"
-msgstr ""
+msgstr "نطاقات الأسماء"
#. HD9wB
#: svx/uiconfig/ui/navigationbar.ui:129
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 4d581fcc7ae..a6d3c4a2858 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:18+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-19 16:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ar/>\n"
"Language: ar\n"
@@ -98,7 +98,7 @@ 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%."
#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
@@ -127,12 +127,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -142,37 +142,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -182,12 +182,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. DdjvG
#: sw/inc/app.hrc:29
@@ -592,13 +592,13 @@ msgstr "لا يمكن تعديل بنية الجداول المربوطة."
#: sw/inc/error.hrc:55
msgctxt "RID_SW_ERRHDL"
msgid "Not all attributes could be read."
-msgstr "لا يمكن قراءة كل الصفات."
+msgstr "ليس كل الصفات أمكن قرائتها."
#. sFAMg
#: sw/inc/error.hrc:56
msgctxt "RID_SW_ERRHDL"
msgid "Not all attributes could be recorded."
-msgstr "لا يمكن تسجيل كل الصفات."
+msgstr "ليس كل الصفات أمكن تسجيلها."
#. a5Kkw
#: sw/inc/error.hrc:57
@@ -722,25 +722,25 @@ msgstr "طراز الخط"
#: sw/inc/inspectorproperties.hrc:40
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Line Width"
-msgstr ""
+msgstr "عُرض الخط"
#. MVL7X
#: sw/inc/inspectorproperties.hrc:41
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Outer Line Width"
-msgstr ""
+msgstr "عُرض الخط الخارجي"
#. c7Qfp
#: sw/inc/inspectorproperties.hrc:42
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Bottom Border"
-msgstr ""
+msgstr "الحدّ السفلي"
#. EWncC
#: sw/inc/inspectorproperties.hrc:43
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Bottom Border Distance"
-msgstr ""
+msgstr "مسافة الحد السفلي"
#. rLqgx
#: sw/inc/inspectorproperties.hrc:44
@@ -770,13 +770,13 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:48
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Auto Kerning"
-msgstr ""
+msgstr "تقنين تلقائي للمحارف"
#. jP3gx
#: sw/inc/inspectorproperties.hrc:49
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Auto Style Name"
-msgstr ""
+msgstr "اسم الطراز التلقائي للمحارف"
#. BB8yt
#: sw/inc/inspectorproperties.hrc:50
@@ -854,163 +854,163 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:62
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Difference Height"
-msgstr ""
+msgstr "ارتفاع اختلاف المحرف"
#. ccULG
#: sw/inc/inspectorproperties.hrc:63
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Difference Height Asian"
-msgstr ""
+msgstr "ارتفاع اختلاف المحرف آسيوي"
#. LVABm
#: sw/inc/inspectorproperties.hrc:64
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Difference Height Complex"
-msgstr ""
+msgstr "ارتفاع اختلاف المحرف مركّب"
#. B2CTr
#: sw/inc/inspectorproperties.hrc:65
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Emphasis"
-msgstr ""
+msgstr "تشديد المحارف"
#. bXxkA
#: sw/inc/inspectorproperties.hrc:66
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Escapement"
-msgstr ""
+msgstr "مجاوزة المحارف"
#. QikGB
#: sw/inc/inspectorproperties.hrc:67
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Escapement Height"
-msgstr ""
+msgstr "ارتفاع مجاوزة المحارف"
#. t2UDu
#: sw/inc/inspectorproperties.hrc:68
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Flash"
-msgstr ""
+msgstr "وميض المحارف"
#. XXqBJ
#: sw/inc/inspectorproperties.hrc:69
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Char Set"
-msgstr ""
+msgstr "طقم محارف خط المحرف"
#. ZonDP
#: sw/inc/inspectorproperties.hrc:70
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Char Set Asian"
-msgstr ""
+msgstr "طقم محارف خط المحرف الآسيوي"
#. qrfZA
#: sw/inc/inspectorproperties.hrc:71
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Char Set Complex"
-msgstr ""
+msgstr "طقم محارف خط المحرف المركّب"
#. CGEVw
#: sw/inc/inspectorproperties.hrc:72
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Family"
-msgstr ""
+msgstr "عائلة خط المحارف"
#. bYGhE
#: sw/inc/inspectorproperties.hrc:73
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Family Asian"
-msgstr ""
+msgstr "عائلة خط المحارف آسيوي"
#. 72RGq
#: sw/inc/inspectorproperties.hrc:74
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Family Complex"
-msgstr ""
+msgstr "عائلة خط المحارف مركّب"
#. Ef9Rc
#: sw/inc/inspectorproperties.hrc:75
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Name"
-msgstr ""
+msgstr "اسم خط المحارف"
#. EcTvq
#: sw/inc/inspectorproperties.hrc:76
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Name Asian"
-msgstr ""
+msgstr "اسم خط المحارف آسيوي"
#. jrLqT
#: sw/inc/inspectorproperties.hrc:77
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Name Complex"
-msgstr ""
+msgstr "اسم خط المحارف مركّب"
#. WtA4i
#: sw/inc/inspectorproperties.hrc:78
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch"
-msgstr ""
+msgstr "انحدار خط المحارف"
#. kHGrk
#: sw/inc/inspectorproperties.hrc:79
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch Asian"
-msgstr ""
+msgstr "انحدار خط المحارف آسيوي"
#. KVfXe
#: sw/inc/inspectorproperties.hrc:80
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Pitch Complex"
-msgstr ""
+msgstr "انحدار خط المحارف مركّب"
#. CQWM3
#: sw/inc/inspectorproperties.hrc:81
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name"
-msgstr ""
+msgstr "اسم طراز خط المحارف"
#. h6gAC
#: sw/inc/inspectorproperties.hrc:82
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name Asian"
-msgstr ""
+msgstr "اسم طراز خط المحارف آسيوي"
#. Tm4Rb
#: sw/inc/inspectorproperties.hrc:83
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Font Style Name Complex"
-msgstr ""
+msgstr "اسم طراز خط المحارف مركّب"
#. AQzKB
#: sw/inc/inspectorproperties.hrc:84
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height"
-msgstr ""
+msgstr "ارتفاع المحارف"
#. zqVBR
#: sw/inc/inspectorproperties.hrc:85
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height Asian"
-msgstr ""
+msgstr "ارتفاع المحارف آسيوي"
#. FNnH2
#: sw/inc/inspectorproperties.hrc:86
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Height Complex"
-msgstr ""
+msgstr "ارتفاع المحارف مركّب"
#. 3DzPD
#: sw/inc/inspectorproperties.hrc:87
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Hidden"
-msgstr ""
+msgstr "المحرف مخفي"
#. TkovG
#: sw/inc/inspectorproperties.hrc:88
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Highlight"
-msgstr ""
+msgstr "تمييز المحارف"
#. T44dN
#: sw/inc/inspectorproperties.hrc:89
@@ -1022,7 +1022,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:90
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Kerning"
-msgstr ""
+msgstr "تقنين المحارف"
#. CFpCB
#: sw/inc/inspectorproperties.hrc:91
@@ -1564,10 +1564,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2268,1504 +2268,1559 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "محارف الحواشي"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "رقم الصفحة"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "محارف الواصفات"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "أحرف استهلالية"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "علامات ترقيم"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr ""
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "رابط شابكة"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "رابط شابكة مُزار"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "حافظ مكان"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "وصلة فهرس"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "أحرف التعليق الختامي"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "ترقيم الأسطر"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "مُدخل في الفهرس الرئيسي"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "مربط الحاشية"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "مربط الحاشية الختامية"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr "روبي"
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "رموز الترقيم الرأسي"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "تأكيد"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "تأكيد قوي"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "نص المصدر"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "مثال"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "مُدخل المستخدم"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "متغير"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "تعريف"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "آلة كاتبة"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "إطار"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "رسوميات"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "معادلة"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "تلويحة"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "علامة مائيّة"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "تسميات"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr "طراز الفقرة المبدئي"
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "متن النص"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "إزاحة السطر الأول"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "إزاحة معلّقة"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "إزاحة متن النص"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr "إطراء ختامي"
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "توقيع"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "عنوان رئيسي"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr ""
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "فهرس"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "إزاحة القائمة"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "تلويحة"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "عنوان رئيسي ١"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "عنوان رئيسي ٢"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "عنوان رئيسي ٣"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "عنوان رئيسي ٤"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "عنوان رئيسي ٥"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "عنوان رئيسي ٦"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "عنوان رئيسي ٧"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "عنوان رئيسي ٨"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "عنوان رئيسي ٩"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "عنوان رئيسي ١٠"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "بداية الترقيم ١"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "ترقيم ١"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "نهاية الترقيم ١"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "متابعة الترقيم ١"
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "بداية الترقيم ٢"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "ترقيم ٢"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "نهاية الترقيم ٢"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "متابعة الترقيم ٢"
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "بداية الترقيم ٣"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "ترقيم ٣"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "نهاية الترقيم ٣"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "متابعة الترقيم ٣"
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "بداية الترقيم ٤"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "ترقيم ٤"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "نهاية الترقيم ٤"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "متابعة الترقيم ٤"
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "بداية الترقيم ٥"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "ترقيم ٥"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "نهاية الترقيم ٥"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "متابعة الترقيم ٥"
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr ""
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr ""
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr ""
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr ""
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr ""
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr ""
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr ""
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr ""
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr ""
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr ""
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr ""
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr ""
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr ""
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr ""
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr ""
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr ""
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr ""
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr ""
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr ""
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr ""
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "ترويسة"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "الترويسة اليسرى"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "الترويسة اليمنى"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "تذييل"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "تذييل أيمن"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "تذييل أيسر"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "محتويات الجدول"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "رأس الجدول"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr "محتويات الإطار"
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "حاشية"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "تعليق ختامي"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "واصفة"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "رسم توضيحي"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "الجدول"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "النص"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "الرسم"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr ""
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "عنوان الفهرس"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "فهرس ١"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "فهرس ٢"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "فهرس ٣"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "فاصل الفهرس"
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "عنوان المحتويات"
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "المحتويات ١"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "المحتويات ٢"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "المحتويات ٣"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "المحتويات ٤"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "المحتويات ٥"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "المحتويات ٦"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "المحتويات ٧"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "المحتويات ٨"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "المحتويات ٩"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "المحتويات ١٠"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "عنوان فهرس المستخدم"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "فهرس المستخدم ١"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "فهرس المستخدم ٢"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "فهرس المستخدم ٣"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "فهرس المستخدم ٤"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "فهرس المستخدم ٥"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "فهرس المستخدم ٦"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "فهرس المستخدم ٧"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "فهرس المستخدم ٨"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "فهرس المستخدم ٩"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "فهرس المستخدم ١٠"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "اقتباس"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr ""
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr ""
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "عنوان فهرس الكائنات"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "فهرس الكائنات ١"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "عنوان فهرس الجداول"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "فهرس الجداول ١"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "عنوان بيبلوجرافيا"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "بيبلوجرافيا ١"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "المسمى الوظيفي"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "عنوان ثانوي"
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "الاقتباسات"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "نص منسّق مسبقًا"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "خط أفقي"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "محتويات القائمة"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "عنوان القائمة"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr ""
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "الصفحة الأولى"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "الصفحة اليسرى"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "الصفحة اليمنى"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "الفهرس"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "حاشية"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "تعليق ختامي"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "بالعرض"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "ترقيم ٣٢١"
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "ترقيم ABC"
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr "ترقيم abc"
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "ترقيم IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "ترقيم ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr ""
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr ""
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr ""
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr ""
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr ""
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "عمود واحد"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "عمودين متساويين"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "ثلاثة أعمدة متساوية"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "عمودين غير متساويين (الأول أكبر من الثاني)"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "عمودين غير متساويين (الثاني أكبر من الأول)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr ""
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "أنماط الفقرات"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "أنماط المحارف"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "أنماط الإطارات"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "أنماط الصفحات"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "أنماط القوائم"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
-msgstr "أنماط الجداول"
+msgstr "طُرُز الجداول"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "مظروف"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "التسميات"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "مستند %PRODUCTNAME %PRODUCTVERSION نصّيّ"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "تعذّر فتح المستند."
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "تعذّر إنشاء المستند."
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "تعذر العثور على المُرشّح."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "اسم المستند الرّئيس و مساره"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "اسم مستند HTML و مساره"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "حرّر البرنامج النصي"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "علامة"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr ""
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr ""
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr ""
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[بلا]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "بداية"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "نهاية"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "فوق"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "تحت"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "للقراءة فقط"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "أدلة ”النص التلقائي“ هي للقراءة فقط. هل تريد فتح مربع حوار إعدادات المسار؟"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "إحصائيات"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "يستورد المستند..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "يصدّر المستند..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "يحفظ المستند..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "يرقّم الصفحات..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "ينسّق المستند آليا..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "بحث..."
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "خطاب"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "دقّق الإملاء..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "فصل المقاطع..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "يدرج الفهرس..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "يحدّث الفهرس..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "ينشأ التلخيص..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "تكييف الكائنات..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "الجدول"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "صورة"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "كائن"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "إطار"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "شكل"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "قسم"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "ترقيم"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "صفحة فارغة"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "الملخص: "
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "يفصلها: "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "مخطط تفصيلي: مستوى "
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "النمط: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "رقم الصفحة: "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "فاصل قبل الصفحة الجديدة"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "نص غربي: "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "نص آسيوي: "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr "نص تخطيط النص المركّب: "
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "مؤلف مجهول"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "احذف ~كل تعليقات $1"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "أ~خفِ كل تعليقات $1"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr "ترقيم الفصول"
@@ -3773,14 +3828,14 @@ msgstr "ترقيم الفصول"
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "المحدَّد: $1، $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3793,7 +3848,7 @@ msgstr[5] "$1 كلمة"
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3807,7 +3862,7 @@ msgstr[5] "$1 حرف"
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1، $2"
@@ -3815,7 +3870,7 @@ msgstr "$1، $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3829,7 +3884,7 @@ msgstr[5] "$1 كلمة"
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3841,91 +3896,91 @@ msgstr[4] "$1 حرفا"
msgstr[5] "$1 حرف"
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "حوِّل النص إلى جدول"
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "أضِف تنسيق تلقائي"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "الاسم"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "احذف التنسيق التلقائي"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "سيُحذف التنسيق التلقائي التالي:"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "تغيير اسم التنسيق التلقائي"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "أ~غلق"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "يناير"
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "فبراير"
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "مارس"
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "شمال"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "وسط"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "جنوب"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "مجموع"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3937,416 +3992,416 @@ msgstr ""
"حاول مجددًا باستخدام اسم مختلف."
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "عددي"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "صفوف"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "عمود"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "تحرير مُدخل في الببلوجرافيا"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "إدراج مُدخل في الببلوجرافيا"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "التباعد بين %1 و %2"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "عرض العمود %1"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "جدول %PRODUCTNAME رايتر"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "إطار %PRODUCTNAME رايتر"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "صورة %PRODUCTNAME رايتر"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "كائنات OLE أخرى"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr "يجب ألا يحتوي اسم الجدول على مسافات."
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr "خلايا الجدول المحدّدة معقّدة و لا يمكن دمجها."
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "تعذّر ترتيب التّحديد"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "انقر على الكائن"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "قبل إدراج النص التلقائي"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "بعد إدراج النص التلقائي"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "الفأرة فوق الكائن"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "شغل الرابط"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "ابتعاد الفأرة عن الكائن"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "حُمّلت الصورة بنجاح"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "أُلغِي تحميل الصورة"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "تعذّر تحميل الصّورة"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "إدخال أحرف هجائية رقميّة"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "إدخال أحرف غير هجائيّة رقميّة"
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "تحجيم الإطار"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "تحريك الإطار"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "عناوين رئيسية"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "جداول"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "الصّور"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "كائنات OLE"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "العلامات"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "الأقسام"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "روابط"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "مراجع"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "الفهارس"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "كائنات رسومية"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "تعليقات"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "عنوان رئيسي ١"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "هذا المحتوى من الفصل الأول. هذا مدخل دليل المستخدم."
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "عنوان رئيسي ١.١"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr "هذا المحتوى من الفصل ١.١. هذا مدخل جدول المحتويات."
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "عنوان رئيسي ١.٢"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr "هذا المحتوى من الفصل ١.٢. هذه الكلمة الرئيسية هي المدخل الرئيسي."
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "جدول ١: هذا جدول ١"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "صورة ١: هذه هي الصّورة ١"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr ""
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "عنوان رئيسي"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "جدول"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "صورة"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "علامة"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "قسم"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "رابط"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "مرجع"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "فهرس"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "تعليق"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "كائن درو"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "تنسيقات إضافية..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[نظام]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4356,626 +4411,626 @@ msgstr ""
"في مستند آخر"
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "فصل المقاطع"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "غير ممكن"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "حذف $1"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "إدراج $1"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "كتابة على: $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "فقرة جديدة"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "نقل"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "تطبيق الصفات"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "تطبيق الأنماط: $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "تصفير الصفات"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "تغيير النمط: $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "إدراج ملف"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "إدراج نص تلقائي"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "حذف العلامة: $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "إدراج العلامة: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "ترتيب جدول"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "ترتيب نص"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "إدراج جدول: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "تحويل النص إلى جدول"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "تحويل الجدول إلى نص"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "نسخ: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "استبدال $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "إدراج فاصل صفحات"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "إدراج فاصل أعمدة"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "إدراج مظروف"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "نسخ: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "نقل: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "إدراج رسم %PRODUCTNAME بياني"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "إدراج إطار"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "حذف إطار"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "تنسيق تلقائي"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "رأس الجدول"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "استبدال: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "إدراج قسم"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "حذف قسم"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "تعديل قسم"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "تعديل القيم المبدئية"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "استبدال النمط: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "حذف فاصل صفحة"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "تصحيح النص"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "رفع/خفض درجة المخطّط"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "نقل المخطّط"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "إدراج ترقيم"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "رفع المستوى"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "خفض مستوى"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "نقل الفقرات"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "إدراج كائن رسم: $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "تشغيل/إيقاف الترقيم"
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "زيادة الإزاحة"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "تقليل الإزاحة"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "إدراج واصفة: $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "إعادة بدء الترقيم"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "عدّل الحاشية"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "قبول التغيير: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "رفض التغيير: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "تقسيم جدول"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "إيقاف صفة"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "التصحيح الآلي"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "دمج جدول"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "تغيير حالة الأحرف"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "حذف ترقيم"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "كائنات الرسم: $1"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "تجميع كائنات الرسم"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "تفكيك كائنات الرسم"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "حذف كائنات الرسم"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "استبدال صورة"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "حذف صورة"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "تطبيق صفات جدول"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "تنسيق جدول تلقائيّا"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "إدراج عمود"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "إدراج الصف"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "حذف صف/عمود"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "حذف عمود"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "حذف صف"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "تقسيم خلايا"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "دمج خلايا"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "تنسيق خلية"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "إدراج فهرس/جدول"
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "حذف فهرس/جدول"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "نسخ جدول"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "نسخ جدول"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "ضبط المؤشر"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "عدّل خيارات الحاشية"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "مقارنة المستند"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "تطبيق نمط الإطار: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "إعداد روبي"
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "أدرِج حاشية"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "إدراج زر مسار"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "أدرِج رابط"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "إزالة محتوى مخفيّ"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "تغيّر جدول/فهرس"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "”"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "“"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "…"
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "تحديد متعدد"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "كتابة: $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "لصق من الحافظة"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "←"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "مرات حدوث من"
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -4987,7 +5042,7 @@ msgstr[4] ""
msgstr[5] ""
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -4999,308 +5054,308 @@ msgstr[4] ""
msgstr[5] ""
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "فاصل صفحات"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "فاصل أعمدة"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "إدراج $1"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "حذف $1"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "تغيير الصفات"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "تغيير الجدول"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "تغيير النمط"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "تغيير تنسيق الفقرة"
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "إدراج الصف"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "حذف الصف"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "إدراج الخلية"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "حذف الخلية"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 تغييرات"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "تغيير نمط الصفحة: $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "إنشاء نمط الصفحة: $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "حذف نمط الصفحة: $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "تغيير اسم نمط الصفحة: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "تغيّر الترويسة/التذييل"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "تغيّر الحقل"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "إنشاء نمط الفقرة: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "حذف نمط الفقرة: $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "تغيير اسم نمط الفقرة: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "إنشاء نمط الحرف: $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "حذف نمط الحرف: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "تغيير اسم نمط الحرف: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "إنشاء نمط الإطار: $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "حذف نمط الإطار: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "تغيير اسم نمط الإطار: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "إنشاء نمط الترقيم: $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "حذف نمط الترقيم: $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "تغيير اسم نمط الترقيم: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "تغيير اسم العلامة: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "إدراج مدخل في الفهرس"
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "حذف مدخل من الفهرس"
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "حقل"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "فقرات"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "إطار"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "كائن OLE"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "معادلة"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "رسم بياني"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "تعليق"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "إسناد ترافقي"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "برنامج نصي"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "مُدخل بيبلو جرافيا"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "حرف خاص"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "حاشية"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "صورة"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "كائنات رسم"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "جدول: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5312,1666 +5367,1666 @@ msgstr[4] ""
msgstr[5] ""
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "فقرة"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "علامة الفقرة"
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "تغيير عنوان كائن $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "إنشاء نمط الجدول: $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "حذف نمط الجدول: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "تحديث نمط الجدول: $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "حذف الجدول"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "عرض المستند"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "عرض المستند"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "الترويسة $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "صفحة الترويسة $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "التذيل $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "صفحة التذييل $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "حاشية $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "حاشية $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "تذييل الخاتمة $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "تذييل الخاتمة $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) في الصفحة $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "الصفحة $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "الصفحة: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "المؤلف"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "التاريخ"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "الإجراءات"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "قم بتنشيط هذا الزر لفتح قائمة بالإجراءات التي يمكن تنفيذها على هذا التعليق والتعليقات الأخرى"
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "معاينة المستند"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(وضع المعاينة)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "مستند %PRODUCTNAME"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "خطأ في القراءة"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "تعذّر عرض الصورة."
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "خطأ في القراءة من الحافظة."
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "فاصل أعمدة يدويّ"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "الصّفّ %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "العمود %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "المحارف"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "الفقرات"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "الإطارات"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "الصّفحات"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "التّعداد"
+msgid "List"
+msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "الجداول"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "خلية"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "آسيوي"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "النصوص المركّبة"
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "غربي"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "‏%PRODUCTNAME ‏%s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "المحتويات"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "خل~فية الصفحة"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "نص م~خفي"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "حافظات مكان ال~نص"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "متح~كّمات النماذج"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "اللون"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "اطبع النص بالأ~سود"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "اطبع الص~فحات الفارغة المُدرجة تلقائيًا"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "اس~تخدم فقط درج الورق من تفضيلات الطابعة"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "لا شيء (المستند فقط)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "التعليقات فقط"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "ضعها في نهاية المستند"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "ضعها في نهاية الصفحة"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "ال~تعليقات"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "من~شور"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "كتابة من اليسار إلى اليمين"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "كتابة من اليمين إلى اليسار"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "ضعها في الحواف"
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "دالّات"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "ألغِ"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "طبّق"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "شريط أدوات المعادلة"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "نوع المعادلة"
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "نصّ المعادلة"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "منظور الملاحة في المحتوى"
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "مستوى المخطط العام"
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "وضع السحب"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "أدرج كرابط"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "أدرج كرابط"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "أدرج كنسخة"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "عرض"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "النافذة النشطة"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "مخفي"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "نشط"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "خامل"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "حرّر..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "حدّ~ث"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "حرّر"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "حرّر الرابط"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "أدرج"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "ال~فهرس"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "ملف"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "مستند جديد"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "نص"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "احذف"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "اح~ذف"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "التحديد"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "الفهارس"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "الوصلات"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "الكل"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "مخفي"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "لم يُعثر على الملف: "
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "يسار: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". يمين: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "داخلي: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". خارجي: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". أعلى: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". أسفل: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "صفحة"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "سطر"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "المؤلف"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** خطأ صياغي **"
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** القسمة على صفر **"
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** استخدام خاطئ للأقواس **"
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** فائض في الدالة التربيعية **"
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** فائض **"
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** خطأ **"
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** بالتعبير علّة **"
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "خطأ: لم يُعثر على مصدر المرجع"
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "بلا"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(ثابت)"
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " سنة: %1 شهر: %2 يوم: %3 ساعة: %4 دقيقة: %5 ثانية: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "فهرس أبجدي"
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "عرّفه المستخدم"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "جدول المحتويات"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "بيبلوجرافيا"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "اقتباس"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "فهرس الجداول"
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "جدول الكائنات"
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "العنوان"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "الموضوع"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "الكلمات المفتاحية"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "تعليقات"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "أُنشئ في"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "معدل"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "آخر طباعة في"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "رقم المراجعة"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "إجمالي وقت التحرير"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "تحويل $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "المقالة"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "الكتاب"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "منشورات"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "وقائع المؤتمر"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "مقتبسات الكتب"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "مقتبسات الكتب مع العنوان"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "وقائع المؤتمر"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "دفتر اليومية"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "الوثائق التقنية"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "الأطروحة"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "منوعات"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "الرسالة"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "وقائع المؤتمر"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "تقرير بحثي"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "غير منشور"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "مستند WWW"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "عرّفه المستخدم١"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "عرّفه المستخدم٢"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "عرّفه المستخدم٣"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "عرّفه المستخدم٤"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "عرّفه المستخدم٥"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "الاسم المختصر"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "النوع"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "العنوان"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "تعليق توضيحي"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "المؤلف/المؤلفون"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "عنوان الكتاب"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "الفصل"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "النسخة"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "المحرر"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "نوع النشر"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "الهيئة"
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "دفتر اليومية"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "الشهر"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "ملاحظة"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "رقم"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "المنظمة"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "الصفحة/الصفحات"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "الناشر"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "الجامعة"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
#, fuzzy
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "السل~سلة"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "العنوان"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "نوع التقرير"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "وحدة التخزين"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "السنة"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "المسار"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "عرّفه المستخدم١"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "عرّفه المستخدم٢"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "عرّفه المستخدم٣"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "عرّفه المستخدم٤"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "عرّفه المستخدم٥"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "حرّر مُدخل في الفهرس"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "أدرج مُدخل في الفهرس"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "مُدخل الببلوجرافيا موجود بالفعل في المستند ببيانات مختلفة. هل تريد ضبط المُدخلات الموجودة؟"
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "تعليقات"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "أظهر التعليقات"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "أخفِ التعليقات"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "اسم هذا الاختصار موجود بالفعل. الرجاء استخدام اسم آخر."
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "هل تريد حذف النص التلقائي؟"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "هل تريد حذف الفئة "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "؟"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "نص تلقائي:"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "احفظ النص التلقائي"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "لا يحتوي هذا الملف على نص تلقائي."
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "نصوصي التلقائية"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "لم يُعثر على النص التلقائي للاختصار ”%1“."
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "لا يمكن إدراج جدول بدون صفوف أو أعمدة"
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "تعذر إدراج الجدول لأنه كبير جدًا"
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "تعذر إنشاء نص تلقائي."
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "تنسيق الحافظة المطلوب غير متوفر."
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "مستند %PRODUCTNAME %PRODUCTVERSION نصي"
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "صورة (مستند %PRODUCTNAME %PRODUCTVERSION نصي)"
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "كائن (مستند %PRODUCTNAME %PRODUCTVERSION نصي)"
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "جميع التعليقات"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "جميع التعليقات"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "التعليقات بواسطة "
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(بلا تاريخ)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(بلا مؤلف)"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "الرد على $1"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "حرّر مربّع العنوان"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "تحيّة مخصّصة (المستقبلون الذكور)"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "تحيّة مُخصّصة (المستقبلات الإناث)"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "~عناصر التحيّة"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "أضِف إلى التحيّة"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "أزِل من التحيّة"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "١. ا~سحب عناصر التحيّة إلى المربّع أدناه"
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "تحيّة"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "علامة ترقيم"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "النص"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "املأ الحقول من مصدر البيانات لمطابقة عناصر التحيّة."
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "معاينة التحيّة"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "عناصر العنوان"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "عناصر التحيّة"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "يطابق الحقل:"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "معاينة"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " لم يتطابق بعد "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "كل الملفات"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "قوائم العناوين (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME بيز (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME كالك (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "‏%PRODUCTNAME رايتر (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "‏dBase‏ (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "ميكروسوفت إكسل (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "ميكروسوفت وورد (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "نص عادي (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "نص تفصله فواصل (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "ميكروسوفت أكسيس (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "ميكروسوفت أكسيس ٢٠٠٧ (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -6980,91 +7035,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "قائمة عناوين %PRODUCTNAME‏ (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "استثنِ المستلم"
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "أ~نهِ"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "مرشد دمج المراسلات"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "الجدول"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "الاستعلام"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "هل تريد متابعة التدقيق من بداية المستند؟"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "اكتمل التدقيق الإملائي."
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7074,252 +7129,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "التاريخ"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "الوقت"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "اسم الملف"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "اسم قاعدة البيانات"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "الفصل"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "إحصائيات"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "المؤلف"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "قوالب"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "المرسل"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "حدد متغير"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "أظهر المتغير"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "أدرج مُعادلة"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "حقل إدخال"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "حقل إدخال (متغير)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "حقل إدخال (مستخدم)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "نص شرطيّ"
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "حقل DDE"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "نفّذ ماكرو"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "تسلسل أرقام"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "حدد متغير صفحة"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "أظهر متغير الصفحة"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "حمّل المسار"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "حافظ مكان"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "ضم الأحرف"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "قائمة مُدخلات"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "حدد مرجع"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "أدرج مرجع"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "حقول دمج المراسلات"
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "السجل التالي"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "أي سجل"
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "رقم السجل"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "الصفحة السابقة"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "الصفحة التالية"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "نص مخفي"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "حقل المستخدم"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "ملاحظة"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "نص برمجي"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "مُدخل بيبلوغرافيا"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "فقرة مخفية"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "معلومات المستند"
@@ -7328,87 +7383,87 @@ msgstr "معلومات المستند"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "التاريخ"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "التاريخ (ثابت)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "الوقت"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "الوقت (ثابت)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "جداول"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "حروف"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "كلمات"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "فقرات"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "صورة"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "كائنات"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "صفحات"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "‏DDE تلقائي"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "‏DDE يدوي"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[نص]"
@@ -7417,103 +7472,103 @@ msgstr "[نص]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "الشركة"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "الاسم الأول"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "الاسم الأخير"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "الألقاب"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "الشارع"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "الدولة"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "الرمز البريدي"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "المدينة"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "المسمى الوظيفي"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "الموضع"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "الهاتف (منزل)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "الهاتف (عمل)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "فاكس"
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "الولاية"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "أوقف"
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "شغّل"
@@ -7523,37 +7578,37 @@ msgstr "شغّل"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "اسم الملف"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "اسم الملف بدون امتداد"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "المسار/اسم الملف"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "المسار"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "الفئة"
@@ -7562,25 +7617,25 @@ msgstr "الفئة"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "اسم الفصل"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "رقم الفصل"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "رقم الفصل بدون فاصل"
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "رقم واسم الفصل"
@@ -7589,55 +7644,55 @@ msgstr "رقم واسم الفصل"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A‏ ‏.. AA ‏.. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "‏a .. ‏aa .. ‏aaa"
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "أرقام رومانية (III II I)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "أرقام رومانية (iii ii i)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "أرقام عربية (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "مثل نمط الصفحة"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "النص"
@@ -7646,13 +7701,13 @@ msgstr "النص"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "الاسم"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "الحروف البادئة"
@@ -7661,49 +7716,49 @@ msgstr "الحروف البادئة"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "النظام"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "النص"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "الاسم"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "نص"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "معادلة"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "نص"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "قاعدة بيانات"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "النظام"
@@ -7712,19 +7767,19 @@ msgstr "النظام"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "المؤلف"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "الوقت"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "التاريخ"
@@ -7733,79 +7788,79 @@ msgstr "التاريخ"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "المرجع"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "الصفحة"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "الفصل"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "أعلى/أسفل"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "مثل نمط الصفحة"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "الفئة و الرقم"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "نص الواصفة"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "ترقيم"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "رقم"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "رقم (دون سياق)"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "رقم (السياق الكامل)"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7814,31 +7869,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "نص"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "جدول"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "إطار"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "صورة"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "كائن"
@@ -7847,1518 +7902,1518 @@ msgstr "كائن"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~شرط"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "إذن، وإلّا"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "عبارة DDE"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "~نص غير مرئي"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "اسم ال~ماكرو"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "مر~جع"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "حرو~ف"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "~تعديل"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "القيمة"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "الصيغة"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "مخصص"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[مستخدم]"
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
-msgstr "المسافة الرأسية"
+msgstr "انحدار أفقي"
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
-msgstr "المسافة الأفقية"
+msgstr "انحدار رأسي"
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "العرض"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "الارتفاع"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "الهامش الأيسر"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "الهامش العلوي"
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "الأعمدة"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "الصفوف"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "عدد الكلمات والمحارف. انقر لفتح حوار عدد الكلمات."
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "منظور صفحة واحدة"
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "منظور متعدد الصفحات"
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "منظور الكتاب"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "رقم الصفحة في المستند. انقر عليه لفتح حواري ”انتقل إلى“ أو انقر عليه باليمين لعرض قائمة العلامات."
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "رقم الصفحة في المستند (رقم الصفحة في المستند المطبوع). انقر عليه لفتح حواري ”انتقل إلى“."
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "نمط الصفحات. انقر باليمين لتغيير النمط أو انقر لفتح حواري الأنماط."
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "أحرف استهلالية على"
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "من الصفوف"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "لا أحرف استهلالية"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "لا فاصل صفحات"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "لا تعكس"
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "قلب رأسيًّا"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "اقلب أفقيًّا"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "اقلب رأسيا وأفقيا"
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ اعكس أفقيا في الصفحات الزوجية"
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "نمط الأحرف"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "لا نمط أحرف"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "تذييل"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "لا تذييل"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "ترويسة"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "لا ترويسة"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "خلال"
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(مربط فقط)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "العرض:"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "الارتفاع الثابت:"
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "أدنى ارتفاع:"
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "مرتبط بالفقرة"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "مرتبط بالأحرف"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "مرتبط بالصفحة"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "الإحداثي س:"
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "الإحداثي ص:"
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "للأعلى"
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "موسط عمودياً"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "للأسفل"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "أعلى السطر"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "وسط اليسار"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "أسفل السطر"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "على اليمين"
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "موسط أفقياً"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "على اليسار"
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "داخل"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "خارج"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "كامل العرض"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "الأعمدة"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "عرض الفاصل:"
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "الحد الأقصى لمنطقة الحاشية:"
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "يمكن تحريره في المستندات المفتوحة للقراءة فقط"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
#, fuzzy
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "تقسيم"
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "ترقيم"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "لا ترقيم"
+msgid "List Style: (None)"
+msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "و "
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "السطوع: "
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "الأحمر: "
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "الأخضر: "
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "الأزرق: "
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "التباين: "
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "غاما: "
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "الشفافية: "
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "اعكس"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "لا تعكس"
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "وضع الرسوم: "
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "_قياسي"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "تدرج رمادي"
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "أسود و أبيض"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "علامة مائيّة"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "اقتباس"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "بدون شبكة"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "شبكة (السطور فقط)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "شبكة (سطور وحروف)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "اتباع تدفق النّص"
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "لا تتبع تدفق النص"
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "لا تدمج الحدود"
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "ST_TBL"
msgid "Table"
msgstr "الجدول"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
#, fuzzy
msgctxt "ST_PGE"
msgid "Page"
msgstr "الصفحة"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "الرسم"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr "عنصر تحكم"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "قسم"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "علامة"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
#, fuzzy
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "رسوميات"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
#, fuzzy
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "عناوين رئيسية"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "التحديد"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "حاشية"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "تعليق"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "تكرار البحث"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "الجدول التالي"
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "الصفحة التالية"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "الرسمة التالية"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "المتحكّم التالي"
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "القسم التالي"
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "العلامة التالية"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "الرسم التالي"
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "كائن OLE التالي"
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "العنوان الرئيسي التالي"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "الحاشية التالية"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "التعليق التالي"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "إدراج مدخل في الفهرس"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "الجدول السابق"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "الصفحة السابقة"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "الرسمة السابقة"
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "المتحكّم السابق"
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "القسم السابق"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "العلامة السابقة"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "الرسمة السابقة"
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "كائن OLE السابق"
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "العنوان الرئيسي السابق"
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "التحديد السابق"
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "الحاشية السابقة"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "التذكير السابق"
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "التعليق السابق"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "تابع البحث خلفًا"
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "مدخلة الفهرس السابقة"
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "معادلة الجدول السابقة"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "معادلة الجدول التالية"
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "معادلة الجدول الخاطئة السابقة"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "معادلة الجدول الخاطئة التالية"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "أدرج"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "احذف"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "تغيير الجدول"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "أنماط الفقرات المطبقّة"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
#, fuzzy
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "تغيير تنسيق الفقرة"
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "أُدرج السطر"
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "تم حذف السطر"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "حاشية ختامية: "
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "حاشية: "
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "الترويسة (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "ترويسة الصفحة الأولى (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "ترويسة الصفحة اليسرى (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "ترويسة الصفحة اليمنى (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "التذييل (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "تذييل الصفحة الأولى (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "تذييل الصفحة اليسرى (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "تذييل الصفحة اليمنى (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "احذف الترويسة..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "نسّق الترويسة..."
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "احذف التذييل..."
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "نسّق التذييل..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "تعذّر فتح الصورة"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "تعذّرت قراءة الصورة"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "نسق الصّورة مجهول"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "إصدارة ملفّ الصّورة هذا غير مدعومة"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "تعذّر العثور على مرشّح الصورة"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "لا توجد ذاكرة كافية لإدراج الصّورة."
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "أدرج صورة"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "تعليق: "
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "إدراج"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "حذف"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "التصحيح التلقائي"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "تغييرات الجدول"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "أنماط الفقرة المُطبّقة"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "الصفحة "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "الصفحة %1 من %2"
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "الصفحة %1 من %2 (الصّفحة %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "فقرة"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "صورة"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "إطار"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "جدول"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "صف جدول"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "خلية جدول"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "صفحة"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ترويسة"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "تذييل"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "ملف %PRODUCTNAME %PRODUCTVERSION HTML"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "العنوان"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "الفاصل"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "المستوى "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "تعذر العثور على الملف ”%1“ في المسار ”%2“."
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "فهرس معرف من المستخدم"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<لا شيء>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<لا شيء>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "رقم الفصل"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "المدخلة"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "علامة جدولة"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "النص"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "رقم الصفحة"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "معلومات الفصل"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "بداية الرابط"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "نهاية الرابط"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "مُدخل بيبلوجرافيا: "
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "نمط الأحرف: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "اضغط Ctrl+Alt+A لنقل التّركيز لعمليّات أكثر"
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9367,259 +9422,259 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "أ~على الخط الأساسي"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "أ~سفل الخط الأساسي"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "و~سط الخط الأساسي"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "أدرج كائن"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "حرّر الكائن"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (قالب: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "الحدود"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "الخلفية"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(نمط الفقرة: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "لا يمكن تطبيق أرقام الصفحات على الصفحة الحالية. الأرقام الفردية للصفحات اليمنى والأرقام الزوجية للصفحات اليسرى."
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "مستند %PRODUCTNAME‏ %PRODUCTVERSION رئيسي"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "سيحذف اتّصال الملفّ متحويات القسم الحاليّ. أأتّصل بأيّ حال؟"
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "كلمة السر المدخلة غير صالحة."
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "لم تُضبط كلمة السر."
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "بلا (لا تدقّق الإملاء)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "صفّر إلى اللغة المبدئيّة"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "أكثر..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "ت~جاهل"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "التّفسيرات..."
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "تعذّر دمج المستندات."
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "تعذّر تحميل المصدر."
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "لم تعيَّن طابعة تحت أدوات/خيارات/%1/طباعة."
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "مستند HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "مستند نصّيّ"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "المصدر غير محدّد."
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "المستوى "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "المخطط العام "
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "حرّر الحاشية/الحاشية الختامية"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "استُبدل مفتاح البحث XX مرّة."
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "الصّفّ "
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "العمود "
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~صدّر المصدر..."
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~صدّر نسخة عن المصدر…"
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~تابع"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "يرسل إلى: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "نجح الإرسال"
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "فشل الإرسال"
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9628,7 +9683,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9637,122 +9692,122 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "وقّعها"
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "توقيع الفقرة"
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "بطاقات عمل"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "إعدادات البريد الالكتروني"
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "إضافة"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "احذف"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
-msgstr "الخصائص"
+msgstr "الصفات"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "ابحث عن مصطلح"
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "مُدخلة بديلة"
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "المفتاح الأول"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "المفتاح الثاني"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "التعليقات"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "مطابقة حالة الأحرف"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "الكلمة فقط"
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "نعم"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "لا"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "مخصص"
@@ -9897,6 +9952,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "أضف مسافة غير فاصلة"
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -17839,13 +17900,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/labelformatpage.ui:36
msgctxt "labelformatpage|label1"
msgid "Hori_zontal pitch:"
-msgstr ""
+msgstr "الا_نحدار الأفقي:"
#. SFCGD
#: sw/uiconfig/swriter/ui/labelformatpage.ui:50
msgctxt "labelformatpage|label2"
msgid "_Vertical pitch:"
-msgstr ""
+msgstr "الانحدا_ر الرأسي:"
#. fpXAC
#: sw/uiconfig/swriter/ui/labelformatpage.ui:64
@@ -20317,291 +20378,291 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "منظور الملاحة في المحتوى"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "ترويسة"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "تذييل"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "المربط<->النص"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "رفع المستوى"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "خفض مستوى"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "وضع السحب"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "المستند"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "النافذة النشطة"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "حرّر"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "تحديث"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "أدرِج"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "احفظ المحتويات أيضا"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "انقل لأعلى"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "انقل لأسفل"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "الوصلات"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "الكل"
@@ -20644,181 +20705,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21886,20 +21947,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "حفظ باسم"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Shows the current saved format names."
+msgstr ""
+
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "التنسيق"
@@ -21910,212 +21983,224 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr "مستوى المخطط"
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr ""
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr "مستوى ١"
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr "مستوى ٢"
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr "مستوى ٣"
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr "مستوى ٤"
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr "مستوى ٥"
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr "مستوى ٦"
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr "مستوى ٦"
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr "مستوى ٨"
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr "مستوى ٩"
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "مستوى ١٠"
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "المخطط"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "بلا"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "حرّر النّمط"
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "اب_دأ بمستوى:"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
+msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "عُد أسطر هذه ال_فقرة أيضًا"
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "ابدأ _من جديد عند هذه الفقرة"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "ابدأ بم_ستوى:"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "ترقيم الأسطر"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -24725,7 +24810,7 @@ msgstr "عناصر تحكم النموذج"
#: sw/uiconfig/swriter/ui/printeroptions.ui:109
msgctxt "printeroptions|formcontrols"
msgid "Comments:"
-msgstr ""
+msgstr "التعليقات:"
#. M6JQf
#: sw/uiconfig/swriter/ui/printeroptions.ui:143
@@ -25252,7 +25337,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/privateuserpage.ui:476
msgctxt "extended tip | street"
msgid "Type the name of your street in this field."
-msgstr ""
+msgstr "اكتب اسم شارعك في هذا الحقل."
#. QmBKX
#: sw/uiconfig/swriter/ui/privateuserpage.ui:507
@@ -25306,7 +25391,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/privateuserpage.ui:619
msgctxt "privateuserpage|extended_tip|PrivateUserPage"
msgid "Contains personal contact information for business cards. Business card layouts are selected on the Business Cards tab."
-msgstr ""
+msgstr "يحتوي معلومات الاتصال الشخصية لبطاقات العمل. تُحدَّد تخطيطات بطاقات العمل من تبويب بطاقات العمل."
#. re87U
#: sw/uiconfig/swriter/ui/querycontinuebegindialog.ui:7
@@ -28183,10 +28268,10 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr ""
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
+msgid "Specify the character style for the selected part on the Structure line."
msgstr ""
#. 5nWPi
@@ -28446,10 +28531,10 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr ""
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
msgstr ""
#. r33aA
diff --git a/source/ar/uui/messages.po b/source/ar/uui/messages.po
index 5a5a5186ec1..e66909d3fe7 100644
--- a/source/ar/uui/messages.po
+++ b/source/ar/uui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ar/>\n"
"Language: ar\n"
@@ -13,35 +13,35 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1522251321.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr "أُجهضت العمليَّة المنفَّذة على $(ARG1) ."
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr "رفِضَ الوصول إلى $(ARG1)."
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "‏$(ARG1) موجود بالفعل."
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "الهدف موجود بالفعل."
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -53,7 +53,7 @@ msgstr ""
"و هي كبيرة جدا لتخزينها في هيئة ثنائية. إذا كنت تريد أن يستطيع للمستخدمين الذين لا يعرفون كلمة سر المكتبة تشغيل الماكرو في هذه الوحدات، فعليك تقسيمها لعدد أصغر من الوحدات. هل ترغب في الاستمرار في حفظ/تصدير هذه المكتبة؟"
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -66,289 +66,289 @@ msgid ""
msgstr ""
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr "جموع فحص البيانات من $(ARG1) خاطئة."
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr "تعذّر إنشاء الكائن $(ARG1) في الدليل $(ARG2)."
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr "تعذّر قراءة بيانات $(ARG1)."
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr "تعذّر إجراء عملية الاستدعاء على $(ARG1)."
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr "تعذّر إجراء عمليّة الإخبار على $(ARG1)."
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr "تعذّر كتابة بيانات $(ARG1)."
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr "الإجراء غير ممكن: $(ARG1) هو المجلد الحالي."
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr "‏$(ARG1) غير جاهز."
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr "الإجراء غير ممكن: $(ARG1) و $(ARG2) أجهزة مختلفة (مشغّلات)."
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr "حدث خطأ دخْل/خرْج عامّ أثناء محاولة الوصول إلى $(ARG1)."
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr "محاولة الوصول إلى $(ARG1) بطريق غير سليم."
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "يحتوي $(ARG1) على حروف غير صالحة."
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr "الجهاز (المشغّل) $(ARG1) غير صالح."
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr "طول بيانات $(ARG1) غير صالحة."
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr "لقد بدأت العملية على $(ARG1) بمعامل غير صالح."
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr "تعذّر إجراء العملية لأنّ $(ARG1) يحتوي رموز تعميم."
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr "خطأ أثناء الوصول المشترك إلى $(ARG1)."
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "يحتوي $(ARG1) خطأً إملائيًا."
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "الاسم $(ARG1) يحتوي على حروف كثيرة جدا."
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "‏$(ARG1) غير موجود."
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "المسار $(ARG1) غير موجود."
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr "لا يدعم هذا النظام العملية على $(ARG1)."
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "‏$(ARG1) ليس دليلًا."
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "‏$(ARG1) ليس ملفًا."
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr "لم يعد هناك أية مساحة شاغرة في الجهاز $(ARG1)."
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr "تعذّر إجراء العملية على $(ARG1) لأن ملفات كثيرة جدا مفتوحة بالفعل."
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr "تعذّر إجراء العمليّة على $(ARG1) لعدم توفّر ذاكرة."
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr "تعذّر الاستمرار في العملية على $(ARG1) بسبب وجود بيانات كثيرة في الانتظار."
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr "لا يمكن نسخ $(ARG1) على نفسه."
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr "حدث خطأ دخْل/خرْج غير معروف أثناء محاولة الوصول إلى $(ARG1)."
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "‎$(ARG1) محمي من الكتابة."
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "‏$(ARG1) ليس مكتوبًا على النسق الصحيحة."
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "إصدارة $(ARG1) غير صحيحة."
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "محرك الأقراص $(ARG1) غير موجود."
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "المجلد $(ARG1) غير موجود."
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr "إصدارة جافا المثبتة غير مدعومة."
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr "إصدارة جافا $(ARG1) المثبتة غير مدعومة."
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr "إصدارة جافا المثبتة غير مدعومة، يجب أن تكون على الأقل الإصدارة $(ARG1)."
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr "إصدارة جافا $(ARG1) المثبتة غير مدعومة، يجب أن تكون على الأقل الإصدارة $(ARG2)."
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr "البيانات المقترنة بالشراكة تالفة."
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr "البيانات المقترنة بالشراكة $(ARG1) تالفة."
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr "الجزء $(ARG1) غير جاهز."
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr "‏$(ARG1) غير جاهز؛ الرجاء إدخال جهاز التخزين."
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr "الجزء $(ARG1) غير جاهز؛ الرجاء إدخال جهاز التخزين."
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr "الرجاء إدخال القرص $(ARG1)."
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr "تعذر إنشاء الكائن في الدليل $(ARG1)."
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr "يتعذّر على %PRODUCTNAME المحافظة على الملفّات من الكتابة عليها عندما يستخدم بروتوكول النقل هذا. هل تريد الاستمرار على أية حال؟"
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -370,13 +370,13 @@ msgstr ""
"أتريد أن يحاول %PRODUCTNAME إصلاح المستند؟\n"
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "تعذّر إصلاح الملف '$(ARG1)' و بالتالي يتعذّر فتحه."
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -386,7 +386,7 @@ msgstr ""
"هل تريد الاستمرار في بدء تشغيل %PRODUCTNAME دون بيانات الإعدادات التالفة؟"
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -396,13 +396,13 @@ msgstr ""
"هل تريد الاستمرار ببدء تشغيل %PRODUCTNAME دون معلومات الإعدادات التالفة؟"
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr "مصدر بيانات الإعدادات '$(ARG1)' غير متوفر. بدون هذه البيانات قد لا تعمل بعض الخصائص بشكل صحيح."
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -412,31 +412,31 @@ msgstr ""
"هل تريد الاستمرار ببدء تشغيل %PRODUCTNAME دون بيانات الإعدادات المفقودة؟"
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr "يحتوي النموذج على بيانات غير صالحة؟ هل ما زلت تريد الاستمرار؟"
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr "تم تأمين الملف $(ARG1) بواسطة مستخدم آخر. ولا يمكن حاليًا منح وصول آخر للإضافة والحذف لهذا الملف."
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr "لقد قمت بتأمين الملف $(ARG1). ولا يمكن حاليًا منح وصول آخر للإضافة والحذف لهذا الملف."
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr "لم تقم بتأمين الملف $(ARG1) حاليًا."
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -446,7 +446,7 @@ msgstr ""
"و يمكن أن يحدث ذلك نتيجة لمشكلات على الخادوم الذي يدير ملف القفل. و لا يمكن ضمان أن عمليات الكتابة على هذا الملف لن تستبدل تغييرات المستخدمين الآخرين!"
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -460,7 +460,7 @@ msgstr ""
" $(ARG1)."
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -472,7 +472,7 @@ msgstr ""
"قبل أن تقبل هذه الشهادة، عليك أن تفحص شهادة الموقع بتمعن. أترغب بقبول هذه الشهادة لتعريف موقع الوب $(ARG1)؟"
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -484,13 +484,13 @@ msgstr ""
"عليك التحقق من أن توقيت جهازك صحيح."
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr "تحذير أمني: شهادة الخادوم غير صالحة"
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -506,13 +506,13 @@ msgstr ""
"أتريد الاستمرار على أي حال؟"
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr "تحذير أمني: انتهت صلاحية شهادة الخادوم"
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -524,7 +524,7 @@ msgstr ""
"إن كنت تشك بالشهادة فرجاءً ألغِ اتصالك وأعلم المسؤول عن الموقع."
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr "تحذير أمني: اسم النطاق لا يتطابق"
@@ -532,12 +532,12 @@ msgstr "تحذير أمني: اسم النطاق لا يتطابق"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -547,37 +547,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -587,63 +587,63 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr "أدخل كلمة السر لفتح الملف: \n"
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr "أدخل كلمة السر لتعديل الملف: \n"
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "أدخل كلمة السر: "
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr "أكّد كلمة السر: "
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "عيّن كلمة سر"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "أدخل كلمة السر"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "لا تتطابق كلمة سر التأكيد مع كلمة السر. ضع كلمة السر مرة أخرى وذلك بإدخال نفس كلمة السر في كلا المربعين."
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "المستند يُستخدم الآن"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -652,19 +652,19 @@ msgid ""
msgstr ""
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "ا~فتح"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -673,61 +673,61 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "أ~عد محاولة الحفظ"
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "احف~ظ"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "~تذكر كلمة السر حتى نهاية الجلسة"
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "ت~ذكر كلمة السر"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "تدفقات غير معمّاة"
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "تعذّر قفل المستند"
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr "تعذّر إنشاء ملف القفل ليصل إليه %PRODUCTNAME حصرا، وذلك لنقص تصريح إنشاء ملف قفل في ذلك المكان أو أن مساحة القرص الحرة غير كافية."
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "المستند قيد الاستخدام"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -738,7 +738,7 @@ msgid ""
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -746,31 +746,31 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "ا~فتح نسخة"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "مستخدم غير معروف"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "غيّر آخرون المستند"
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -779,19 +779,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "ا~حفظ على أي حال"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "المستند قيد الاستخدام"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -802,7 +802,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -813,19 +813,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "أ~عد محاولة الحفظ"
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "ا~حفظ باسم..."
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -835,7 +835,7 @@ msgstr ""
"اختر \"استبدل\" للكتابة فوق الملفّ الموجود أو وفّر اسمًا آخر."
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -845,55 +845,55 @@ msgstr ""
"فضلًا أدخل اسمًا جديدًا."
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "فضلًا اختر اسم ملفّ مختلف!"
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "كلمة السر غير صحيحة. تعذّر فتح الملف."
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "كلمة السر غير صحيحة. تعذّر تعديل الملف."
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "كلمة السر الرئيسية غير صحيحة."
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "كلمة السر غير صحيحة."
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "تأكيد كلمة السر غير متطابق."
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "ملف القفل تالف"
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr "ملف القفل تالف ولربما يكون فارغا. بفتح المستند للقراءة فقط وإغلاقه بعدها يمكن إزالة ملف القفل التالف."
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
diff --git a/source/ar/vcl/messages.po b/source/ar/vcl/messages.po
index 052c93cdf41..da9312a81de 100644
--- a/source/ar/vcl/messages.po
+++ b/source/ar/vcl/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022451.000000\n"
#. k5jTM
@@ -513,12 +513,12 @@ msgstr "16ك (197 × 273)"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -528,37 +528,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -568,12 +568,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. CXDQa
#: vcl/inc/printaccessoryview.hrc:27
@@ -665,150 +665,138 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "استعِد"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr "افتح"
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr "اطوِ"
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "مساعدة"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr "التقط و علق على لقطة شاشة"
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "أظهِر"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "أخفِ"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "أغلق المستند"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "~حسنًا"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "أل~غ"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "حسنًا"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "ألغِ"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "~نعم"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "~لا"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "أ~عد المحاولة"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~مساعدة"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "أ~غلق"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "المز~يد"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "~تجاهل"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "أج~هض"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "أ~قل"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "احف~ظ"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "ا~فتح"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr "لق~طة شاشة"
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -818,357 +806,357 @@ msgstr ""
"رجاء تشغيل الإعداد و استخدام خيار التصليح."
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "عن %PRODUCTNAME"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "التفضيلات..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "أي نوع"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "ام~تداد اسم ملف تلقائي"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "احفظ بكلمة ~سر"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr "عمِّ بم~فتاح GPG"
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "~حرّر إعدادات الترشيح"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "للق~راءة فقط"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "أدرج ك~رابط"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "~معاينة"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "~شغّل"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "الإ~صدارة:"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "الأن~ماط:"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "نمط الإطار: "
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr "المرب~ط: "
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "ال~تحديد"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "اختر مسارًا"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "رجاء اختر مجلدًا."
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "يوجد ملف بالاسم \"$filename$\" بالفعل. هل تريد استبداله؟"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr "الملف موجود بالفعل في \"$dirname$\". باستبداله تقوم بالكتابة على محتوياته."
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "جميع الأنساق"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "افتح"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "احفظ"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "~نوع الملف"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "لم يُعثر على أي خطوط في النظام."
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "لا توجد صفحات"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "اطبع إلى ملف..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "الطابعة المبدئية"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "رجاء أدخل رقم الفاكس"
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "مخصّص"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "تجاوز النّصّ المُدرج الطّول الأقصى لحقل النّصّ. اقتُطع النّصّ."
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "خيوط المعالج: "
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "نظام التَّشغيل: "
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "مصيّر الواجهة: "
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr "جي‌إل"
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "المبدئيّ"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "معلومات"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "تحذير"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "خطأ"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "التأكيد"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "حذف السطر"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "حذف أسطر متعددة"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "حذف أسطر متعددة"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "إدراج '$1'"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "حذف '$1'"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "الخطوات"
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "ال~تالي >"
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
@@ -1556,7 +1544,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:61
msgctxt "STR_FONT_FEATURE_ID_KERN"
msgid "Horizontal Kerning"
-msgstr ""
+msgstr "التقنين الأفقي"
#. Z7ura
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:62
@@ -1778,7 +1766,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:98
msgctxt "STR_FONT_FEATURE_ID_VKRN"
msgid "Vertical Kerning"
-msgstr ""
+msgstr "التقنين الرأسي"
#. 9WDxe
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:99
diff --git a/source/ar/wizards/messages.po b/source/ar/wizards/messages.po
index 9f015d6b7a2..9fd1145f070 100644
--- a/source/ar/wizards/messages.po
+++ b/source/ar/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1516047284.000000\n"
#. gbiMx
@@ -1615,12 +1615,12 @@ msgstr "بسيط"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -1630,37 +1630,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -1670,9 +1670,9 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
diff --git a/source/ar/wizards/source/resources.po b/source/ar/wizards/source/resources.po
index 3a41c48ae9e..997dea5a004 100644
--- a/source/ar/wizards/source/resources.po
+++ b/source/ar/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"PO-Revision-Date: 2021-03-18 14:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1516047284.000000\n"
#. 8UKfi
@@ -1537,7 +1537,7 @@ msgctxt ""
"RID_QUERY_11\n"
"property.text"
msgid "~Detailed query (Shows all records of the query.)"
-msgstr "استعلام مُ~فصَّل (يُظهر كلّ سجلّات الاستعلام.)"
+msgstr "استعلام م~فصَّل (يُظهر كل سجلات الاستعلام.)"
#. fnzhE
#: resources_en_US.properties
@@ -4735,7 +4735,6 @@ msgstr "مستندات"
#. tbXgc
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"ProgressMoreTemplates\n"
@@ -5049,7 +5048,7 @@ msgctxt ""
"SumMSTableTemplates\n"
"property.text"
msgid "All Excel templates contained in the following directory will be imported:"
-msgstr "كل قوالب إكسل الموجودة في الدليل التالي ستُستورد:"
+msgstr "كل قوالب أكسل الموجودة في الدليل التالي ستُستورد:"
#. AEEwA
#: resources_en_US.properties
diff --git a/source/ar/writerperfect/messages.po b/source/ar/writerperfect/messages.po
index cc9579a26cb..ec35f024334 100644
--- a/source/ar/writerperfect/messages.po
+++ b/source/ar/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2021-01-28 07:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/ar/>\n"
@@ -13,53 +13,53 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1525785878.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "استيراد ملف"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr "استورد مايكروسوفت Multiplan لملف DOS"
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr "استورد ملف مايكروسوفت ووركس"
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr "استورد ملف مايكروسوفت رايت"
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr "استيراد ملف مايكروسوفت وورد لنظام دوس"
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "استيراد ملف لوتُس"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr "استورد ملف سيمفوني Symphony"
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr "استورد ملف Quattro Pro"
diff --git a/source/ar/xmlsecurity/messages.po b/source/ar/xmlsecurity/messages.po
index 7a2477cd695..1febaecb95e 100644
--- a/source/ar/xmlsecurity/messages.po
+++ b/source/ar/xmlsecurity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-30 15:38+0100\n"
-"PO-Revision-Date: 2021-02-22 16:20+0000\n"
+"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1527110925.000000\n"
#. EyJrF
@@ -228,12 +228,12 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "ط_بّق"
#. TMo6G
msgctxt "stock"
@@ -243,37 +243,37 @@ msgstr "أل‍_‍غ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "أغل_ق"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "م_ساعدة"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "_كلا"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "_حسنا"
#. VtJS9
msgctxt "stock"
@@ -283,12 +283,12 @@ msgstr "أ_زِل"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "ت_صفير"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_نعم"
#. uTxas
#: xmlsecurity/uiconfig/ui/certdetails.ui:49
@@ -342,7 +342,7 @@ msgstr "تحقّقت من صحّة الشّهادة."
#: xmlsecurity/uiconfig/ui/certgeneral.ui:109
msgctxt "certgeneral|issued_to"
msgid "Issued to: "
-msgstr "مُصْدَرة إلى: "
+msgstr "أُصدِرت إلى: "
#. UzJpm
#: xmlsecurity/uiconfig/ui/certgeneral.ui:136
@@ -670,7 +670,7 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:127
msgctxt "securitytrustpage|to"
msgid "Issued to"
-msgstr "أُصدِرت لِـ"
+msgstr "أُصدِرت إلى"
#. Exx67
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:140
@@ -754,7 +754,7 @@ msgstr "اختر الشهادة التي تريد استخدامها للتعم
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:145
msgctxt "selectcertificatedialog|issuedto"
msgid "Issued to"
-msgstr ""
+msgstr "أُصدِرت إلى"
#. qiZ9B
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:158
@@ -764,7 +764,6 @@ msgstr "أصدرتها"
#. 7GEah
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:171
-#, fuzzy
msgctxt "selectcertificatedialog|type"
msgid "Type"
msgstr "النوع"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 7f6a7fea9a4..42d84a8a694 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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+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"
@@ -1925,249 +1925,177 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "কোনো সীমা সংহতি নকৰিব"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "কেৱল বাহিৰা সীমা সংহতি কৰক"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "বাহিৰা সীমা আৰু আনুভুমিক শাৰীসমূহ সংহতি কৰক"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "বাহিৰা সীমা আৰু সকলো অভ্যন্তৰীক শাৰীসমূহ সংহতি কৰক"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "অভ্যন্তৰীক শাৰীসমূহ সলনি নকৰাকে বাহিৰা সীমা সংহতি কৰক"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "কেৱল কৰ্ণ শাৰীসমূহ সংহতি কৰক"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "চাৰিটা সীমাকে সংহতি কৰক"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "কেৱল বাও আৰু সোঁ সীমাবোৰ সংহতি কৰক"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "কেৱল উপৰ আৰু তল সীমাবোৰ সংহতি কৰক"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "কেৱল বাও সীমা সংহতি কৰক"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "উপৰ আৰু তল সীমাবোৰ, আৰু সকলো অভ্যন্তৰীক শাৰীসমূহ সংহতি কৰক"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "বাও আৰু সোঁ সীমাবোৰ, আৰু সকলো অভ্যন্তৰীক শাৰীসমূহ সংহতি কৰক"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ছাঁ নাই"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "তলৰ সোঁফালে ছায়া পেলাওক"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "উপৰ সোঁফালে ছায়া পেলাওক"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "তলৰ বাওফালে ছায়া পেলাওক"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "উপৰ বাওফালে ছায়া পেলাওক"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "এই উন্মোচন %OOOVENDOR দ্বাৰা প্ৰদান কৰা হৈছিল।"
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice OpenOffice.org ৰ ওপৰত ভিত্তিয় আছিল"
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "পথ সম্পাদন: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -2344,14 +2272,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2533,1071 +2462,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3608,22 +3531,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3632,16 +3555,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -13340,10 +13263,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "পৃথক কৰোঁতা"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -15187,22 +15110,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "বিকল্পসমূহ"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -21593,13 +21540,13 @@ msgid "_Next Tip"
msgstr ""
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21611,79 +21558,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/as/dbaccess/messages.po b/source/as/dbaccess/messages.po
index 197bf29da7d..0b1fd48e60d 100644
--- a/source/as/dbaccess/messages.po
+++ b/source/as/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2020-01-07 12:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Assamese <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/as/>\n"
@@ -3418,13 +3418,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "ডাটাবেছৰ প্ৰকাৰটো বাছনী কৰক য'ত আপুনি এটা সংযোগ প্ৰতিষ্ঠা কৰিবলৈ বিচাৰে।"
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "ডাটাবেইচৰ ধৰণ (_t):"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/as/framework/messages.po b/source/as/framework/messages.po
index 30a623b84cb..0296f027a1b 100644
--- a/source/as/framework/messages.po
+++ b/source/as/framework/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2017-12-14 11:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -228,6 +228,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr ""
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr ""
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
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 8c2565332af..ab2c0d12c16 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -1311,14 +1311,24 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "পৰৱৰ্তী অৰক্ষিত কক্ষলৈ"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
+msgid "Select Visible Rows Only"
+msgstr ""
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
msgstr ""
#. LEvrC
@@ -3215,15 +3225,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "পৃষ্ঠা ফৰমেট কৰক (~P)..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "পৃষ্ঠা (~P)..."
+msgid "~Page Style..."
+msgstr ""
#. C83UC
#: CalcCommands.xcu
@@ -9573,6 +9583,26 @@ msgctxt ""
msgid "Layout"
msgstr "খচৰা"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -20876,34 +20906,24 @@ msgctxt ""
msgid "Background Color"
msgstr "পৃষ্ঠভূমিৰ ৰং"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -23672,15 +23692,15 @@ msgctxt ""
msgid "~Export As"
msgstr ""
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export as PDF"
+msgstr ""
#. YsFV2
#: GenericCommands.xcu
@@ -23704,15 +23724,15 @@ msgctxt ""
msgid "Export as PDF"
msgstr "PDF হিচাপে ৰপ্তানী কৰক (~D)..."
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export Directly as PDF"
+msgstr ""
#. 8eSWp
#: GenericCommands.xcu
@@ -25803,14 +25823,14 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
+msgid "Development Tools"
msgstr ""
#. jLF5j
@@ -26406,14 +26426,14 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr ""
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
+msgid "Word ~Joiner"
msgstr ""
#. UvwGS
@@ -33792,6 +33812,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "নাম্বাৰীং পুনৰ আৰম্ভ কৰক"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -34023,6 +34053,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "দফা বাছক"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -34304,16 +34344,6 @@ msgctxt ""
msgid "Fields"
msgstr "ফিল্ডসমূহ"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "পূৰ্ণ কৰা কার্যক আলোকিত কৰক"
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34768,15 +34798,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "নিৰ্বাচন"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "নাম্বাৰীং কৰা হৈছে"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr ""
#. oCEjg
#: WriterCommands.xcu
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index ea90b0e81e1..614b1f14dd5 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -21195,10 +21195,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "সূত্র"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -25313,231 +25313,231 @@ msgid "No solution was found."
msgstr ""
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 3223a172950..f04150d34a8 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -914,158 +914,164 @@ msgid ""
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "শ্লাইডবোৰ সৃষ্টি কৰক"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "পৃষ্ঠাৰ ফৰমেট ৰূপান্তৰ কৰক"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "পৃষ্ঠাৰ দাঁতি ৰূপান্তৰ কৰক"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "সম্পাদন কৰক (~E)"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "শ্লাইডবোৰ মচি পেলাওক"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "দস্তাবেজ ফৰমেটটো নিৰ্দিষ্ট প্ৰিন্টাৰটোত ছেট কৰিব পৰা নগ'ল."
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "ছবি ফাইল খোলিব নোৱাৰি"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "ছবি ফাইল পঢ়িব নোৱাৰি"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "অজ্ঞাত ছবি বিন্যাস"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "এই ছবি ফাইল সংস্কৰণ সমৰ্থিত নহয়"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "ছবি ফিল্টাৰ পোৱা নগল"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "ছবি ইমপৰ্ট কৰিবলে পৰ্যাপ্ত মেমৰি নাই"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "বস্তুবোৰ"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "গোটেই দস্তাবেজটোৰ বানান পৰীক্ষা শেষ কৰা হৈছে."
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "নিৰ্বাচিত বস্তুবোৰৰ কাৰণে বানান পৰীক্ষাটো শেষ কৰা হৈছে."
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "আপুনি নিৰ্বাচিত বস্তু বক্রলৈ সলনি কৰিবনেকি?"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "প্ৰতিস্থাপনৰ বস্তু '$' ৰূপান্তৰ কৰক"
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "শ্লাইডৰ খচৰা"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr ""
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "ফাইল ভৰাওক"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "বিশেষ সংখ্যা ভৰাওক"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "প্রেজেন্টেশ্বন লে'আউট প্ৰয়োগ কৰক"
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "চলাওক (~P)"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "বন্ধ কৰক (~p)"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "প্রকৃত আকাৰ"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1075,128 +1081,128 @@ msgstr ""
"আপুনি নতুন এটা ভৰাবলৈ বিচাৰেনেকি?"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "কোনো কার্য কৰা নাই"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "পূৰ্বৱৰ্তী শ্লাইডলৈ যাওক"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "পৰৱৰ্তী শ্লাইডলৈ যাওক"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "প্ৰথম শ্লাইডলৈ যাওক"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "শেষ শ্লাইডলৈ যাওক"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "পৃষ্ঠা বা বস্তুলৈ যাওক"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "দস্তাবেজলৈ যাওক"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr ""
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr "বস্তু কাৰ্য আৰম্ভ কৰক"
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "প্রগ্রেমটো চলাওক"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "মেক্ৰ' চলাওক"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "প্রেজেন্টেশ্বনৰ পৰা প্রস্থান কৰক"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "লক্ষ্য"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "কাৰ্য্য (~i)"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr ""
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "শ্লাইড/বস্তু"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "দস্তাবেজ"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "প্ৰগ্ৰেম"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "মেক্র'"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr ""
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1205,254 +1211,254 @@ msgstr[1] ""
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "টেক্সট ভৰাওক"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr ""
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "স্মাৰ্ট"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "বাওঁফাল"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "সোঁফাল"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "ওপৰ"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "তলত"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "বাওঁফালে ওপৰৰ?"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "বাওঁফালে তলত?"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "সোঁফালৰ ওপৰত?"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "সোঁফালে তলত?"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "উলম্ব"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "সকলো?"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr "চলন্ত অৱস্থাটোত এই কাৰ্যটো ৰান কৰিব নোৱাৰি."
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "পাছত"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "অব্যাহত ৰখা"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "অভাৰভিউ"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "ৰং পৰিৱৰ্তক"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr "ক্রছ-ফেড কৰা"
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "শ্লাইড প্রসাৰিত কৰক"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "বিষয়সূচীৰ শ্লাইড"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr "এই মূহুৰ্তটোত কোনো SANE উত্স মজুত নাই."
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr "বৰ্তমান কোনো TWAIN উত্স মজুত নাই."
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "নির্দিষ্ট"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "চলক"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "মানবিশিষ্ট"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "মানবিশিষ্ট (চুটি)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "মানবিশিষ্ট (দীঘল)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "ফাইলৰ নাম"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "পথ/ফাইলৰ নাম"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "পথ"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "প্রসাৰণৰ অবিহনে ফাইলৰ নাম"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr "নতুন কাষ্টম শ্লাইড দেখুৱাওক"
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "প্রতিলিপি "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr ""
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr ""
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr "গোটমুক্ত মেটাফাইল(বোৰ)..."
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr "সকলোবোৰ অঁকা বস্তু গোট মুক্ত কৰাটো সম্ভৱ নাছিল."
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr ""
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr ""
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1462,158 +1468,158 @@ msgstr ""
"আপুনি ইয়াক প্ৰতিস্থাপন কৰিব বিচাৰেনে ?"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "হাইপাৰলিংক"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "পৰিদৰ্শিত সংযোগ"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "সক্রিয় সংযোগ"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "টিপ্পনীবোৰ"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "বিষয়বোৰৰ টেবুল"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr "আৰম্ভ কৰিবলৈ ইয়াত ক্লিক কৰক"
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr ""
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "মুখ্য পৃষ্ঠা"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr "অতিৰিক্ত তথ্য"
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "প্রেজেন্টেশ্বন্ ডাউনল'ড্ কৰক"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr "দুৰ্ভাগ্যক্ৰমে আপোনাৰ ব্রাউজাৰটোৱে ফ্লটিং ফ্রেমবোৰ সমৰ্থন কৰা নাই।"
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "প্রথম পৃষ্ঠা"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "অন্তিম পৃষ্ঠা"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "টেক্সট"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "ছবি"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "বিষয়বোৰৰ সৈতে"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "বিষয়বোৰৰ অবিহনে"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "দিয়া পৃষ্ঠালৈ"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "বিটমেপবোৰ বহুভুজলৈ সলনি কৰক"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr "প্রেজেন্টেশ্বনৰ পৰা প্রস্থান কৰিবলৈ ক্লিক কৰক..."
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "সাময়িক বিৰতি..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr "3D ফেভৰাইট প্ৰয়োগ কৰক"
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
#, fuzzy
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "ছবি ফিল্টাৰ"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
#, fuzzy
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
@@ -1624,832 +1630,832 @@ msgstr ""
"ফাইলটো এটা কাৰ্যকৰী ধ্বনি ফাইল নহয় !"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "মেটা ফাইললৈ সলনি কৰক"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "বিটমেপলৈ সলনি কৰক"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "$(URL1) ফাইলটো সৃষ্টি কৰিব নোৱাৰি."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "$(URL1) ফাইলটো খুলিব পৰা নগ'ল."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr "$(URL1)ফাইলটো $(URL2) লৈ প্ৰতিলিপি কৰিব পৰা নগ'ল."
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr ""
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "শ্লাইডৰ পুনৰ নাম দিয়ক"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr ""
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr ""
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "নাম"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr ""
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr "স্বয়ংক্ৰিয় খচৰাৰ কাৰণে শিৰোনাম এৰিয়া"
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr "স্বয়ংক্ৰিয় খচৰাৰ কাৰণে বস্তুৰ এৰিয়া"
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "ফুটাৰ এৰিয়া"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "হেডাৰ এৰিয়া"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "ডাটা এৰিয়া"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "শ্লাইড সংখ্যাৰ এৰিয়া"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "পৃষ্ঠা সংখ্যাৰ এৰিয়া"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<header>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<footer>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<date/time>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<number>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<count>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr ""
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr ""
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "টোকাসমূহৰ স্থান"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "হানগল/হানজ ৰূপান্তৰকৰণ"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "শ্লাইডবোৰ"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "পৃষ্ঠাবোৰ"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "পূৰ্বদৃশ্য উপলব্ধ নহয়"
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "পূৰ্বদৃশ্য প্ৰস্তুত কৰি আছে"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "খচৰাবোৰ"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr ""
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
#, fuzzy
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "উপস্থাপন শীৰ্ষক"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "শৈলীবোৰ"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr "আকৃতি %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr ""
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "স্লাইড বিস্তাৰ পুনৰ সংহতি কৰক"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "ফাইল ভৰাওক"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "ছার্ট ভৰাওক"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "ছবি সুমুৱাওক"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr ""
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "পৃষ্ঠাসমূহ ড্ৰেগ আৰু ড্ৰপ কৰক"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "স্লাইডসমূহ ড্ৰেগ আৰু ড্ৰপ কৰক"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "অনুগ্ৰহ কৰি এলবামলৈ ছবিবোৰ যোগ কৰক।"
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "লিখনী স্লাইড"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
#, fuzzy
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr "স্থানীয় লক্ষ্য ডাইৰেকটৰি '%FILENAME'খন খালী নহয়. কিছুমান ফাইল পুনৰ লিখিবলগীয়া হ'ব পাৰে. আপুনি অব্যাহত ৰাখিবলৈ বিচাৰেনেকি?"
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "পৃষ্ঠভূমিৰ বস্তুবোৰ"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "বিন্যাস"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr "নিয়ন্ত্রণবোৰ"
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr "মাত্রা ৰেখাবোৰ"
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "শ্লাইড"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "পৃষ্ঠা"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "শ্লাইড"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr ""
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr ""
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
#, fuzzy
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "মাস্টাৰ পৃষ্ঠাসমূহ"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr ""
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(টিপ্পনীবোৰ)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "হেণ্ডআউটবোৰ"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "শিৰোনাম টেক্সট ফৰমেট সম্পাদনা কৰিবলৈ ক্লিক কৰক"
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "ৰূপৰেখা টেক্সট ফৰমেট সম্পাদনা কৰিবলৈ ক্লিক কৰক"
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr ""
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr ""
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "দ্বিতীয় ৰূপৰেখা স্তৰ"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "তৃতীয় ৰূপৰেখা স্তৰ"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "চতুর্থ ৰূপৰেখা স্তৰ"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "পঞ্চম ৰূপৰেখা স্তৰ"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "ষষ্ঠ ৰূপৰেখা স্তৰ"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "সপ্তম ৰূপৰেখা স্তৰ"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "শ্লাইডৰ স্থান পৰিৱর্তন কৰিবলৈ ক্লিক কৰক"
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "টিপ্পনীবোৰৰ ফৰমেট সম্পাদনা কৰিবলৈ ক্লিক কৰক"
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr ""
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr ""
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "শীৰ্ষক যোগ কৰিবলৈ ক্লিক কৰক"
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "টেক্সট যোগ কৰিবলৈ ক্লিক কৰক"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "টেক্সট যোগ কৰিবলৈ ক্লিক কৰক"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "টোকাসমূহ যোগ কৰিবলে ক্লিক কৰক"
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr ""
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr ""
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr ""
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "এটা ছবি যোগ কৰিবলে দুবাৰ-ক্লিক কৰক"
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "এটা অবজেক্ট যোগ কৰিবলে দুবাৰ-ক্লিক কৰক"
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "এটা চাৰ্ট যোগ কৰিবলে দুবাৰ-ক্লিক কৰক"
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "এটা সংঘঠন চাৰ্ট যোগ কৰিবলৈ দুবাৰ-ক্লিক কৰক"
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "এটা স্প্ৰেডশ্বীট যোগ কৰিবলৈ দুবাৰ ক্লিক কৰক"
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "ডিফল্ট"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "শিৰোনাম"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr ""
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "শ্লাইডবোৰৰ স্থান পৰিৱর্তন কৰক"
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr ""
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr ""
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr ""
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "পূর্ণ নকৰা বস্তু"
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "কোনো পূৰ্ণ আৰু কোনো শাৰী নহোৱাকৈ অবজেক্ট"
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr ""
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr ""
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr ""
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr ""
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr ""
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr ""
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr ""
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr ""
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr ""
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr ""
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr ""
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr ""
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr ""
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr ""
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr ""
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr ""
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr ""
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr ""
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr ""
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr ""
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr ""
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr ""
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr ""
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "শিৰোনাম"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "উপশিৰোনাম"
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "ৰূপৰেখা"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "পৃষ্ঠভূমিৰ বস্তুবোৰ"
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "টিপ্পনীবোৰ"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "পাৱাৰ পইণ্ট আমদানি"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "ডকুমেন্ট ছেভ কৰক"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "কক্ষ"
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "ৰেখা"
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "স্তম্ভ"
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
@@ -2457,649 +2463,649 @@ msgstr ""
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "ড্ৰয়িং দৃশ্য"
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "ড্ৰয়িং দৃশ্য"
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "ৰূপৰেখা দৃশ্য"
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "শ্লাইডবোৰৰ দৰ্শন"
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "এইখিনিতেই আপুনি শ্লাইডবোৰৰ বৰ্গীকৰণ কৰে."
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "টিপ্পনী দৃশ্য"
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "এইখিনিতেই দৃশ্য"
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "উপস্থাপন শীৰ্ষক"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "PresentationOutliner"
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "PresentationSubtitle"
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "PresentationPage"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "PresentationNotes"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "হেণ্ডআউট"
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "UnknownAccessiblePresentationShape"
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "PresentationFooter"
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "PresentationFooterShape"
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "PresentationHeader"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "PresentationDateAndTime"
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "PresentationPageNumber"
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME উপস্থাপন"
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "শীৰ্ষক"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "আউটলাইনাৰ"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "উপশীৰ্ষক"
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "টোকাসমূহ"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "হেণ্ডআউট"
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "অজ্ঞাত অভিগম্য উপস্থাপন আকৃতি"
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "ফুটাৰ"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "হেডাৰ"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "তাৰিখ"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "সংখ্যা"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(কেৱল-পঢ়িব পৰা)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "কোনো নহয়"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "পৰৱৰ্তী ক্লিক পৰ্যন্ত"
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "শ্লাইড শেষ নোহোৱা পৰ্যন্ত"
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "দিশ (_D):"
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "জুম"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "স্প'কবোৰ"
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "দ্বিতীয় ৰং"
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "ফণ্ট"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "টাইপফেচ"
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "ৰেখাৰ ৰং"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "আখৰৰ আকাৰ"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "আকাৰ"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "পৰিমাণ"
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "ৰং"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(ধ্বনি নাই)"
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(পূৰ্বৱৰ্তী ধ্বনি বন্ধ কৰক)"
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "অন্য ধ্বনি..."
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "নমুনা"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "ট্ৰিগাৰ"
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "ব্যৱহাৰকাৰী পথসমূহ"
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "গতিৰ পথবোৰ"
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr ""
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "কোনো নহয়"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Today,"
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Yesterday,"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "লেখক"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress প্ৰদৰ্শনৰ শেষত আহি পাইছে। আপুনি আৰম্ভণীৰ পৰা চলাব বিচাৰে নে?"
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress প্ৰদৰ্শনৰ আৰম্ভণীত আহি পাইছে। আপুনি শেষৰ পৰা চলাব বিচাৰে নে?"
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw দস্তাবেজৰ শেষত আহি পাইছে। আপুনি আৰম্ভনীৰ পৰা চলাব বিচাৰে নে?"
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw দস্তাবেজৰ আৰম্ভণীত আহি পাইছে। আপুনি শেষৰ পৰা চলাব বিচাৰে নে?"
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "মন্তব্য সোমাওক"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "মন্তব্য(সমূহ) মচি দিয়ক"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "মন্তব্য সঞ্চলন কৰক"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "মন্তব্য সম্পাদন কৰক"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "%1 লে উত্তৰ দিয়ক"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "মেডিয়া পুনৰ বজাওক"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "টেবুল"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "দস্তাবেজ"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr ""
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr ""
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "সমলসমূহ"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "স্লাইডৰ নাম"
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "পৃষ্টাৰ নাম"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "তাৰিখ আৰু সময়"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "লুকাই থকা পৃষ্টাসমূহ"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "ৰং"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "আকাৰ"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "পুস্তিকা (_r)"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "পৃষ্ঠাৰ কাষবোৰ"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "অন্তর্ভূক্ত কৰক"
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "প্ৰিন্টাৰ পছন্দসমূহৰ পৰা কেৱল পৃষ্ঠা ট্ৰে ব্যৱহাৰ কৰক (~U)"
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr ""
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr ""
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "উপস্থাপনটোৰ শেষলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি আৰম্ভণিত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "উপস্থাপনটোৰ আৰম্ভণিলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি শেষত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "দস্তাবেজটোৰ শেষলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি আৰম্ভণিত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "দস্তাবেজটোৰ আৰম্ভণিলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি শেষত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr ""
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -9743,146 +9749,145 @@ msgid "Sound:"
msgstr "শব্দ (_S):"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
#, fuzzy
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "শব্দ বিহীন"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
#, fuzzy
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "পূৰ্বৱৰ্তী ধ্বনি বন্ধ কৰক"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "অন্য ধ্বনি..."
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr ""
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "পৰৱৰ্তী ধ্বনি নোহোৱালৈকে লুপ কৰক"
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr ""
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
#, fuzzy
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "ভেৰিয়েন্স"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr ""
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
#, fuzzy
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "পৰিৱৰ্তন ৰূপান্তৰ কৰক"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "মাউছ ক্লিকত"
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr ""
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
-#, fuzzy
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
-msgstr "স্বচালিতভাৱে ইয়াৰ পিছত (_A):"
+msgid "After:"
+msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
#, fuzzy
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "উন্নত শ্লাইড"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr ""
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr ""
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
#, fuzzy
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "স্বচালিত পূৰ্বদৃশ্য"
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr ""
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "বজাওক"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr ""
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr ""
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 6118ab1149d..8bc7fc629f3 100644
--- a/source/as/sfx2/messages.po
+++ b/source/as/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
"PO-Revision-Date: 2018-10-21 19:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -846,11 +846,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "কোনো নহয়"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "ছবি"
+msgstr ""
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1640,11 +1640,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1665,16 +1665,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1695,10 +1695,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1713,10 +1713,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1761,10 +1761,10 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
+msgid "Sunset"
msgstr ""
#. 73Y2e
@@ -2290,6 +2290,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "লেবেলসমূহ"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr ""
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr ""
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr ""
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr ""
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr ""
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr ""
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr ""
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr ""
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr ""
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr ""
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr ""
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr ""
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr ""
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2645,9 +2945,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2710,91 +3010,157 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr ""
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr ""
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr ""
+
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr ""
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
msgctxt "documentfontspage|embedFonts"
@@ -3977,9 +4343,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr ""
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/as/starmath/messages.po b/source/as/starmath/messages.po
index 57ba5a62899..1b81bec3a0d 100644
--- a/source/as/starmath/messages.po
+++ b/source/as/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -489,2234 +489,2234 @@ msgstr ""
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "+ চিহ্ন"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "- চিহ্ন"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "+- চিহ্ন"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "-+ চিহ্ন"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "বুলীয়েন NOT"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "সংযোজন +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "বিয়োগ -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
#, fuzzy
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "পূৰণ (বিন্দু)"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "পূৰণ (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "পূৰণ (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "বিভাজন (শ্লেশ্ব্)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "বিভাজন (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "বিভাজন (ভগ্নাংশ)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "বুলিয়েন AND"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "বুলিয়েন OR"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "সমান"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "সমান নহয়"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "কম"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "অধিক"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "কম বা সমান হয়"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ডাঙৰ বা সমান"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "কম বা সমান হয়"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "ডাঙৰ বা সমান"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
#, fuzzy
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "অধিক"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "সর্বসম"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "প্রায় সমান"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "একে"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "একে বা সমান"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "সমানুপাতিক"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "সমকোণাকাৰ"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "সমান্তৰাল"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "ফালে"
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "ত আছে"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "ত নাই"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "অধিকাৰী হয়"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "সংযুক্তকৰণ"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "খণ্ডিত কৰক"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "পার্থক্য"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "উপসংহতি"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "উপসংহতি বা সমান"
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "উত্তমসংহতি"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "চুপাৰচেট বা সমান"
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "উপসংহতি নহয়"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "উপসংহতি বা সমান নহয়"
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "উত্তমসংহতি নহয়"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "উত্তমসংহতি বা সমান নহয়"
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "প্রকৃত মূল্য"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "গৌণিক"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "বৰ্গ মূল"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N তম বর্গমূল"
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফলন"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "সূচকীয় ফলন"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "স্বাভাৱিক লগাৰিথম"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "লগাৰিথম"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "ছাইন"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "কোছাইন"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "স্পৰ্শক"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "সহস্পৰ্শক"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "আর্কছাইন"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "আর্ককোছাইন"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "আর্কটানজেণ্ট"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "আৰ্ককোটানজেন্ট"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "অতিপৰাবৃত্তীয় ছাইন"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "অতিপৰাবৃত্তীয় কোছাইন"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "অতিপৰাবৃত্তীয় স্পৰ্শক"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "অতিপৰাবৃত্তীয় সহস্পৰ্শক"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় ছাইন"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় কোছাইন"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় স্পৰ্শক"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "ক্ষেত্ৰফল অতিপৰাবৃত্তীয় সহস্পৰ্শক"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "যোগফল"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
#, fuzzy
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
#, fuzzy
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "ছুপাৰস্ক্ৰিপ্ট ওপৰৰ"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "উৎপাদন"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
#, fuzzy
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "সহ-উৎপাদন"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
#, fuzzy
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "লাইমছ"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "ছুপাৰস্ক্ৰিপ্ট ওপৰৰ"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "তাত অস্তিত্ব আছে"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "তাত অস্তিত্ব নাই"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "সকলোৰে বাবে"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "সমাকলন"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "দুগুণ সমাকলন"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "তিনিগুণ সমাকলন"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "বক্র সমাকলন"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "দুগুণ বক্র সমাকলন"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "তিনিগুণ বক্ৰ সমাকলন"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "জটিল স্বৰাঘাত"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "ওপৰৰ ৰেখা"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "সুৰৰ মাত্রা"
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "ওলোটা ছাৰ্কামফ্লেক্স"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "বৃত্ত"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "বিন্দু"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "দ্বৈত বিন্দু"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "তিনিগুণ বিন্দু"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "গম্ভীৰ স্বৰাঘাত"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "ছার্কামফ্লেক্স"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "টিল্ড"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "ভেক্টৰ কাঁড়"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "তলৰ ৰেখা"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "ৰেখাৰ ওপৰ"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "ৰেখাৰ জৰিয়তে"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "স্বচ্ছ"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "ডাঠ ফন্ট"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "ইটালীক ফন্ট"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "পুনৰ আকাৰ দিয়ক"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "ফন্ট সলনি কৰক"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "ৰঙ নিৰ্বাচক"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "ৰঙ টেব"
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "গোট বন্ধনীসমূহ"
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "গোলাকাৰ বন্ধনীসমূহ"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "বৰ্গক্ষেত্ৰৰ বন্ধনীসমূহ"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "দ্বৈত বর্গক্ষেত্র বন্ধনী"
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "ধনুৰ্বন্ধনীসমূহ"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "কোণ বন্ধনীসমূহ"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "এটা শাৰী"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "দ্বৈত ৰেখাসমূহ"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "অপাৰেটৰ বন্ধনীসমূহ"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "গোলাকাৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "বৰ্গক্ষেত্ৰৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "দ্বৈত বৰ্গক্ষেত্ৰৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "ধনুৰ্বন্ধনীসমূহ (জুখিব পৰা)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "কোণ বন্ধনীসমূহ (জুখিব পৰা)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "একমাত্ৰ ৰেখাসমূহ (জুখিব পৰা )"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "দ্বৈত ৰেখাসমূহ (জুখিব পৰা)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "অপাৰেটৰ বন্ধনীসমূহ (জুখিব পৰা)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "ধনুৰ্বন্ধনীসমূহৰ ওপৰ (জুখিব পৰা)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "ধনুৰ্বন্ধনীসমূহৰ তল (জুখিব পৰা)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "ছাবস্ক্ৰিপ্ট সোঁফালৰ"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "ঘাত"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "ছাবস্ক্ৰিপ্ট বাওঁফালৰ"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "ছুপাৰস্ক্ৰিপ্ট বাওঁফালৰ"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "ছাবস্ক্ৰিপ্ট তলৰ"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "ছুপাৰস্ক্ৰিপ্ট ওপৰৰ"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "সৰু ব্যৱধান"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
#, fuzzy
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "খালী"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "নতুন শাৰী"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "উলম্ব ষ্টেক (দুটা উপাদান)"
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "উলম্ব ষ্টেক"
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "মেট্রিক্স ষ্টেক"
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "বাওঁফালে সংৰেখন"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "কেন্দ্ৰলৈ সংৰেখন"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "সোঁফালে সংৰেখন"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "আলেফ"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "খালী সংহতি"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "প্ৰকৃত অংশ"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "কাল্পনিক ভাগ"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "অসীম"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "আংশিক"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "নাবলা"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Weierstrass p"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "মধ্যভাগত বিন্দুসমূহ"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "ওপৰলৈ বিন্দুসমূহ"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
#, fuzzy
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "তললৈ বিন্দুসমূহ"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "তলত বিন্দুসমূহ"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "উলম্বভাৱে বিন্দুসমূহ"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "শৃংঙ্খলা"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
#, fuzzy
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "বিভাজন (শ্লেশ্ব্)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "ভাগ কৰে"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "ভাগ নকৰে"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "দ্বৈত কাঁড় বাওঁফালৰ"
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "দ্বৈত কাঁড় বাওঁফালৰ আৰু সোঁফালৰ"
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "দ্বৈত কাঁড় সোঁফালৰ"
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "স্বাভাৱিক সংখ্যাসমূহৰ সংহতি"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "পূৰ্ণ সংখ্যাসমূহৰ সংহতি"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "প্ৰকৃত সংখ্যাসমূহৰ সংহতি"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "বাস্তৱ সংখ্যাসমূহৰ সংহতি"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "জটিল সংখ্যাসমূহৰ সংহতি"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "ডাঙৰ ছার্কামফ্লেক্স"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "ডাঙৰ টিল্ডসমূহ"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "ডাঙৰ ভেক্টৰ কাঁড়"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h বাৰ"
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "লেম্বডা বাৰ"
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "বাওঁফালৰ কাঁড়"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "সোঁফালৰ কাঁড়"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "ওপৰৰ কাঁড়"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "তলৰ কাঁড়"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "আগত আহে"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "আগত আহে অথবা সমান"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "আগত আহে অথবা সমতূল্য"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "পিছত আহে"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "পিছত আহে অথবা সমান"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "পিছত আহে অথবা সমতূল্য"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "আগত নাহে"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "পিছত নাহে"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "ইউনেৰী/বাইনেৰী অপাৰেটৰসমূহ"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "সম্বন্ধসমূহ"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "অপাৰেশ্বন সংহতি কৰক"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "ফলনসমূহ"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "অপাৰেটৰসমূহ"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "বৈশিষ্টসমূহ"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "বন্ধনীসমূহ"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "বিন্যাসসমূহ"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "অন্য"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "উদাহৰণসমূহ"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "প্ৰামাণিক"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ইটালীক"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ডাঠ"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "কলা"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "নীলা"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "সেউজীয়া"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "ৰঙা"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "মটিয়া"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "নেমু"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "কৃষ্ণৰক্তবৰ্ণ"
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ইষৎনীলা"
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "জলফাই"
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "জামুকলীয়া"
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ৰূপ"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "টিল"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "হালধীয়া"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "লুকুৱাওক"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "আকাৰ"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "আখৰ"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "বাওঁফাল"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "কেন্দ্ৰ"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "সোঁফাল"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "কমান্ডসমূহ"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "সূত্রসমূহ"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "দস্তাবেজ সংৰক্ষণ কৰা হৈছে..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION সূত্ৰ"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "অপ্ৰত্যাশিত আখৰ"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' প্রত্যাশিত"
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' প্রত্যাশিত"
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' প্রত্যাশিত"
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' প্রত্যাশিত"
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' প্রত্যাশিত"
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "আৱশ্যকীয় ৰং"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' প্রত্যাশিত"
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "সমলসমূহ"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "শীৰ্ষক"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "সূত্র লিখনী"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "সীমাৰেখাবোৰ"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "আকাৰ"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "প্ৰকৃত আকাৰ"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "পৃষ্ঠাত খাপ খুৱাওক"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index db2a8253037..52f786e6d7d 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -832,2270 +832,2276 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "%1 ৰ ওলোটা ক্রম"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "%1 স্থান পৰিৱর্তন কৰক"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "%1 ক পুনৰ আকাৰ দিয়ক"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "%1 আৱৰ্তন কৰক"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 অনুভূমিক"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 উলম্ব"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 ডায়েগনেল"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "%1 ফ্লিপ কৰক"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "%1 বিকৃত কৰক"
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "%1 ক্রম অনুসাৰে ৰাখক"
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "%1 বৃত্ত"
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "%1 বিকৃত কৰক"
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "%1 পূৰ্ব নিৰ্দেশ বাতিল কৰক"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "%1 ৰ bézier বৈশিষ্ট্যবোৰ সলনি কৰক"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "%1 ৰ bézier বৈশিষ্ট্যবোৰ সলনি কৰক"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "%1 ৰ প্রস্থানৰ দিশ"
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "%1 ৰিলেটিভ এট্ৰিবিয়ুট"
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "%1 ৰ প্রসংগ বিন্দু"
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "%1 গোট"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "%1 গোটমুক্ত কৰক"
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "%1 এট্ৰিবিয়ুটবোৰ প্ৰয়োগ কৰক"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "%1 শৈলীবোৰ প্ৰয়োগ কৰক"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "%1 পাছত স্মৃতিৰ পৰা আঁতৰাওক"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "%1 ক বহুভুজলৈ"
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "%1 বক্ৰলৈ ৰূপান্তৰ কৰক"
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "%1 সংৰেখন"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "%1 ওপৰলৈ সংৰেখন কৰক"
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "%1 তললৈ সংৰেখন কৰক"
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "%1 অনুভূমিকভাৱে"
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "%1 বাওঁফালে সংৰেখন কৰক"
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "%1 সোঁফালে সংৰেখন কৰক"
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "%1 উলম্বভাৱে"
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "%1 কেন্দ্ৰ"
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "%1 সলনি কৰক"
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "%1 সংযোগ কৰক"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "%1 একত্রিত কৰক"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "%1 বাদ দিয়ক"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "%1 ইন্টাৰ্সেক্ট"
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "নির্বাচিত বস্তুবোৰ বিতৰণ কৰক"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr ""
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "%1 সংযোগ কৰক"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "%1 বিভাজন কৰক"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "%1 বিভাজন কৰক"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "%1 বিভাজন কৰক"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "বস্তু(বোৰ) ভৰাওক"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "%1 আগ্লু বিন্দু ভৰাওক"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr "%1 গ্লু বিন্দু ভৰাওক"
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "প্রসংগ-বিন্দুৰ স্থান পৰিৱৰ্তন কৰক"
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "%1 সলনি কৰক"
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "%1 স্থান পৰিৱর্তন কৰক"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "%1 ক পুনৰ আকাৰ দিয়ক"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "%1 আৱৰ্তন কৰক"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 অনুভূমিক"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 উলম্ব"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 ডায়েগনেল"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "%1 ফ্লিপ কৰক"
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "%1 ইন্টাৰ্এক্টিভ গ্রেডিয়েন্ট"
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "%1 ইন্টাৰ্এক্টিভ স্বচ্ছতা"
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "%1 বিকৃত কৰক"
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "%1 ক্রম অনুসাৰে ৰাখক"
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "%1 বৃত্ত"
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "%1 বিকৃত কৰক"
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "%1 গোট"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "%1 এৰে ব্যাসাৰ্ধ কৰক"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "%1 সলনি কৰক"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "%1 ক পুনৰ আকাৰ দিয়ক"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "%1 স্থান পৰিৱর্তন কৰক"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "%1 প্রসংগ-বিন্দুৰ স্থান পৰিৱৰ্তন কৰক"
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "%1 জোখ সমাযোজন কৰক"
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "%1 সলনি কৰক"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "TextEdit: দফা %1, শাৰী %2, স্তম্ভ %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 নিৰ্বাৰ্চিত"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "%1 ৰ পৰা পইন্ট"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 পইন্ট %1 ৰ পৰা"
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr "%1 গ্লু বিন্দু ভৰাওক"
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr "%2 গ্লু বিন্দুবোৰ %1 ৰ পৰা"
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "বস্তুবোৰ চিহ্নিত কৰক"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "অতিৰিক্ত বস্তুবোৰ চিহ্নিত কৰক"
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "বিন্দুবোৰ চিহ্নিত কৰক"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "অতিৰিক্ত বিন্দুবোৰ চিন্হিত কৰক"
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr "গ্লু বিন্দুবোৰ চিহ্নিত কৰক"
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr "অতিৰিক্ত গ্লু বিন্দুবোৰ চিন্হিত কৰক"
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "%1 সৃষ্টি কৰক"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "%1 ভৰাওক"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "%1 প্ৰতিলিপি কৰক"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "%1 ৰ অবজেক্ট অনুক্ৰম সলনি কৰক"
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "%1 টেক্সট সম্পাদনা কৰিবলৈ দুবাৰ ক্লিক কৰক"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "পৃষ্ঠা ভৰাওক"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "পৃষ্ঠা মচি পেলাওক"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "পৃষ্ঠাৰ প্রতিলিপি কৰক"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "পৃষ্ঠাবোৰৰ অনুক্ৰম সলনি কৰক"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "পৃষ্ঠভূমি পৃষ্ঠা নির্ধাৰণ পৰিস্কাৰ কৰক"
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "পৃষ্ঠভূমি পৃষ্ঠা নির্ধাৰণ সলনি কৰক"
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "দস্তাবেজ ভৰাওক"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "স্তৰ ভৰাওক"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "স্তৰ মচি পেলাওক"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "%1 -ৰ অবজেক্ট নাম সলনি কৰক"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "%1 ৰ অবজেক্ট শীৰ্ষক সলনি কৰক"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "%1 -ৰ অবজেক্ট বিৱৰণ সলনি কৰক"
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "অন"
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "অফ"
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "হয়"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "নহয়"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "প্ৰকাৰ 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "প্ৰকাৰ 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "প্ৰকাৰ 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "প্ৰকাৰ 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "উলম্ব"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "স্বয়ংক্রিয়"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "অফ"
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "সমানুপাতিক"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "আকৃতিৰ যোগ্য (সকলোবোৰ শাৰী পৃথকভাৱে) "
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "কঠিন এট্ৰিবিয়ুটবোৰ ব্যৱহাৰ কৰক"
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "ওপৰ"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "তল"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "সম্পূৰ্ণ উচ্চতা ব্যৱহাৰ কৰক"
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "প্ৰসাৰিত"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "বাওঁফাল"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "সোঁফাল"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "সম্পূৰ্ণ প্ৰস্থ ব্যৱহাৰ কৰক"
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "প্ৰসাৰিত"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "অফ"
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "খন্তেকীয়া উজ্জ্বল পোহৰ"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "স্ক্ৰ'ল কৰক"
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "বৈকল্পিক"
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "ভিতৰলৈ স্ক্ৰ'ল কৰক"
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "বাওঁফাল"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "ওপৰ"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "সোঁফাল"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "তলত"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "মানবিশিষ্ট সংযোগকৰ্তা"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "ৰেখা সংযোগক"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "পোন সংযোগকৰ্তা"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "বক্রাকাৰ সংযোগক"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "মানবিশিষ্ট"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "ব্যাসাৰ্ধ"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "স্বয়ংক্ৰিয়"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr "বাহিৰত বাওঁফালে"
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "অভ্যন্তৰ (কেন্দ্রীকৃত)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr "বাহিৰত সোঁফালে"
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "স্বয়ংক্ৰিয়"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "ৰেখাৰ ওপৰত"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "ভগ্ন ৰেখা"
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "ৰেখাৰ তলত"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "কেন্দ্রীকৃত"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "সম্পূর্ণ বৃত্ত"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "বৃত্তৰ পাই"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "বৃত্ত ভাগ"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "আর্ক্"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "অজ্ঞাত এট্ৰিবিয়ুট"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "ৰেখাৰ শৈলী"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "ৰেখাৰ নমুনা"
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "ৰেখাৰ প্রস্থ"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "ৰেখাৰ ৰং"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "প্রাৰম্ভ ৰেখা"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "ৰেখাৰ অন্ত"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "প্রাৰম্ভ ৰেখাৰ প্রস্থ"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "ৰেখা অন্তৰ প্রস্থ"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "কাঁড়চিহ্নৰ আগৰ কেন্দ্ৰ"
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "কাঁড়চিহ্ন শেষৰ কেন্দ্ৰ"
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "ৰেখাৰ স্বচ্ছতা"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "ৰেখাৰ সংযোগ"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "ৰেখা এট্রিবিয়ুটবোৰ"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "শৈলী পূৰ্ণ কৰক"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "ৰং ভৰাওক"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "গ্রেডিয়েন্ট"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "হেচ্চিং"
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "বিটমেপ ভৰাওক"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "গ্ৰেডিয়েন্ট পদক্ষেপবোৰৰ সংখ্যা"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "টাইল পূৰ্ণ"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "ফিলবিটমেপৰ স্থান"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "ফিলবিটমেপৰ প্রস্থ"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "ফিলবিটমেপৰ উচ্চতা"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "স্বচ্ছ গ্ৰেডিয়েন্ট"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "2 ৰ বাবে সংৰক্ষণ পূৰ্ণ কৰক"
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "% ত টাইল আকাৰ নহয়"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "% ত টাইল অফছেট X"
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "% ত টাইল অফছেট Y"
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "বিটমেপ স্কেলিং"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "% ত টাইল স্থান X"
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "% ত টাইল স্থান Y"
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "পৃষ্ঠভূমি পূৰক"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "এৰিয়া এট্রিবিয়ুটবোৰ"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "ফন্টৱর্ক শৈলী"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "ফন্টৱর্ক সংৰেখন"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "ফন্ট ৱর্কৰে ব্যৱধান দি আছে"
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "ফন্টৱর্ক আখৰ আৰম্ভ"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "ফন্টৱর্ক দাপোন"
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "ফন্টৱর্ক ৰূপৰেখা"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "ফন্টৱর্ক ছাঁ"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "ফন্টৱর্ক ছাঁৰ ৰং"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "ফন্টৱর্ক ছাঁ অফছেট X"
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "ফন্টৱর্ক ছাঁ অফছেট Y"
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "ফন্টৱর্কৰ ৰূপৰেখা লুকোৱাই থওক"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "ফন্টৱর্ক ছাঁৰ স্বচ্ছতা"
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "ছাঁ"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "ছাঁৰ ৰং"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "ছাঁৰ ব্যৱধান দিয়া X"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "ছাঁৰ ব্যৱধান দিয়া Y"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "ফন্টৱর্ক ছাঁৰ স্বচ্ছতা"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3D ছাঁ"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "অবিকল দৃশ্য ছাঁ"
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "লিজেণ্ডৰ প্ৰকাৰ"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "নির্দিষ্ট লিজেণ্ড কোণ"
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "লিজেণ্ড কোণ"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "লিজেণ্ড ৰেখাবোৰৰ ব্যৱধান"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "লিজেণ্ড সংৰেখন প্রস্থান"
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "সম্বন্ধীয় প্ৰস্থান লিজেণ্ড"
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "সম্বন্ধীয় প্ৰস্থান লিজেণ্ড"
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "লিজেণ্ডৰ প্রকৃত প্রস্থান"
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "লিজেণ্ড ৰেখাৰ দৈর্ঘ্য"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "লিজেণ্ড ৰেখাবোৰৰ স্বয়ংক্ৰিয় দৈৰ্ঘ্য"
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "শ্লান্ট আৰু চুক ব্যাসাৰ্ধ"
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "নূন্যতম ফ্রেম উচ্চতা"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "অট'ফিট উচ্চতা"
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "ফ্ৰেমলৈ টেক্সট খাপ খুৱাওক"
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "বাঁফালৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "সোঁফালৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "ওপৰৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "তলৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "উলম্ব টেক্সট এংকৰ"
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "সর্বাধিক ফ্রেম উচ্চতা"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "নূন্যতম ফ্রেম প্রস্থ"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "সর্বাধিক ফ্রেম প্রস্থ"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "অট'ফিট প্রস্থ"
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "অনুভূমিক টেক্সট এংকৰ"
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "ঘড়ী"
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "ঘড়ীৰ দিশ"
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "ঘড়ী ভিতৰত আৰম্ভ হৈছে"
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "ঘড়ীৰ ভিতৰত সমাপ্তি"
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "ঘড়ী চলাৰ সংখ্যা"
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "ঘড়ীৰ দ্ৰুতি"
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "ঘড়ীৰ ষ্টেপ আকাৰ"
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "ৰূপৰেখা টেক্সটৰ ধাৰা"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত এট্রিবিয়ুটবোৰ"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "আখৰ-স্বাধীন শাৰী ব্যৱধান ব্যৱহাৰ কৰক"
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "আকাৰত শব্দ আৱৰ্ত টেক্সট"
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "সংযোগকৰ্তাৰ প্ৰকাৰ"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "অনুভূমিক ব্যৱধান দিয়া বস্তু 1"
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "উলম্ব ব্যৱধান দিয়া বস্তু 1"
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "অনুভূমিক ব্যৱধান দিয়া বস্তু 2"
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "উলম্ব ব্যৱধান দিয়া বস্তু 2"
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "গ্লু ব্যৱধান দিয়া বস্তু 1"
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "গ্লু ব্যৱধান দিয়া বস্তু 2"
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "স্থান পৰিৱৰ্তন কৰাৰ যোগ্য ৰেখাবোৰ সংখ্যা"
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "অফছেট ৰেখা 1"
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "অফছেট ৰেখা 2"
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "অফছেট ৰেখা 3"
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "মাত্ৰা দিয়াৰ প্ৰকাৰ"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "মাত্রা মূল্য - অনুভূমিক স্থান"
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "মাত্রা মূল্য - উলম্ব স্থান"
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "মাত্রা ৰেখা ব্যৱধান"
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "মাত্ৰা সহায় ৰেখা অভাৰহেং"
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "মাত্ৰা সহায় ৰেখাই ব্যৱধান দি আছে"
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "মাত্ৰা সহায় ৰেখা 1 ৰ বেকলগ"
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "মাত্ৰা সহায় ৰেখা 2 ৰ বেকলগ"
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "তলৰ পাৰ্শ্ব মাত্রাযুক্ত কৰি আছে"
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "মাত্রা মূল্যৰ মাত্রা ৰেখাৰ ওপৰত"
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "মাত্ৰা মূল্য 180 ডিগ্ৰীৰ দ্বাৰা আৱৰ্তন কৰক"
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "মাত্রা ৰেখা অভাৰহেং"
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "পৰিমাপক একক"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "অতিৰিক্ত স্কেল ফেক্টৰ"
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "পৰিমাপক একক প্রদর্শন"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "মাত্রা মূল্য ফৰমেট"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "মাত্ৰা মূল্যটোৰ অট'পজিশ্বনিং"
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "মাত্ৰা মূল্যটোৰ স্বয়ংক্ৰিয়ভাৱে স্থান দিয়াৰ বাবে কোণ"
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "মাত্রা মূল্যৰ কোণৰ নিৰ্দ্ধাৰণ"
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "মাত্রা মূল্যৰ কোণ"
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "দশমিক স্থানবোৰ"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "বৃত্তৰ প্ৰকাৰ"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "কোণ"
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "অন্তিম কোণ"
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "সুৰক্ষিত বস্তুৰ স্থান"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "সুৰক্ষিত বস্তুৰ আকাৰ"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "বস্তু, ছপা কৰিবৰ যোগ্য"
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "অবজেক্ট, দৃশ্যমান"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "স্তৰ ID"
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "স্তৰ"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "বস্তুৰ নাম"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "স্থান X, সম্পূৰ্ণ"
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "স্থান Y, সম্পূৰ্ণ"
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "সৰ্বমুঠ প্ৰস্থ"
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "উচ্চতা, সম্পূৰ্ণ"
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "একমাত্ৰ স্থান X"
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "একমাত্ৰ স্থান Y"
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "একমাত্ৰ উচ্চতা"
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "একমাত্ৰ উচ্চতা"
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "যুক্তিপূর্ণ প্রস্থ"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "যুক্তিপূর্ণ উচ্চতা"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "একমাত্ৰ আৱৰ্তন কোণ"
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "একমাত্ৰ শ্বীয়েৰ কোণ"
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "অনুভূমিকভাৱে স্থান পৰিৱর্তন কৰক"
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "উলম্বভাৱে স্থান পৰিৱর্তন কৰক"
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "X ক পুনৰ আকাৰ দিয়ক, একমাত্ৰ"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Y ক পুনৰ আকাৰ দিয়ক, একমাত্ৰ"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "একমাত্ৰ আৱৰ্তন"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "একমাত্ৰ অনুভূমিক শ্বীয়েৰ"
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "একমাত্ৰ উলম্ব শ্বীয়েৰ"
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "X ক পুনৰ আকাৰ দিয়ক, সম্পূৰ্ণ"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Y ক পুনৰ আকাৰ দিয়ক,সম্পূৰ্ণ"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "সকলোবোৰ আৱৰ্তন কৰক"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "শ্বীয়াৰ অনুভূমিক, সম্পূৰ্ণ"
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "শ্বীয়াৰ উলম্ব, সম্পূৰ্ণ"
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "প্রসংগ বিন্দু 1 X"
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "প্রসংগ বিন্দু 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "প্রসংগ বিন্দু 2 X"
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "প্রসংগ বিন্দু 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "হাইফেনেশ্বন"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "বুলেটবোৰ প্রদর্শন কৰক"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "নাম্বাৰীং ইণ্ডেন্টবোৰ"
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "নাম্বাৰীং স্তৰ"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "বুলেট আৰু নাম্বাৰিংবোৰ"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "ইণ্ডেন্টবোৰ"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "পেৰেগ্ৰাফৰ ব্যৱধান"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "ৰেখাৰ ব্যৱধান"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "পেৰেগ্ৰাফ সংৰেখন"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "টেবুলেটৰবোৰ"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "আখৰৰ ৰং"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "আখৰ সমষ্টি"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "আখৰৰ আকাৰ"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "আখৰৰ প্রস্থ"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "স্পষ্ট (স্থূলতা)"
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "আণ্ডাৰলাইন কৰক"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "অভাৰলাইন"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "ষ্ট্ৰাইক থ্ৰ"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "ইটালিক"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "ৰূপৰেখা"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "আখৰৰ ছাঁ"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "ছুপাৰ স্ক্ৰিপ্ট/ছাব স্ক্ৰিপ্ট"
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "কের্নীং"
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "মেনুৱেল কেৰ্নিং"
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "ব্যৱধানবোৰৰ বাবে আণ্ডাৰলাইন নাই"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "টেবুলেটৰ"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "বৈকল্পিক লাইন ব্রেক"
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "পৰিৱর্তনৰ অযোগ্য আখৰ"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "ফিল্ডবোৰ"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "ৰঙা"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "নীলা"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "উজ্জ্বলতা"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "পার্থক্য"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "গামা"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "ওলোটা কৰক"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr ""
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "ক্রপ"
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "মেডিয়া বস্তু"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "মেডিয়া বস্তুবোৰ"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "স্তম্ভ বিৰতি ভৰাওক"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "শাৰী ভৰাওক"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "স্তম্ভ মচি পেলাওক"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "শাৰী মচি পেলাওক"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "কোষ বিভাজন কৰক"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "কোষবোৰ মাৰ্জ কৰক"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "ফৰমেট"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "শাৰীবোৰ যুগ্মভাৱে বিতৰণ কৰক"
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "স্তম্ভবোৰ যুগ্মভাৱে বিতৰণ কৰক"
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
#, fuzzy
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "বিষয়বোৰ মচি পেলাওক"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "টেবুল"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "ছেটিংছ"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "টেবুল"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "টেবুলবোৰ"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
#, fuzzy
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
@@ -3103,259 +3109,259 @@ msgstr "ফন্ট কাৰ্য্য"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "নিৰন্তৰ"
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "গ্ৰেডিয়েন্ট"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "বিটমেপলৈ"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "আৰ্হি"
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "ৰেখা শৈলী"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "কোনো নহয়"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "ৰং"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "হেচ্চিং"
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "কাঁড়ৰ আগবোৰ"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "কাঁড়"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "বৰ্গক্ষেত্ৰ বেভেল"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "বৃত্ত"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- কোনো নহয় -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "কেন্দ্ৰীকৃত"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "কেন্দ্রীকৃত নহয়"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "অবিকল্পিত"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "গ্রেস্কেল"
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "ক'লা/বগা"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "জলচিহ্ন"
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "খালী"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "মটিয়া"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "বগা"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "হালধীয়া"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "সোণ"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "কমলা"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "ৰঙা"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "মেজেন্টা"
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "জামুকলীয়া"
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "নীলা"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "টিল"
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
@@ -3363,2324 +3369,2324 @@ msgstr "ৰেখা"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "পাতল ধোৱাবৰণ"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "পাতল ৰঙা"
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "পাতল নীলা"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "পাতল সেউজীয়া"
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "ডাঠ ৰঙা"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "বেঙুনীয়া"
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "চিয়ান"
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "ছার্ট"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "আকাশনীলা"
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "সংযোগ"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "সেউজ-নীলা"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3D"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "ক'লা 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "ক'লা 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "নীলা"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "মুগা"
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "মুদ্ৰা"
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "মুদ্রা 3D"
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "মুদ্রা মটিয়া"
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "মুদ্রা শেতা বেঙুনীয়া"
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "মুদ্রা সেউজ-নীলা"
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "মটিয়া"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "শেতা বেঙুনীয়া"
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "ৰঙা"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "সেউজ-নীলা"
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "হালধীয়া"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "এলিগেন্ট"
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "আৰ্থিক"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "ৰেখাৰ সংযোগ গড়"
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "ৰেখাৰ সংযোগ বেভেল"
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "ৰেখাৰ সংযোগ মাইট্যাৰ"
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "ৰেখাৰ সংযোগ ঘূৰণীয়া"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "লাইন কেপ চেপেটা"
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "লাইন কেপ গোল"
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "লাইন কেপ বৰ্গাকাৰ"
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "গ্ৰেডিয়েন্ট"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "একঘাতীয় নীলা/বগা"
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "একঘাতীয় মেজেন্টা/সেউজীয়া"
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "একঘাতীয় হালধীয়া/মুগা"
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "অৰীয় সেউজীয়া/ক'লা"
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "অৰীয় ৰঙা/হালধীয়া"
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "আয়তাকাৰ ৰঙা/বগা"
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "বৰ্গক্ষেত্ৰ হালধীয়া/বগা"
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "ইলিপছইড নীলা মটিয়া/পাতল নীলা"
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "অক্ষীয় পাতল ৰঙা/বগা"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "কৰ্ণ 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "কৰ্ণ 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "কৰ্ণ 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "কৰ্ণ 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "কৰ্ণ 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "কৰ্ণ 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "কৰ্ণ 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "কৰ্ণ 4r"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "কর্ণ নীলা"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "কর্ণ সেউজীয়া"
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "কর্ণ সুমথিৰা"
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "কর্ণ ৰঙা"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "কৰ্ণ টাৰকুইচ"
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "কর্ণ বেঙুনীয়া"
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "এটা চুকৰ পৰা"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "এটা চুকৰ পৰা, নীলা"
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "এটা চুকৰ পৰা, সেউজীয়া"
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "এটা চুকৰ পৰা, সুমথীৰা"
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "এটা চুকৰ পৰা, ৰঙা"
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "এটা চুকৰ পৰা, টাৰকুইচ"
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "এটা চুকৰ পৰা, বেঙুনীয়া"
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "মাজৰ পৰা"
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "মাজৰ পৰা, নীলা"
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "মাজৰ পৰা, সেউজীয়া"
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "মাজৰ পৰা, সুমথীৰা"
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "মাজৰ পৰা, ৰঙা"
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "মাজৰ পৰা, টাৰকুইচ"
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "মাজৰ পৰা, বেঙুনীয়া"
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "আনুভূমিক নীলা"
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "আনুভূমিক সেউজীয়া"
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "আনুভূমিক সুমথীৰা"
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "আনুভূমিক ৰঙা"
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "আনুভূমিক টাৰকুইচ"
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "আনুভূমিক বেঙুনীয়া"
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "বিস্তৃত"
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "বিস্তৃত নীলা"
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "বিস্তৃত সেউজীয়া"
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "বিস্তৃত সুমথীৰা"
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "বিস্তৃত ৰঙা"
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "বিস্তৃত টাৰকুইচ"
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "বিস্তৃত বেঙুনীয়া"
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "উলম্ব"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "উলম্ব নীলা"
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "উলম্ব সেউজীয়া"
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "উলম্ব সুমথীৰা"
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "উলম্ব ৰঙা"
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "উলম্ব টাৰকুইচ"
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "উলম্ব বেঙুনীয়া"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "ধূসৰ গ্ৰেডিএন্ট"
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "হালধীয়া গ্ৰেডিএন্ট"
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "সূমথীৰা গ্ৰেডিএন্ট"
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "ৰঙা গ্ৰেডিএন্ট"
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "গোলপীয়া গ্ৰেডিএন্ট"
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "আকাশ"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "চিয়ান গ্ৰেডিএন্ট"
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "নীলা গ্ৰেডিএন্ট"
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "বেঙুনীয়া পাইপ"
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "ৰাতি"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "সেউজীয়া গ্ৰেডিএন্ট"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "ৰিক্ত"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "বিটমেপলৈ"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
#, fuzzy
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "শতাংশ"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
#, fuzzy
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "অনুভূমিক এঢলীয়া কৰক"
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
#, fuzzy
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "অনুভূমিক এঢলীয়া কৰক"
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "তৰংগ"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
#, fuzzy
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "অনুভূমিক ৰেখা"
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
#, fuzzy
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "তৰংগ"
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
#, fuzzy
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "সৰল"
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
#, fuzzy
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "একক"
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "গোলক"
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "উলম্ব"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "ক্রছ"
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "বৰ্গ 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "দ্বৈত কাঁড়"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "বৃত্ত"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "বৰ্গক্ষেত্ৰ বেভেল"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "কাঁড়"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "অপূৰ্ণ ত্ৰিভুজ"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "অপূৰ্ণ হিৰক"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "হীৰা"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "অপূৰ্ণ বৃত্ত"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "অপূৰ্ণ বৰ্গ 45"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "অপূৰ্ণ বৰ্গ"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "গম্ভীৰ স্বৰাঘাত"
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "জটিল স্বৰাঘাত"
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "গম্ভীৰ স্বৰাঘাত"
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "জামুকলীয়া"
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "গেলেৰীৰ বিষয়বস্তু"
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "সফলভাৱে পুনৰুদ্ধাৰ হ'ল"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "মূল দস্তাবেজ পুনৰুদ্ধাৰ হ'ল"
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "পুনৰুদ্ধাৰ অসফল হ'ল"
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "পুনৰুদ্ধাৰ চলি আছে"
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "এতিয়ালৈকে পুনৰুদ্ধাৰ হোৱা নাই"
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
#, fuzzy
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION এ আপোনাৰ আলেখ্যন উদ্ধাৰ কৰিব। আলেখ্যনৰ আকাৰ ওপৰত নিৰ্ভৰ কৰি সময় লাগিব।"
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
#, fuzzy
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
@@ -5689,518 +5695,518 @@ msgstr ""
"আপোনাৰ আলেখ্যন চাবলৈ 'শেষ' টিপক।"
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "সমাপ্ত (~F)"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
#, fuzzy
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "সৰ্বশেষ স্বনিৰ্বাচিত মানবোৰ"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "pt"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr ""
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "বস্তু(বোৰ) ভৰাওক"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "3D বস্তু আৱৰ্তন কৰক"
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "নিঃসাৰিত বস্তু সৃষ্টি কৰক"
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "আৱর্তমান বস্তু সৃষ্টি কৰক"
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "3D বস্তুৰ বিভাজন কৰক"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[All]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "গ্রাফিক্স ফিল্টাৰ"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "নতুন বিষয়বস্তু"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3D প্রভাৱসমূহ"
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "এনিমেশ্বনবোৰ"
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "বুলেটবোৰ"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "অফিচ"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "পতাকাবোৰ"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "ফ্ল ছার্টবোৰ"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "ইমোটিকনবোৰ"
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "ছবিসমূহ"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "পৃষ্ঠভূমিবোৰ"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "হ'মপেজ"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "ইন্টাৰেকশ্বন"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "মেপবোৰ"
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "মানুহ"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "পৃষ্ঠবোৰ"
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "কম্পিউটাৰ"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "চিত্ৰসমূহ"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "পৰিৱেশ"
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "বিত্ত"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "পৰিবহন"
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "লিখনীআকৃতিসমূহ"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "ধ্বনিবোৰ"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "প্ৰতীকবোৰ"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "মোৰ বিষয়বস্তু"
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "কাঁড়বোৰ"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "বেলুনবোৰ"
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "কীবর্ড"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "সময়"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "উপস্থাপন"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "কেলেণ্ডাৰ"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "নেভিগেশ্বন"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "যোগাযোগ"
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "বিত্তবোৰ"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "কম্পিউটাৰ"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "জলবায়ু"
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "বিদ্যালয় আৰু বিশ্ববিদ্যালয়"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "সমস্যা সমাধান কৰা"
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "পর্দা বীনবোৰ"
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "মুদ্ৰণৰ বাছনী"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "আপুনি নিৰ্বাচনটো বা সম্পূৰ্ণ দস্তাবেজটো মুদ্ৰণ কৰিবলৈ বিচাৰেনেকি?"
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "সকলো (~A)"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "নিৰ্বাচন (~S)"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "নিঃসাৰিত উত্তৰ-পশ্চিম"
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "নিঃসাৰিত উত্তৰ"
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "নিঃসাৰিত উত্তৰ-পূব"
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "নিঃসাৰিত পশ্চিম"
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "নিঃসাৰিত পিছফালে"
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "নিঃসাৰিত পূব"
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "নিঃসাৰিত দক্ষিণ-পশ্চিম"
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "নিঃসাৰিত দক্ষিণ"
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "নিঃসাৰিত দক্ষিণ-পূব"
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "0 ছে.মি. (~0)"
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "1 ছে.মি. (~1)"
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "2.5 ছে.মি. (~2.5)"
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "5 ছে.মি. (~5)"
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ছে.মি. (~c)"
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 ইঞ্চি"
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.5 ইঞ্চি (~5)"
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "1 ইঞ্চি (~1)"
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "2 ইঞ্চি (~2)"
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "4 ইঞ্চি (~4)"
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
#, fuzzy
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "পূর্ণ কৰা নাই"
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
#, fuzzy
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "স্বচ্ছতা"
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "অবিকল্পিত"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "সীমাৰেখাৰ শৈলী"
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
#, fuzzy
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "ৰেখাৰ নাম্বাৰীং (~L)..."
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "পৃষ্ঠাবোৰ"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "ফৰমেটিং পৰিষ্কাৰ কৰক"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
#, fuzzy
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
@@ -6208,394 +6214,394 @@ msgstr "অধিক বিকল্প"
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "ফন্টৰ নাম"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "ফন্ট নাম। বৰ্তমান ফন্ট উপলব্ধ নাই আৰু ইয়াৰ পৰিৱৰ্তে অন্য এটা দিয়া হব।"
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "স্বনিৰ্বাচিত"
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "নিঃসৰণ"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "নিঃসৰণৰ অন/অফ প্ৰয়োগ কৰক"
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "তললৈ হেলনীয়া কৰক"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "ওপৰলৈ হেলনীয়া কৰক"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "বাঁওফালে হেলনীয়া কৰক"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "সোঁফালে হেলনীয়া কৰক"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "নিঃসৰণৰ গভীৰতা সলনি কৰক"
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "অনুস্থাপন সলনি কৰক"
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "প্ৰক্ষেপণৰ প্রকাৰ সলনি কৰক"
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "লাইটিং সলনি কৰক"
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "উজ্জ্বলতা সলনি কৰক"
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "নিঃসৰণৰ উপৰিভাগ সলনি কৰক"
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "নিঃসৰণৰ ৰং সলনি কৰক"
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "প্রিয়"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "ফন্টৱর্ক"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "ফন্টৱর্কৰ আকৃতি প্ৰয়োগ কৰক"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "ফন্টৱর্কৰ একে আখৰৰ উচ্চতা প্ৰয়োগ কৰক"
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "ফন্টৱর্ক শাৰীকৰণ প্ৰয়োগ কৰক"
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "ফন্টৱর্ক আখৰৰ স্পেচিং প্ৰয়োগ কৰক"
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "সৈতে"
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "শৈলী"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "আৰু"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "চুক নিয়ন্ত্ৰণ"
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "এটা চুক পইণ্টৰ নিৰ্বাচন."
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "বাওঁফালে ওপৰৰ"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "মাজভাগৰ ওপৰত"
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "সোঁফালৰ ওপৰত"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "বাওঁফালৰ কেন্দ্ৰ"
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "সোঁফালৰ কেন্দ্ৰ"
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "বাঁওফালে তলত"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "মাজভাগৰ তলত"
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "সোঁফালে তলত"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "ৰূপৰেখা নিয়ন্ত্ৰণ"
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "এইখিনিতেই আপুনি ৰূপৰেখা সম্পাদনা কৰিব পাৰিব."
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "বিশেষ আখৰ নিৰ্বাচন"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "এই এৰিয়াটোত বিশেষ আখৰ নিৰ্বাচন কৰক."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "আখৰৰ ক'ড "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "'#' ফিল্ডত ইনপুটৰ প্ৰয়োজন. অনুগ্ৰহ কৰি মূল্য ভৰাওক."
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "ফর্মবোৰ"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "কোনো নিয়ন্ত্ৰণ নিৰ্বাচন কৰা নাই"
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "বৈশিষ্ট্যবোৰ: "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "ফর্ম বৈশিষ্ট্যবোৰ"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "ফৰ্ম নেভিগেটৰ"
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "ফৰ্ম"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "ফৰ্ম"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "লুকোৱাই থোৱা নিয়ন্ত্রণ"
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "নিয়ন্ত্রণ"
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "ৰেকৰ্ড"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "ৰ"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "ফিল্ড যোগ কৰক:"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "ডাটাবেছলৈ ডাটা লিখোতে ভুল"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "প্ৰশ্ন প্ৰকাশ-ভংগীত ছিন্টেক্স ভুল"
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "আপুনি 1 ৰেকৰ্ড ডিলিট কৰিব বিচাৰে."
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# ৰেকৰ্ডবোৰ ডিল্ট কৰা হ'ব."
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6605,331 +6611,337 @@ msgstr ""
"আপুনি তথাপিA অব্যাহত ৰাখিবলৈ বিচাৰেনেকি?"
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "নেভিগেশ্বন বাৰ"
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "স্তম্ভ"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "'#' বৈশিষ্ট্যবোৰ ছেট কৰক"
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "ধাৰকত ভৰাওক"
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "# মচি পেলাওক"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "# বস্তুবোৰ মচি পেলাওক"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "এটা ধাৰক উপাদান প্ৰতিস্থাপন কৰক"
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "নিয়ন্ত্ৰণ প্ৰতিস্থাপন কৰক"
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "পুশ্ব বাটন"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr "বিকল্প বাটন"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "টেক্সটৰ বাকছ"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "পৰীক্ষা বাকছ"
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "লেবেল ফিল্ড"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "গোট বাকছ"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "টেক্সটৰ বাকছ"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "ফৰমেট কৰি থোৱা ফিল্ড"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "কোম্বো বাকছ"
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "তালিকা বাকছ"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr "কোম্বো বাকছ"
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "ছবি বাটন"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "ছবি নিয়ন্ত্ৰণ"
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "ফাইল নির্বাচন"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "তাৰিখ ফিল্ড"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "সময় ফিল্ড"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "সংখ্যা ফিল্ড"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "মুদ্রা ফিল্ড"
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "আৰ্হি ফিল্ড"
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "ফৰমেট কৰি থোৱা ফিল্ড"
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "পুশ্ব বাটন"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "বিকল্প বাটন"
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "লেবেল ফিল্ড"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "গোট বাকছ"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "ছবি বাটন"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "ছবি নিয়ন্ত্ৰণ"
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "ফাইল নির্বাচন"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "টেবুল নিয়ন্ত্ৰণ "
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "স্ক্ৰ'ল বাৰ"
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "স্পিন বাটন"
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "নেভিগেশ্বন বাৰ"
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "বহু অংশবিশিষ্ট নির্বাচন"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "কোনো ডাটা সম্বন্ধীয় নিয়ন্ত্ৰণবোৰ বৰ্তমানৰ ফৰ্মত নাই!"
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Date)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Time)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "ফিল্টাৰ নেভিগেটৰ"
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "ৰ বাবে ফিল্টাৰ"
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "অথবা"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "বৈধ বাউণ্ড নিয়ন্ত্ৰণবোৰ যিবোৰ এই টেবুলৰ দৃশ্যত ব্যৱহাৰ কৰিব পাৰি বৰ্তমানৰ ফৰ্মত সেইবোৰ বৰ্তি থকা নাই."
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<AutoField>"
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "SQL বিবৃতিত ছিন্টেক্স ভুল"
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "#1 মানৰ সৈতে LIKE ব্যৱহাৰ কৰিব নোৱাৰি."
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "এই ফিল্ডখনৰ সৈতে LIKE ব্যৱহাৰ কৰিব নোৱাৰি."
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "এন্টাৰ কৰা মূল্যটো বৈধ তাৰিখ নহয়. অনুগ্ৰহ কৰি বৈধ ফৰমেটত তাৰিখ এন্টাৰ কৰক, উদাহৰণ স্বৰূপে, MM/DD/YY."
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "ফিল্ডখন এটা অখণ্ড সংখ্যাৰ সৈতে তুলনা কৰিব নোৱাৰি."
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ টেবুল নাই।"
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ টেবুল বা প্ৰশ্ন নাই।"
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ টেবুল বা প্ৰশ্ন ইতিমধ্যে আছে।"
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ প্ৰশ্ন নাই।"
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "টেবুল \"#2\" ত স্তম্ভ \"#1\" অজ্ঞাত।"
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "ফিল্ডখন এটা ফ্লটিং বিন্দু সংখ্যাৰ সৈতে তুলনা কৰিব নোৱাৰি।"
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "প্ৰৱেশ কৰা নির্ণায়কটো এই ফিল্ডখনৰ সৈতে তুলনা কৰিব নোৱাৰি."
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "ডাটা নেভিগেটৰ"
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (কেৱল পঢ়িবৰ বাবে)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "এই ফাইলটো ইতিমধ্যে আছে. পুনৰ লিখিবলৈ বিচাৰেনেকি?"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object# লেবেল"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
@@ -6940,7 +6952,7 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই আৰ্হিটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
@@ -6951,7 +6963,7 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই উদাহৰণটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
@@ -6962,13 +6974,13 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই উপাদানটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "আপুনি সঁচাকৈয়ে এট্ৰিবিয়ুট '$ATTRIBUTENAME' টো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
@@ -6981,7 +6993,7 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই সমৰ্পণটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
@@ -6994,1015 +7006,1015 @@ msgstr ""
"আপুনি সচাকৈয়ে এই বাইন্ডিংটো ডিলিট কৰিব বিচাৰে নেকি?"
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "'%1' নামটো XML ত বৈধ নহয়. অনুগ্ৰহ কৰি আন এটা নাম ভৰাওক।"
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "'%1' উপসৰ্গটো XML ত বৈধ নহয়। অনুগ্ৰহ কৰি আন এটা উপসৰ্গ ভৰাওক।"
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "'%1' নামটো ইতিমধ্যে আছে। অনুগ্ৰহ কৰি আন এটা নাম ভৰাওক।"
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "সমৰ্পণটোৰ এটা নাম থকাটো অপৰিহাৰ্য."
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
#, fuzzy
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "পোষ্ট"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
#, fuzzy
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "পোৱা"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "কোনো নহয়"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
#, fuzzy
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "উদাহৰণবোৰ (~I)"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
#, fuzzy
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "দস্তাবেজ"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "বাইন্ডিং: "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "প্ৰসংগ: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "কার্য্য: "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "পদ্ধতি: "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "প্ৰতিস্থাপন কৰক: "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "উপাদান যোগ কৰক"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "উপাদান সম্পাদনা কৰক"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "উপাদান মচি পেলাওক"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "এট্ৰিবিয়ুট"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "এট্রিবিয়ুট সম্পাদনা কৰক"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "এট্ৰিবিয়ুট মচি পেলাওক"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "বাইন্ডিং যোগ কৰক"
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "বাইন্ডিং সম্পাদনা কৰক"
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "বাইন্ডিং মচি পেলাওক"
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "সমৰ্পণ যোগ কৰক"
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "সমৰ্পণ সম্পাদনা কৰক"
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "সমৰ্পণ মচি পেলাওক"
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
#, fuzzy
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "উপাদান"
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
#, fuzzy
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "এট্রিবিয়ুটবোৰ"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
#, fuzzy
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "বাইণ্ডিংবোৰ"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "বাইণ্ডিং অভিব্যক্তি"
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
#, fuzzy
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "আপুনি নিশ্চিতনে যে আপুনি %PRODUCTNAME দস্তাবেজৰ উদ্ধাৰটো বাতিল কৰিবলৈ বিচাৰে?"
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "বাওঁফাল"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "সোঁফাল"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "দশমিক"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "পুনৰ লিখক"
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "ডিজিটেল চহি: দস্তাবেজৰ চহি OK."
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "ডিজিটেল চহি: দস্তাবেজৰ চহি OK, কিন্তু প্ৰমাণপত্ৰ পৰীক্ষা কৰিব পৰা ন'গ'ল।"
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "ডিজিটেল চহি: দস্তাবেজৰ চহি নাই।"
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "যুগ্মক স্বাক্ষৰ: দস্তাবেজ স্বাক্ষৰ আৰু প্ৰমাণপত্ৰ ঠিক আছে, কিন্তু দস্তাবেজৰ সকলো অংশ স্বাক্ষৰীত নহয়।"
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
#, fuzzy
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "দস্তাবেজ সলনি কৰা হৈছে। দস্তাবেজ সংৰক্ষণ কৰিবলে দুবাৰ-ক্লিক কৰক।"
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "সৰ্বশেষ সংৰক্ষণৰ পিছত দস্তাবেজটো সলনি কৰা হোৱা নাই।"
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "দস্তাবেজ ল'ড কৰা হৈ আছে..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "সৰুকৈ জুম কৰক"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "ডাঙৰকৈ জুম কৰক"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "সম্পূর্ণ পৃষ্ঠা"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "পৃষ্ঠাৰ প্রস্থ"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "উত্তম দৰ্শন"
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "শৈলীবোৰ অন্তর্ভুক্ত কৰি"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
#, fuzzy
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "পেৰেগ্ৰাফ শৈলীবোৰ"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
#, fuzzy
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "শৈলীবোৰ"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "সন্ধান কৰা চাবি পোৱা ন'গ'ল"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "ৰঙৰ পেলেট"
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
#, fuzzy
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "অকার্যকৰী পাছৱর্ড"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr ""
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Solid small circular bullets"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Solid large circular bullets"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Solid diamond bullets"
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Solid large square bullets"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Right pointing arrow bullets filled out"
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Right pointing arrow bullets"
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
#, fuzzy
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Number (1) (2) (3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Number 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Number (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Uppercase Roman number I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Uppercase letter A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Lowercase letter a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Lowercase letter (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Lowercase Roman number i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numeric, numeric, lowercase letters, solid small circular bullet"
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numeric, lowercase letters, solid small circular bullet"
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numeric"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numeric with all sublevels"
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
#, fuzzy
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "ফাইল স্থাপন কৰিব পৰা নগ'ল."
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "টেবুল ডিজাইনৰ ধৰন"
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "পূৰ্ব নিৰ্দেশ বাতিল কৰক: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "পূৰ্ব নিৰ্দেশ বাতিল কৰক: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "পুনৰ কৰক:$(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "পুনৰ কৰক:$(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "বিচাৰক"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "ফলা মিলাওক"
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(DPI) DPI ত $(WIDTH) x $(HEIGHT)"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kiB"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "অজ্ঞাত"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "চুইচ"
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "ৰঙা"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "নীলা"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "উজ্জ্বলতা"
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "পার্থক্য"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "গামা"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "ক্রপ"
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "অবিকল্পিত অনুস্থাপন"
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "ওপৰৰ পৰা তললৈ"
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "তলৰ পৰা ওপৰলৈ"
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "দ'ম কৰা হল"
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "বাওঁফালৰ সীমা: "
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "ওপৰৰ সীমা: "
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "সোঁফালৰ সীমা: "
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "তলৰ সীমা: "
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "পৃষ্ঠা বিৱৰণ: "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "বৰফলা আখৰবোৰ"
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "তলৰ কেছ"
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "ওপৰৰ কেছ ৰোমান"
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "তলৰ কেছ ৰোমান"
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "আৰবী"
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "কোনো নহয়"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "নৈসর্গিক দৃশ্য"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "প্ৰতিকৃতি"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "বাওঁফাল"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "সোঁফাল"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "সকলো"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "প্রতিফলিত"
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "লেখক: "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "তাৰিখ: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "টেক্সট: "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "আখৰৰ পৃষ্ঠভূমি"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "ৰঙৰ পেলেট"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8010,1942 +8022,2045 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "প্ৰাথমিক লেটিন"
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "লেটিন-1"
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "বিস্তৃত লেটিন-A"
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "বিস্তৃত লেটিন-B"
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA প্ৰসাৰণবোৰ"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "ৰূপান্তৰকাৰী আখৰবোৰৰ ব্যৱধান দি আছে"
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "ডায়েক্রিটিকেল মার্কবোৰ সংযোগ কৰি"
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "প্রাথমিক গ্রীক"
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "গ্ৰীক প্ৰতীক আৰু কোপ্তিক"
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "ছিৰিলিক"
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "আৰ্মেনিয়ান"
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "প্রাথমিক হিব্রু"
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "হিব্রু বিস্তৃত"
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "প্রাথমিক আৰবী"
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "আৰবী বিস্তৃত"
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "দেবনাগৰী"
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "বাংলা"
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "গুৰমুখী"
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "গুজৰাটী"
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "উৰিয়া"
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "তামিল"
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "টেলুগু"
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "কানাড়া"
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "মালায়ালম"
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "থাই"
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "লাও"
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "প্রাথমিক জর্জীয়ান"
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "জর্জিয়ান বিস্তৃত"
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "হানগল জামো"
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "অতিৰিক্ত বিস্তৃত লেটিন"
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "বিস্তৃত গ্রীক"
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "সাধাৰণ যতি চিহ্ন"
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "ছুপাৰ স্ক্ৰিপ্ট আৰু ছাব স্ক্ৰিপ্টবোৰ"
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "মুদ্রা প্রতীকবোৰ"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "ডায়েক্রিটিকেল প্রতীকবোৰ সংযোগ কৰি"
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "আখৰৰ দৰে প্রতীকবোৰ"
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "সংখ্যা ফর্মবোৰ"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "কাঁড়বোৰ"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "গাণিতিক অপাৰেটৰবোৰ"
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "সানমিহলি কাৰিকৰী"
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "চিত্রবোৰ নিয়ন্ত্রণ কৰক"
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "অপ্তিকেল আখৰৰ চিনাক্তকৰণ"
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "ঘেৰি ধৰা আলফা নিউমাৰিকবোৰ"
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "বক্স ড্ৰয়িং"
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "ব্লক এলিমেণ্টবোৰ"
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "জ্যামিতিক আকাৰবোৰ"
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "সানমিহলি প্রতীকবোৰ"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "ডিংবেটছ"
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK প্ৰতীকবোৰ আৰু উচ্চাৰণ"
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "হিৰাগানা"
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "কটকানা"
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "বোপোমোফো"
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "হানগল যোগ্যতা জামো"
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK সানমিহলি"
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "সংলগ্ন CJK চিঠি আৰু মাহবোৰ"
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK যোগ্যতা"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "হানগল"
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰ"
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ A"
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "ব্যক্তিগত ব্যৱহাৰৰ স্থান"
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK ৰ যোগ্য আইডিঅ'গ্ৰাফবোৰ"
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "বর্ণমালাক্রমিক প্রস্তুতিৰ ফর্ম"
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "আৰবী প্রেজেণ্টেশ্বন ফর্মবোৰ-A"
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "অর্ধ চিহ্নবোৰ সংযোগ কৰি"
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK যোগ্যতা ফর্মবোৰ"
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "সৰু ফৰ্মৰ পৃথক ৰূপবোৰ"
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "আৰবী উপস্থাপন ফর্মবোৰ-B"
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "অৰ্ধ-প্ৰস্থ আৰু পূৰ্ণ-প্ৰস্থৰ ফৰ্ম"
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "বিশেষবোৰ"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi বৈশিষ্ট্যসূচক"
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi ৰেডিকেলসমূহ"
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "পুৰনি ইটালিক"
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "গথিক"
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "ডেচাৰেট"
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "বাইজানটিন সংগীতৰ চিহ্ন"
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "সংগীতৰ চিহ্ন"
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "গাণিতিক আল্ফানিউমেৰিক চিহ্নসমূহ"
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK সংযুক্ত প্ৰতিকচিহ্নসমূহ প্ৰসাৰণ B"
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK সংযুক্ত প্ৰতিকচিহ্নসমূহ বিস্তাৰন C"
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ D"
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK সংগতা আইডিঅ'গ্ৰাফবোৰ পৰিপূৰক"
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "টেগবোৰ"
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "ছিৰিলিক পৰিপূৰক"
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "পৰিবৰ্তন নিৰ্বাচনকাৰী"
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "পৰিপূৰক ব্যক্তিগত ব্যৱহাৰ স্থান-A"
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "পৰিপূৰক ব্যক্তিগত ব্যৱহাৰ স্থান-B"
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "লিম্বু"
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "তাই লি"
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "খমেৰ চিহ্নসমূহ"
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "ধ্বনিতাত্বিক প্ৰসাৰণ"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "বিভিন্ন চিহ্ন আৰু কাঁড়চিহ্ন"
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "ইজিং হেক্সাগ্ৰাম চিহ্ন"
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "ৰৈখিক B ভগ্নশব্দ"
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "ৰৈখিক B প্ৰতিকচিহ্নসমূহ"
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "এজিয়ান সংখ্যাবোৰ"
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "উগাৰিটিক"
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "শাভিয়ান"
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "ওচমানিয়া"
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "সিংহলা"
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "তিব্বতীয়"
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "ম্যানমাৰ"
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "খমেৰ"
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "ঔঘম"
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "ৰুনিক"
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "ছিৰিয়াক্"
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "থানা"
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "ইথিয়োপিক"
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "চেৰোকী"
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "কানাডিয়ান স্বদেশীয় শব্দাংশ"
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "মংগোলীয়"
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "সানমিহলি গাণিতিক প্ৰতীকবোৰ-A"
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "পৰিপূৰক কাঁড়বোৰ-A"
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "ব্ৰেইল নমুনাবোৰ"
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "পৰিপূৰক কাঁড়বোৰ-B"
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "সানমিহলি গাণিতিক প্ৰতীকবোৰ-B"
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK ৰেডিকেল পৰিপূৰক"
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "কেঙচি ৰেডিকেলবোৰ"
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "আইডিঅ'গ্ৰাফিক বিৱৰণ আখৰবোৰ"
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "টেগাল'গ"
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "হানুনো"
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "টেগবানৱা"
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "বুহিড"
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "কানবুন"
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "বোপোমোফো প্রসাৰিত কৰা হ'ল"
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "কাটাকানা ধ্বনি বিজ্ঞান"
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK স্ট্ৰোক্চ"
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "চিপ্ৰিয়ট ভগ্নশব্দ"
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "তাই জুয়ান জিঙ্গ চিহ্নসমূহ"
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "পৰিবৰ্তন নিৰ্বাচনকাৰী পৰিপূৰক"
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "প্ৰাচিন গ্ৰীক সংগীতৰ স্বৰলিপি"
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "প্ৰাচিন গ্ৰীক সংখ্যা"
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "আৰবি পৰিপূৰক"
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "বুগিনিচ"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "সংযুক্তকাৰী বৈশিষ্টসূচক চিহ্ন পৰিপূৰক"
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "কপটিক"
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "ইথিওপিক প্ৰসাৰিত"
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "ইথিওপিক পৰিপূৰক"
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "জৰ্জিয়ান পৰিপূৰক"
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "গ্লাগোলিটিক"
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "খাৰোশতি"
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "পৰিবৰ্তক ধ্বনি আখৰ"
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "নতুন তাই লি"
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "পুৰনি ফাৰ্চি"
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "ধ্বনিতাত্বিক প্ৰসাৰণ পৰিপূৰক"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "অতিৰিক্ত যতিচিহ্ন"
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "চিলোটি নাগৰি"
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "টিফিনাগ"
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "উলম্ব বিন্যাস"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "ন'কো"
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "বালিনিছ"
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "লেটিন প্ৰসাৰিত-C"
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "লেটিন প্ৰসাৰিত-D"
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "ফাগ্চ-পা"
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "ফিনিচিয়ান"
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "কিউনিফৰ্ম"
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "কিউনিফৰ্ম সংখ্যা আৰু বিৰাম-চিহ্ন"
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "কাউন্টিং ৰড সংখ্যা"
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "চুণ্ডানিচ"
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "লেপচা"
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "ঔ চিকি"
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "চিৰিলিক প্ৰসাৰিত-A"
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "ৱাই"
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "চিৰিলিক প্ৰসাৰিত-B"
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "শৌৰাষ্ট্ৰ"
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "কায়াহ লি"
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "ৰেজাং"
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "ছাম"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "প্ৰাচিন চিহ্নসমূহ"
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "ফাইসটোচ ডিস্ক"
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "লাইচিয়ান"
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "কাৰিয়ান"
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "লাইডিয়ান"
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "মাহজোং টাইল"
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "ডমিনো টাইল"
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "চামাৰিটান"
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "কানাডিয়ান আদিবাসী ভগ্নশাব্দিক বিস্তাৰিত"
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "তাই থাম"
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "বেদিয় বিস্তাৰণসমূহ"
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "লিচু"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "বামুম"
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "সাধাৰণ ইন্ডিক নম্বৰ সঁজাসমূহ"
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "দেবনাগৰি প্ৰসাৰিত"
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "হেঙুল জামো বিস্তাৰিত-A"
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "জাভানিছ"
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "মাৱানমাৰ বিস্তাৰিত-A"
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "তাই ভিইয়ে"
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "মিতিই মাইয়েক"
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "হেঙুল জামো প্ৰসাৰিত-B"
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "ৰাজকিয় আৰামাইক্"
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "পুৰনি দক্ষিণ আৰবীয়"
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "এভেছটান"
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "ইনস্ক্ৰিপষণেল পাৰথিয়ান"
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "ইনস্ক্ৰিপষণেল পাহলাভি"
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "পুৰনি টাৰ্কিয়"
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "ৰুমি সাংখ্যিক চিহ্নসমূহ"
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "কাইথী"
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "ইজিপটিয় হাইৰোগ্লিফসমূহ"
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "বান্ধীত আল্ফানিউমেৰিক পৰিপূৰক"
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "বান্ধীত প্ৰতিকচিহ্নিত পৰিপূৰক"
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "মেনডেইক"
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "বাটাক"
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "ইথিওপিক প্ৰসাৰিত-A"
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "ব্ৰাহমী"
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "বামুম পৰিপূৰক"
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "কানা পৰিপূৰক"
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "খেলা কাৰ্ডসমূহ"
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "বিভিন্ন চিহ্ন আৰু ছবিলেখচিত্ৰসমূহ"
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "ইমোটিকনবোৰ"
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "পৰিবহন আৰু মানচিত্ৰ চিহ্নসমুহ"
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "এলকেমিকেল চিহ্নসমূহ"
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "আৰবীয় প্ৰসাৰিত-A"
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "আৰবীয় গাণিতিক আক্ষৰিক চিহ্নসমূহ"
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "চাকমা"
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "মিতিই মাইয়েক সম্প্ৰসাৰনসমূহ"
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "মেৰোইটিক কাৰ্চিভ"
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "মেৰোইটিক হাইৰোগ্লিফসমূহ"
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "মিয়াও"
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "শাৰদা"
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "চৰা চমপেঙ"
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "চুণ্ডানিচ পৰিপূৰিকা"
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "টাক্ৰি"
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "সংযুক্তকাৰী বৈশিষ্টসূচক চিহ্ন পৰিপূৰক"
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "বিস্তৃত লেটিন-A"
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "ৰৈখিক"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "অৱস্থা"
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "মাৱানমাৰ বিস্তাৰিত-A"
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "পুৰনি দক্ষিণ আৰবীয়"
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "পৰিপূৰক কাঁড়বোৰ-A"
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ A"
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "চিৰিলিক প্ৰসাৰিত-A"
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "জৰ্জিয়ান পৰিপূৰক"
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "নতুন"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "ব্যৱহাৰ"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ A"
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "মাৱানমাৰ বিস্তাৰিত-A"
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "ছিৰিলিক পৰিপূৰক"
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10809,7 +10924,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "তলৰ বাওঁফালৰ পৰা ওপৰৰ সোঁফাললৈ কৰ্ণ সীমাৰেখা"
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10817,11 +10932,29 @@ msgstr "তলৰ বাওঁফালৰ পৰা ওপৰৰ সোঁফ
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr ""
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr ""
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr ""
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr ""
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr ""
@@ -13797,181 +13930,49 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "স্তম্ভ বিৰতি ভৰাওক"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "টেক্সটৰ বাকছ"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr "পৰীক্ষা বাকছ"
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr "কোম্বো বাকছ"
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "তালিকা বাকছ"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "তাৰিখ ফিল্ড"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "সময় ফিল্ড"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "সংখ্যা ফিল্ড"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr "মুদ্রা ফিল্ড"
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr "আৰ্হি ফিল্ড"
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr "ফৰমেট কৰি থোৱা ফিল্ড"
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr ""
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
#, fuzzy
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "চিহ্নিত বস্তুৰ সৈতে প্ৰতিস্থাপন কৰক (_p)"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "টেক্সটৰ বাকছ"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr "পৰীক্ষা বাকছ"
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr "কোম্বো বাকছ"
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "তালিকা বাকছ"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "তাৰিখ ফিল্ড"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "সময় ফিল্ড"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "সংখ্যা ফিল্ড"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr "মুদ্রা ফিল্ড"
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr "আৰ্হি ফিল্ড"
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr "ফৰমেট কৰি থোৱা ফিল্ড"
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr ""
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "স্তম্ভ মচি পেলাওক"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
#, fuzzy
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr "স্তম্ভসমূহ লুকাওক (~H)"
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
#, fuzzy
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr "স্তম্ভসমূহ দেখুৱাওক (~S)"
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
#, fuzzy
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "অধিক..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
#, fuzzy
msgctxt "colsmenu|all"
msgid "_All"
msgstr "সকলো"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
#, fuzzy
msgctxt "colsmenu|column"
msgid "Column..."
@@ -14133,144 +14134,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "ছবিৰ তথ্য"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-#, fuzzy
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "টেক্সটৰ বাকছ"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-#, fuzzy
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "বুটাম"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-#, fuzzy
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "লেবেল ফিল্ড"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-#, fuzzy
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "গোট বাকছ"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-#, fuzzy
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "তালিকা বাকছ"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-#, fuzzy
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr "পৰীক্ষা বাকছ"
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-#, fuzzy
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr "ৰেডিঅ' বাটন (~R)"
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-#, fuzzy
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr "কোম্বো বাকছ"
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-#, fuzzy
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "ছবি বাটন"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-#, fuzzy
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "ফাইল নির্বাচন"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-#, fuzzy
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "তাৰিখ ফিল্ড"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-#, fuzzy
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "সময় ফিল্ড"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-#, fuzzy
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "সংখ্যা ফিল্ড"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-#, fuzzy
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr "মুদ্রা ফিল্ড"
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-#, fuzzy
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr "আৰ্হি ফিল্ড"
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-#, fuzzy
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr "ছবি নিয়ন্ত্ৰণ"
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-#, fuzzy
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr "ফৰমেট কৰি থোৱা ফিল্ড"
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-#, fuzzy
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr "স্ক্ৰ'ল বাৰ"
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr "স্পিন বাটন"
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr "নেভিগেশ্বন বাৰ"
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 020ad691b73..189e550848b 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: 2021-02-22 17:18+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+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"
@@ -1609,10 +1609,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2313,1511 +2313,1566 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "পাদটীকাৰ আখৰবোৰ"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "পৃষ্ঠা সংখ্যাবোৰ"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "কেপশ্বন আখৰবোৰ"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "ডাঙৰ আখৰবোৰ আঁতৰাওক"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "নাম্বাৰীং প্রতীকবোৰ"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr ""
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "ইন্টাৰনেট সংযোগ"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "পৰিদৰ্শিত ইন্টাৰনেট সংযোগ"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "স্থান ধাৰক"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "সূচী সংযোগ"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "অন্তিম টীকাৰ আখৰবোৰ"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "শাৰীৰ সংখ্যা"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "মূখ্য সূচীৰ প্ৰৱিষ্টি"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "ফুটনোট এঙ্কৰ"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "এণ্ডনোট এঙ্কৰ"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr "ৰুবিজ"
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "উলম্ব নাম্বাৰিং প্ৰতীকবোৰৰ"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "জোৰ দিয়া"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "দৃঢ়ভাৱে গুৰুত্ব আৰোপণ"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "উত্স টেক্সট"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "উদাহৰণ"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "ব্যৱহাৰকৰ্তাৰ প্ৰৱিষ্টি"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "চলক"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "সংজ্ঞা"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "টেলিটাইপ"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "ফ্রেম"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "গ্ৰাফিক্স"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "সূত্র"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "মার্জিনেলিয়া"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "জলচিহ্ন"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "লেবেলবোৰ"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr ""
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "লিখনী শৰীৰ"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "প্ৰথম শাৰী ইনডেণ্ট"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "হেঙ্গিং ইনডেণ্ট"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "লিখনী শৰীৰ ইনডেণ্ট"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr "সমাদৰসূচক বন্ধ"
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "স্বাক্ষৰ"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "শিৰোনাম"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr ""
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "অনুক্ৰমণিকা"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "তালিকাৰ ইণ্ডেন্ট"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "মার্জিনেলিয়া"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "শিৰোনাম ১"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "শিৰোনাম 2"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "শিৰোনাম 3"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "শিৰোনাম 4"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "শিৰোনাম 5"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "শিৰোনাম 6"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "শিৰোনাম 7"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "শিৰোনাম 8"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "শিৰোনাম 9"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "শিৰোনাম 10"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "নাম্বাৰিং 1 আৰম্ভ"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "নাম্বাৰিং ১"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "নাম্বাৰিং 1 শেষ"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "নাম্বাৰিং 1 চলি আছে"
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "নাম্বাৰিং 2 আৰম্ভ"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "নাম্বাৰিং ২"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "নাম্বাৰিং 2 শেষ"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "নাম্বাৰিং 2 চলি আছে"
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "নাম্বাৰীং 3 আৰম্ভ"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "নাম্বাৰিং ৩"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "নাম্বাৰিং 3 শেষ"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "নাম্বাৰিং 3 চলি আছে"
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "নাম্বাৰিং 4 আৰম্ভ"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "নাম্বাৰিং ৪"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "নাম্বাৰিং 4 শেষ"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "নাম্বাৰিং 4 চলি আছে"
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "নাম্বাৰিং 5 আৰম্ভ"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "নাম্বাৰিং ৫"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "নাম্বাৰিং 5 শেষ"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "নাম্বাৰিং 5 চলি আছে"
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr ""
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr ""
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr ""
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr ""
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr ""
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr ""
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr ""
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr ""
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr ""
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr ""
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr ""
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr ""
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr ""
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr ""
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr ""
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr ""
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr ""
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr ""
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr ""
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr ""
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "বাঁওফালৰ শিৰোনাম"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "সোঁফালৰ শিৰোনাম"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "ফুটাৰ"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "বাঁওফালৰ ফুটাৰ"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "সোঁফালৰ ফুটাৰ"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "টেবুলৰ বিষয়বোৰ"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "টেবুলৰ শিৰোনাম"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr "ফ্ৰেইমৰ সমলসমূহ"
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "পাদটীকা"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "অন্তিম টীকা"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "কেপশ্বন"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "দৃষ্টান্ত"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "টেবুল"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "টেক্সট"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "ছবি"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr ""
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "সূচী শিৰোনাম"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "সূচী 1"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "সূচী 2"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "সূচী 3"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "সূচী পৃথককর্তা"
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "বিষয়সূচীৰ শিৰোনাম"
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "বিষয়সূচী 1"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "বিষয়সূচী 2"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "বিষয়সূচী 3"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "বিষয়সূচী 4"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "বিষয়সূচী 5"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "বিষয়সূচী 6"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "বিষয়সূচী 7"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "বিষয়সূচী 8"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "বিষয়সূচী 9"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "বিষয়সূচী 10"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "ব্যৱহাৰকৰ্তা অনুক্ৰমণিকাৰ শিৰোনাম"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 1"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 2"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 3"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 4"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 5"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 6"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 7"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 8"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 9"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "ব্যৱহাৰকৰ্তাৰ অনুক্ৰমণিকা 10"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "উদ্ধৃতি"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr ""
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr ""
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "অবজেক্ট সূচী শিৰোনাম"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "অবজেক্ট সূচী ১"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "টেবুল সূচী শিৰোনাম"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "টেবুল সূচী ১"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "গ্রন্থ-সূচী শিৰোনাম"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "গ্রন্থ-সূচী 1"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "শীৰ্ষক"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "উপশিৰোনাম"
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "উদ্ধৃতিবোৰ"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "প্ৰি-ফৰমেটেড টেক্সট"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "অনুভূমিক ৰেখা"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "তালিকাৰ বিষয়বোৰ"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "তালিকাৰ শিৰোনাম"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr ""
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "প্রথম পৃষ্ঠা"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "বাওঁফালৰ পৃষ্ঠা"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "সোঁফালৰ পৃষ্ঠা"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "অনুক্ৰমণিকা"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "পাদটীকা"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "অন্তিম টীকা"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "নৈসর্গিক দৃশ্য"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr ""
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr ""
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr ""
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr ""
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr ""
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr ""
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr ""
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr ""
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr ""
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr ""
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "১টা স্তম্ভ"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "সমান আকাৰৰ ২টা স্তম্ভ"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "সমান আকাৰৰ ৩টা স্তম্ভ"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "ভিন্ন আকাৰৰ ২টা স্তম্ভ (বাও > সোঁ )"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "ভিন্ন আকাৰৰ ২টা স্তম্ভ (বাও < সোঁ )"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr ""
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
#, fuzzy
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "(পেৰেগ্ৰাফ শৈলী: "
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "আখৰৰ শৈলীবোৰ"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
#, fuzzy
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "পৃষ্ঠা শৈলী: "
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
#, fuzzy
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "পৃষ্ঠা শৈলী: "
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
#, fuzzy
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "শৈলীসমূহ তালিকাভুক্ত কৰক"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
#, fuzzy
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "পৃষ্ঠা শৈলী: "
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "লেফাফা"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "লেবেলবোৰ"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION টেক্সট দস্তাবেজ"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "দস্তাবেজ খুলিব নোৱাৰি."
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "দস্তাবেজ সৃষ্টি কৰিব নোৱাৰি."
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "ফিল্টাৰ বিচাৰি পোৱা নাই."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "মুখ্য দস্তাবেজটোৰ নাম আৰু পথ"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "HTML দস্তাবেজটোৰ নাম আৰু পথ"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "সম্পাদনা স্ক্ৰিপ্ট"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "পৃষ্ঠাসংকেত"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr ""
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr ""
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr ""
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[None]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "আৰম্ভ কৰক"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "অন্ত"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "ওপৰত"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "তলত"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "কেৱল পঢ়িবৰ বাবে"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "'স্বয়ংক্ৰিয় টেক্সট' নিৰ্দেশিকাবোৰ কেৱল পঢ়িবৰ বাবে. আপুনি পথ ছেটিংছ সংলাপবোৰ কল কৰিব বিচাৰে নেকি?"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "পৰিসংখ্যা"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "দস্তাবেজ আমদানি কৰি আছে..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "দস্তাবেজ ৰপ্তানি কৰি আছে..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "দস্তাবেজ ছেভ কৰি আছে..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "ৰিপেজিনেশ্বন..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "স্বয়ংক্রিয়ভাৱে দস্তাবেজ ফৰমেট কৰি আছে..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "সন্ধান..."
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "আখৰ"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "বানান পৰীক্ষা..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "হাইফেনেশ্বন..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "সূচী ভৰাই আছে..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "অনুক্ৰমণিকা আপডেট কৰি আছে..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "এবষ্ট্ৰাক্ট সৃষ্টি কৰি আছে..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "এডাপ্ট বস্তুবোৰ ..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "টেবুল"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "ছবি"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "বস্তু"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "ফ্ৰেম"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "আকৃতি"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "খণ্ড"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "নম্বৰিং"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "খালী পৃষ্ঠা"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "সাৰাংশ: "
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "বিভাজন কৰা: "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "ৰূপৰেখা: স্তৰ "
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "শৈলী: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "পৃষ্ঠাৰ সংখ্যা : "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "নতুন পৃষ্ঠাৰ আগৰ বিৰতি"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "পাশ্চ্যাত্য টেক্সট : "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "এছিয়ান টেক্সট : "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr ""
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "অজ্ঞাত লেখক"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "$1 ৰ সকলো টোকা মচি পেলাওক (~A)"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "$1 ৰ সকলো টোকা মচি পেলাওক (~A)"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr ""
@@ -3825,14 +3880,14 @@ msgstr ""
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr ""
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3841,7 +3896,7 @@ msgstr[1] ""
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3851,7 +3906,7 @@ msgstr[1] ""
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr ""
@@ -3859,7 +3914,7 @@ msgstr ""
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3869,7 +3924,7 @@ msgstr[1] ""
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3877,91 +3932,91 @@ msgstr[0] ""
msgstr[1] ""
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "টেক্সট টেবুললৈ সলনি কৰক"
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "স্ববিন্যাস যোগ কৰক"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "নাম"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "স্ববিন্যাস মচি পেলাওক"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "তলত দিয়া স্বয়ংক্ৰিয় ফৰমেট প্ৰৱিষ্টী ডিলিট কৰা হ'ব:"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "স্ববিন্যাস পুনৰ নামকৰণ কৰক"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "বন্ধ কৰক (~C)"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "জানুৱাৰী"
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "ফেব"
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "মার্চ"
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "উত্তৰ"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "মাজ"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "দক্ষিণ"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "যোগফল"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3973,86 +4028,86 @@ msgstr ""
"এটা বেলেগ নাম ভৰাই আকৌ চেষ্টা কৰক."
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "সাংখ্যিক"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "শাৰীবোৰ"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "স্তম্ভ"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "গ্রন্থসূচী প্রৱিষ্টিৰ সম্পাদনা কৰক"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি ভৰাওক"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "%1 আৰু %2 মাজৰ ব্যৱধান"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "স্তম্ভৰ %1 প্ৰস্থ"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "%PRODUCTNAME Writer টেবুল"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "%PRODUCTNAME Writer ফ্ৰেইম"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
#, fuzzy
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "%PRODUCTNAME Writer ফ্ৰেইম"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "অন্য OLE বস্তুবোৰ"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr ""
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
#, fuzzy
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
@@ -4060,335 +4115,335 @@ msgstr "বাছনী বৰ্গীকৰণ কৰিব নোৱাৰি
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "বস্তুত ক্লিক কৰক"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "স্বয়ংক্ৰিয় টেক্সট ভৰোৱাৰ আগতে"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "স্বয়ংক্ৰিয় টেক্সট ভৰোৱাৰ পাছত"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "মাউছ বস্তুটোৰ ওপৰত"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "ট্ৰিগাৰ হাইপাৰলিংক"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "মাউছে বস্তু এৰে"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "ছবি সফলভাৱে ল'ড কৰা হল"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "ছবি ল'ড কৰা বাতিল কৰা হল"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
#, fuzzy
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "ছবি ল'ড কৰিব পৰা নগল"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "আলফা নিউমাৰিক আখৰৰ ইনপুটৰ"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "নন-আলফা নিউমাৰিক আখৰৰ ইনপুট"
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "ফ্ৰেমক পুনৰ আকাৰ দিয়ক"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "ফ্রেমৰ স্থান পৰিৱর্তন কৰক"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "শিৰোনামবোৰ"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "টেবুলবোৰ"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
#, fuzzy
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "ছবি"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE বস্তুবোৰ"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "পৃষ্ঠাসংকেতবোৰ"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "খণ্ডবোৰ"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "হাইপাৰলিংকবোৰ"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "প্ৰসংগবোৰ"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "অনুক্ৰমনিকাবোৰ"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
#, fuzzy
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "বস্তুবোৰ আঁকক"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "মন্তব্যবোৰ"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "শিৰোনাম ১"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "ই প্ৰথম পাঠৰ সমল। ই এটা ব্যৱহাৰকাৰী ডাইৰেকটৰি প্ৰৱিষ্টি।"
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "শিৰোনাম 1.1"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr "ই পাঠ 1.1 ৰ সমল। ই সমলসমূহৰ টেবুলৰ বাবে প্ৰৱিষ্টি।"
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "শিৰোনাম 1.2"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr "ই পাঠ 1.2 ৰ সমল। এই কিৱাৰ্ড এটা মূখ্য প্ৰৱিষ্টি।"
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "টেবুল 1: ই টেবুল 1"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
#, fuzzy
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "ছবি 1: ই ছবি 1"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr ""
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "শিৰোনাম"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "টেবুল"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "ছবি"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLEবস্তু"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "পৃষ্ঠাসংকেত"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "খণ্ড"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "হাইপাৰলিংক"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "প্ৰসংগ"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "অনুক্ৰমণিকা"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "মন্তব্যবোৰ"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "বস্তু আঁকক"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "অতিৰিক্ত ফৰমেটবোৰ..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[System]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4396,627 +4451,627 @@ msgid ""
msgstr "ইন্টাৰেক্টিভ হাইফেনেশ্বনটো ইতিমধ্যে এটা বেলেগ দস্তাবেজত সক্ৰিয় আছে"
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "হাইফেনেশ্বন"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "সম্ভৱ নহয়"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "$1 মচি পেলাওক..."
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "$1 সুমুৱাওক"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "পুনৰলিখক : $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "নতুন দফা"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "স্থানান্তৰ কৰক"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "বৈশিষ্টসমূহ প্ৰয়োগ কৰক"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "শৈলী প্ৰয়োগ কৰক : $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "বৈশিষ্টসমূহ পুনৰ স্থাপন কৰক"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "শৈলী সলনি কৰক : $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "ফাইল সুমুৱাওক"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "স্বচালিত লিখনী সুমুৱাওক"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "পত্ৰচিহ্ন মচি পেলাওক : $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "পত্ৰচিহ্ন সুমুৱাওক: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "টেবুল বৰ্গীকৰণ কৰক"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "লিখনী বৰ্গীকৰণ কৰক"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "টেবুল সুমুৱাওক: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "লিখনী সলনি কৰক ->টেবুল"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "টেবুল সলনি কৰক ->লিখনী"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "প্ৰতিলিপি: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "প্ৰতিস্থাপন কৰক: $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "পৃষ্ঠা ভাঙন সুমুৱাওক"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "স্তম্ভ ভাঙন সুমুৱাওক"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "লেফাফা সুমুৱাওক"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "প্ৰতিলিপি: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "স্থানান্তৰ কৰক: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "%PRODUCTNAME ৰেখাচিত্ৰ সুমুৱাওক"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "ফ্রেম সুমুৱাওক"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "ফ্রেম মচি পেলাওক"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "স্বচালিত ফৰমেট"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "টেবুলৰ শিৰোনাম"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "প্ৰতিস্থাপন কৰক: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "খণ্ড সুমুৱাওক"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "খণ্ড মচি পেলাওক"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "খণ্ড সলনি কৰক"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "অবিকল্পিত মানসমূহ সলনি কৰক"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "শৈলী প্ৰতিস্থাপন কৰক: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "পৃষ্ঠা ভাঙন মচি পেলাওক"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "লিখনীৰ দিশ"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "সক্ৰিয়/নিক্ৰিয় ৰূপৰেখা"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "ৰূপৰেখাৰ স্থানান্তৰ কৰক"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "নাম্বাৰীং সুমুৱাওক"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "স্তৰ সক্ৰিয় কৰক"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "স্তৰ নিক্ৰিয় কৰক"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "দফা স্থানান্তৰ কৰক"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "ছবি অঁকা বস্তু সুমুৱাওক : $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "সংখ্যা অন/অফ"
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "ইণ্ডেন্ট বৃদ্ধি কৰক"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "ইণ্ডেন্ট হ্রাস কৰক"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "কেপশ্বন সুমুৱাওক : $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "নাম্বাৰীং পুনাৰম্ভ কৰক"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "পাদটীকা সলনি কৰক"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "সলনি স্বীকাৰ কৰক: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "সলনি অস্বীকাৰ কৰক: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "টেবুল বিভাজন কৰক"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "বৈশিষ্টসমূহ বন্ধ কৰক"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
#, fuzzy
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "স্বচালিত শুদ্ধ"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "টেবুল একত্রিত কৰক"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "ফলা পৰিবৰ্তন কৰক"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "নাম্বাৰিং মচি পেলাওক"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "অকাঁ বস্তু : $1"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "ড্র বস্তুবোৰৰ গোট তৈয়াৰ কৰক"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "অকাঁ বস্তুবোৰৰ গোট মুক্ত কৰক"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "অকাঁ বস্তুবোৰ মচি পেলাওক"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "ছবি প্ৰতিস্থাপন কৰক"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "ছবি মচি পেলাওক"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "টেবুল বৈশিষ্টসমূহ প্ৰয়োগ কৰক"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "টেবুল স্বচালিত ফৰমেট কৰক"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "স্তম্ভ সুমুৱাওক"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "শাৰী সুমুৱাওক"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "শাৰী/স্তম্ভ মচি পেলাওক"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "স্তম্ভ মচি পেলাওক"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "শাৰী মচি পেলাওক"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "কোষবোৰৰ বিভাজন কৰক"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "কোষবোৰ একত্রিত কৰক"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "ফৰমেট কোষ"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "টেবুল/অনুক্ৰমণিকা সুমুৱাওক"
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "টেবুল/অনুক্ৰমণিকা অতৰাওক"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "টেবুল প্ৰতিলিপি কৰক"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "টেবুল প্ৰতিলিপি কৰক"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "কাঁড় ছেট কৰক"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "পাদটীকাৰ বিকল্পবোৰ ৰূপান্তৰ কৰক"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "দস্তাবেজ তুলনা কৰক"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "ফ্রেম শৈলী প্ৰয়োগ কৰক :$1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "ৰুবী ছেটিং"
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "পাদটীকা সুমুৱাওক"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "URL বাটন সুমুৱাওক"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "হাইপাৰলিংক সুমুৱাওক"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "অদৃশ্য বিষয় আঁতৰাওক"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "টেবুল/অনুক্ৰমণিকা সলনি কৰা হ'ল"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr ""
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr ""
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "বহু অংশ বিশিষ্ঠ নিৰ্বাচন"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "টাইপ কৰি আছে: $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "ক্লিপবৰ্ডক আঠা লগাওক"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr ""
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "-ৰ সংঘটন"
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5024,7 +5079,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5032,314 +5087,314 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "পৃষ্ঠা ভাঙন"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "স্তম্ভ ভাঙন"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "$1 সুমুৱাওক"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "$1 মচি পেলাওক..."
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "বৈশিষ্টসমূহ সলনি কৰা হ'ল"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "টেবুল সলনি হয়"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "টেবুল সলনি হয়"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "শাৰী সুমুৱাওক"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "শাৰী মচি পেলাওক"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "কক্ষ সুমুৱাওক"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "কোষবোৰ মচি পেলাওক"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 সলনিবোৰ"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "পৃষ্ঠা শৈলী সলনি কৰক : $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "পৃষ্ঠা শৈলী সৃষ্ঠি কৰক : $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "পৃষ্ঠা শৈলী মচি পেলাওক : $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "পৃষ্ঠা শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "হেডাৰ /ফুটাৰ সলনি কৰা হ'ল"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "ফিল্ড সলনি কৰা হ'ল"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "দফা শৈলী সৃষ্টি কৰক : $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "দফা শৈলী মচি পেলাওক : $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "দফা শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "আখৰ শৈলী সৃষ্টি কৰক : $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "আখৰ শৈলী মচি পেলাওক : $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "আখৰ শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "ফ্ৰেম শৈলী সৃষ্টি কৰক : $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "ফ্ৰেম শৈলী মচি পেলাওক: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "ফ্ৰেম শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "নাম্বাৰিং শৈলী সৃষ্টি কৰক : $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "নাম্বাৰিং শৈলী মচি পেলাওক : $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "নাম্বাৰিং শৈলী পুনৰ নামকৰণ কৰক : $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "পত্ৰচিহ্নৰ পুনৰ নাম দিয়ক : $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "সূচী প্রৱিষ্টি সুমুৱাওক"
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "সূচী প্রৱিষ্টি মচি পেলাওক"
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "ফিল্ড"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "দফাবোৰ"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "ফ্রেম"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE-বস্তু"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "সূত্র"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "ছার্ট"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "মন্তব্য"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "অন্যান্য প্ৰসংগ"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "স্ক্ৰিপ্ট"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "বিশেষ আখৰ"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "পাদটীকা"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
#, fuzzy
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "ছবি"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "ছবি অঁকা বস্তু(বোৰ)"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "টেবুল: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5347,825 +5402,825 @@ msgstr[0] ""
msgstr[1] ""
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "দফা"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "$1 -ৰ অবজেক্ট শীৰ্ষক সলনি কৰক"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "পৃষ্ঠা শৈলী সৃষ্ঠি কৰক : $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "পৃষ্ঠা শৈলী মচি পেলাওক : $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "পৃষ্ঠা শৈলী সৃষ্ঠি কৰক : $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "টেবুল মচি পেলাওক"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "দস্তাবেজ দৃশ্য"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "দস্তাবেজ দৃশ্য"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "হেডাৰ $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "হেডাৰ পৃষ্ঠা $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "ফুটাৰ $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "ফুটাৰ পৃষ্ঠা $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "পাদটীকা $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "পাদটীকা $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "অন্তিম টীকা $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "অন্তিম টীকা $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG2) পৃষ্ঠাত $(ARG1)"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "পৃষ্ঠা: $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "পৃষ্ঠা: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "লেখক"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "তাৰিখ"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "কাৰ্য্যসমূহ"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "এই মন্তব্য আৰু অন্য মন্তব্যসমূহৰ উপৰত প্ৰদৰ্শন কৰিব পৰা কাৰ্য্যসমূহৰ তালিকা খুলিবলে এই বুটাম স্বক্ৰিয় কৰক"
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "দস্তাবেজ পূৰ্বদৰ্শন"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(পূৰ্বদৰ্শন অৱস্থা)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME দস্তাবেজ"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
#, fuzzy
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "পঢ়া-ত্ৰুটি"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "ছবি প্ৰদৰ্শন কৰিব নোৱাৰি।"
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "ক্লিপ বৰ্ডৰ পৰা ভুল পাঠ."
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "হস্তচালিত স্তম্ভ ভাঙন"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "শাৰী %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "স্তম্ভ %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "আখৰ"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "দফা"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "ফ্ৰেম"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "পৃষ্ঠাবোৰ"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "নাম্বাৰীং"
+msgid "List"
+msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "টেবুল"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "কক্ষ"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "এছিয়ান"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "CTL"
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "পশ্চিমী"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "বিষয়সূচী"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
#, fuzzy
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "পৃষ্ঠা পটভূমী (~c)"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
#, fuzzy
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "লুকুৱাই ৰখা টেক্সট (~x)"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
#, fuzzy
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "পৰৱৰ্তী স্থানধাৰকলৈ (~T)"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
#, fuzzy
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "ফৰ্ম নিয়ন্ত্ৰণসমূহ (~s)"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "ৰং"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "লিখনীক কলাত প্ৰিন্ট কৰক (~k)"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "স্বয়ংক্রিয়ভাৱে ভৰোৱা ৰিক্ত পৃষ্ঠাৰ মূদ্ৰণ কৰক (~a)"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
#, fuzzy
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "প্ৰিন্টাৰ পছন্দসমূহৰ পৰা কেৱল পৃষ্ঠা ট্ৰে ব্যৱহাৰ কৰক (~U)"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
#, fuzzy
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "কোনো নহয় (কেৱল দস্তাবেজ)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "কেৱল মন্তব্যসমূহ"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "দস্তাবেজৰ শেষৰ স্থান"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "পৃষ্ঠাৰ শেষত থকা স্থান"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "বিষয়সূচী (~C)"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "ক্ষুদ্র পুস্তিকা (~u)"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
#, fuzzy
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "বাওৰ-পৰা-সোঁ স্ক্ৰিপ্ট"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
#, fuzzy
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "সোঁৰ-পৰা-বাও স্ক্ৰিপ্ট"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "সীমাবোৰত থওক"
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
#, fuzzy
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "ফাংকশ্বনসমূহ"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "বাতিল কৰক"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "প্ৰয়োগ কৰক"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "সূত্র টুলবাৰ"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
#, fuzzy
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "সূত্র লিখনী"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
#, fuzzy
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "ৰূপৰেখা: স্তৰ "
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
#, fuzzy
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "ড্ৰেগ কৰাৰ প্ৰকাৰ"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
#, fuzzy
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "হাইপাৰলিংক সুমুৱাওক"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "লিংক ৰূপে সুমুৱাওক"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "কপি ৰূপে সুমুৱাওক"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "প্রদর্শন কৰক"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
#, fuzzy
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "সক্রিয় উইণ্ড'"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
#, fuzzy
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "লুকুৱাই থোৱা"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "সক্রিয়"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
#, fuzzy
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "নিষ্ক্রিয়"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "সম্পাদন কৰক..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
#, fuzzy
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "আপডেট কৰক"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "সম্পাদনা"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
#, fuzzy
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "লিংকবোৰ সম্পাদনা কৰক"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "সুমুৱাওক"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
#, fuzzy
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "অনুক্ৰমণিকা"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "ফাইল"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
#, fuzzy
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
#, fuzzy
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "মচি পেলাওক"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
#, fuzzy
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "মচি পেলাওক"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "নিৰ্বাচন"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "অনুক্ৰমনিকাবোৰ"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
#, fuzzy
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "সংযোগ কৰক"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "সকলো"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
#, fuzzy
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "লুকুৱাই থোৱা"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
#, fuzzy
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "ফিল্টাৰ বিচাৰি পোৱা নাই."
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "বাঁও: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". সোঁ: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "অভ্যন্তৰীণ: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". বাহিৰ: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". ওপৰ: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
@@ -6173,914 +6228,914 @@ msgstr ". তলৰ: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "ৰেখা"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "কোনো নহয়"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr ""
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
#, fuzzy
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "ব্যৱহাকাৰী বিৱৰীত"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
#, fuzzy
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "টেবুলৰ বিষয়বোৰ"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
#, fuzzy
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "গ্রন্থ-সূচী 1"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "উদ্ধৃতি"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr ""
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr ""
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "শীৰ্ষক"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "বিষয়"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "প্রধান শব্দবোৰ"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
#, fuzzy
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "মন্তব্যবোৰ"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
#, fuzzy
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "সৃষ্টি কৰা হল:"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "ৰূপান্তৰিত"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
#, fuzzy
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "সৰ্বশেষ প্ৰিন্টেড (_n):"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "পুনৰীক্ষণৰ সংখ্যা"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "সম্পাদনাৰ মুঠ সময়"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "দফা"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "কিতাপ"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
#, fuzzy
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "ক্ষুদ্র পুস্তিকা (~u)"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "সন্মিলনৰ কার্য-ব্যৱস্থা"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "কিতাপৰ উদ্ধৃতি"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "শিৰোনামৰ সৈতে কিতাপৰ উদ্ধৃতি"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "সন্মিলনৰ কার্য-ব্যৱস্থা"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "জার্নেল"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "পাৰিভাষিক ডকুমেন্টেশ্বন"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "থেছিছ"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "সানমিহলি"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "আলোচনা"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "সন্মিলনৰ কার্য-ব্যৱস্থা"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "গৱেষণাৰ ৰিপৰ্ট"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "অপ্ৰকাশিত"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
#, fuzzy
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত1"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত2"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত3"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত4"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত5"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "চুটি নাম"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
#, fuzzy
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "প্ৰকাৰ"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
#, fuzzy
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "এড্রেছী"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
#, fuzzy
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "টীকাকৰণ (~o)"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
#, fuzzy
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "লেখক(বোৰ)"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
#, fuzzy
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "কিতাপৰ শিৰোনাম (~B)"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "অধ্যায়"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "সংস্কৰণ (~i)"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "সম্পাদক"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
#, fuzzy
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "প্ৰকাশনৰ প্ৰকাৰ (~y)"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
#, fuzzy
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "অনুষ্ঠান (~u)"
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "জার্নেল"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "মাহ"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "টিপ্পনী"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "সংখ্যা"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
#, fuzzy
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "প্ৰতিষ্ঠান (~z)"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
#, fuzzy
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "পৃষ্ঠা(বোৰ) (~g)"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "প্ৰকাশক"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
#, fuzzy
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "বিশ্ববিদ্যালয়"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
#, fuzzy
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "শৃংখলাবোৰ (~r)"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "শীৰ্ষক"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
#, fuzzy
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "সংবাদৰ ধৰণ (~p)"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "ভলিউম"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
#, fuzzy
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "মৰমৰ"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত1"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত2"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত3"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত4"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত5"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
#, fuzzy
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN (~I)"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "সূচী প্রৱিষ্টিৰ সম্পাদনা কৰক"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "সূচী প্রৱিষ্টি ভৰাওক"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
#, fuzzy
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "দস্তাবেজটোত ইতিমধ্যে গ্রন্থ-সূচী প্রৱিষ্টি আছে কিন্তু বেলেগ ডাটাৰ সৈতে. আপুনি বর্তি থকা প্রৱিষ্টিবোৰ সমাযোজন কৰিব বিচাৰে নেকি?"
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "মন্তব্যসমূহ দেখুৱাওক"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "মন্তব্যসমূহ লুকাওক"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "চমুপথৰ নাম ইতিমধ্যে আছে. এটা বেলেগ নাম বাছনী কৰক."
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "স্বয়ংক্ৰিয় টেক্সট ডিলিট কৰিব নেকি?"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "বর্গটো মচি পেলাওক "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "স্বয়ংক্ৰিয় টেক্সট:"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "স্বয়ংক্ৰিয় টেক্সট ছেভ কৰক"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "এই ফাইলটোত স্বয়ংক্ৰিয় টেক্সট নাই."
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "মোৰ স্বলিখনী"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "চৰ্টকাট '%1' -ৰ কাৰণে স্বলিখনি পোৱা নগল।"
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "স্বয়ংক্ৰিয় টেক্সট সৃষ্টি কৰিব পৰা নগ'ল."
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "অনুগ্ৰহ কৰা ক্লিপবৰ্ড ফৰ্মেটটো মজুত নাই."
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "সকলো মন্তব্য"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "সকলো মন্তব্য"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "মন্তব্য দিছে "
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(no date)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "লেখক"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "$1 লৈ উত্তৰ দিয়ক"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "ঠিকনা ব্লক সম্পাদনা কৰক"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "স্বনিৰ্বাচিত অভিবাদন (পুৰুষ প্ৰাপক)"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "স্বনিৰ্বাচিত অভিবাদন (মহিলা প্ৰাপক)"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "অভিবাদন উপাদানবোৰ (~l)"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "অভিবাদনৰ লগত যোগ কৰক"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "অভিবাদনৰ পৰা আঁতৰাওক"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. তলৰ বাকচটোলৈ অভিবাদন উপাদানবোৰ ড্ৰেগ কৰক (~D)"
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "অভিবাদন"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "যতি চিহ্ন"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "লিখনি"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
#, fuzzy
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "ঠিকনা উপাদানবোৰ মিলাবলৈ আপোনাৰ ডাটা উত্সৰ পৰা ফিল্ডবোৰ নির্ধাৰণ কৰক."
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "অভিবাদনৰ পূৰ্বদৃশ্য"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "ঠিকনা উপাদানবোৰ"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "অভিবাদন উপাদানবোৰ"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "ফিল্ডলৈ মিলাওক:"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "পূৰ্বদৃশ্য"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " এতিয়ালৈকে পুনৰুদ্ধাৰ হোৱা নাই "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "সকলো ফাইল"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "ঠিকনা তালিকাবোৰ (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME আধাৰ (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME কেলক (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
#, fuzzy
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME কেলক (*.ods;*.sxc)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "d আধাৰ (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
#, fuzzy
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "মাইক্ৰছফট এক্সেল (*.xls)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "সৰল টেক্সট (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "টেক্সট কমা বিভাজন কৰা হ'ল (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
#, fuzzy
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
#, fuzzy
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7089,92 +7144,92 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME ঠিকনা তালিকা (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "সমাপ্ত (~F)"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
#, fuzzy
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "মেইল একত্ৰিত উইজাৰ্ড"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "টেবুল"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "প্ৰশ্ন"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "দস্তাবেজৰ আৰম্ভনিত পৰীক্ষা অব্যাহত ৰাখিব বিচাৰে নেকি ?"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "বানান পৰীক্ষা সম্পূৰ্ণ হ'ল."
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7184,252 +7239,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "দিনাংক"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "সময়"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "ফাইলৰ নাম"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "ডাটাবেছৰ নাম"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "অধ্যায়"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "পৰিসংখ্যা"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "লেখক"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "নমুনাবোৰ"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "পথাওতা"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "চলক ছেট কৰক"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "চলক দেখুৱাওক"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "সূত্র ভৰাওক"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "ইনপুট ফিল্ড"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "ইনপুট ফিল্ড (চলক)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "ইনপুট ফিল্ড (ব্যৱহাৰকৰ্তা)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "চর্তসাপেক্ষ টেক্সট"
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE ফিল্ড"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "মেক্র' কার্যকৰী কৰক"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "সংখ্যাৰ পৰিসৰ"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "পৰিৱৰ্তনশীল পৃষ্ঠা ছেট কৰক"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "পৰিৱৰ্তনশীল পৃষ্ঠা দেখুৱাওক"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "URL ল'ড কৰক"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "স্থান ধাৰক"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "আখৰবোৰক যোগ কৰক"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "ইনপুট তালিকা"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "প্ৰসংগ ছেট কৰক"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "প্রসংগ ভৰাওক"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "মেইল একত্ৰিত ফিল্ড"
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "পৰৱর্তী ৰেকৰ্ড"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "যিকোনো ৰেকৰ্ড"
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "সংখ্যা ৰেকৰ্ড কৰক"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "পৰৱর্তী পৃষ্ঠা"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "লুকুৱাই থোৱা টেক্সট"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "ব্যৱহাৰকৰ্তাৰ ফিল্ড"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "টিপ্পনী"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "স্ক্ৰিপ্ট"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "লুকুৱাই থোৱা পেৰেগ্ৰাফ"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "দস্তাবেজ তথ্য"
@@ -7438,87 +7493,87 @@ msgstr "দস্তাবেজ তথ্য"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "দিনাংক"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "তাৰিখ (নিৰ্ধাৰিত)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "সময়"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "সময় (নিৰ্ধাৰিত)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "টেবুলবোৰ"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "আখৰবোৰ"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "শব্দবোৰ"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "পেৰেগ্ৰাফবোৰ"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "ছবি"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "বস্তুবোৰ"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "পৃষ্ঠাবোৰ"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE স্বয়ংক্রিয়"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE হাতেৰে"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7527,103 +7582,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "সংস্থা"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "প্রথম নাম"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "অন্তিম নাম"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "ইনিশ্বিয়েলছ"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "পথ"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "দেশ"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "জিপ ক'ড"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "চহৰ"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "শীৰ্ষক"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "স্থান"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "টেলিফোন (ঘৰ)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "টেলিফোন (কাম)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr ""
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "ৰাজ্য"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "অফ"
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "-ত"
@@ -7633,37 +7688,37 @@ msgstr "-ত"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "ফাইলৰ নাম"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "ফাইলৰ নাম প্ৰসাৰণৰ অবিহনে"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "পথ/ফাইলৰ নাম"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "পথ"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "শ্রেণী"
@@ -7672,25 +7727,25 @@ msgstr "শ্রেণী"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "অধ্যায় নাম"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "অধ্যায় সংখ্যা"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "অধ্যায়ৰ সংখ্যা আৰু নাম পৃথক কঁৰোতাৰ অবিহনে"
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "অধ্যায়ৰ সংখ্যা আৰু নাম"
@@ -7699,55 +7754,55 @@ msgstr "অধ্যায়ৰ সংখ্যা আৰু নাম"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "ৰোমান (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "ৰোমান (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "আৰবী (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "পৃষ্ঠা শৈলী হিচাপে"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "টেক্সট"
@@ -7756,13 +7811,13 @@ msgstr "টেক্সট"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "নাম"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "ইনিশ্বিয়েলছ"
@@ -7771,49 +7826,49 @@ msgstr "ইনিশ্বিয়েলছ"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "ছিষ্টেম"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "নাম"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "সূত্ৰ"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "ডাটাবেছ"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "ছিষ্টেম"
@@ -7822,19 +7877,19 @@ msgstr "ছিষ্টেম"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "সময়"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "দিনাংক"
@@ -7843,79 +7898,79 @@ msgstr "দিনাংক"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "প্ৰসংগ"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "অধ্যায়"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "ওপৰত/তলত"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "পৃষ্ঠা শৈলী হিচাপে"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "শ্রেণী আৰু সংখ্যা"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "কেপশ্বন টেক্সট"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "নাম্বাৰীং"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "সংখ্যা"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "সংখ্যা"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Number 1) 2) 3)"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7924,31 +7979,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "টেক্সট"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "টেবুল"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "ফ্রেম"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "ছবি"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "বস্তু"
@@ -7957,1558 +8012,1556 @@ msgstr "বস্তু"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "চৰ্ত (~C)"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "তেনে হ'লে, অন্যথা"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE উক্তি"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "লুকাই থকা টেক্সট (~e)"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "মেক্ৰ' নাম (~M)"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "প্ৰসংগ (~R)"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "আখৰবোৰ (~a)"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "অফছেট (~f)"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "মূল্য"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "সূত্ৰ"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "নিজৰ পছন্দৰ মতে"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[User]"
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "H. পীটচ"
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "V. পীটচ"
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "প্ৰস্থ"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "উচ্চতা"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "বাওঁফালৰ সীমা"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "ওপৰৰ সীমা"
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "শাৰীবোৰ"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
#, fuzzy
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "কিতাপৰ পূর্বদৃশ্য"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "শাৰীবোৰ"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
#, fuzzy
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "ডাঙৰ আখৰবোৰ আঁতৰাওক"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
#, fuzzy
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "পৃষ্ঠা ভাঙন"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
#, fuzzy
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "উলম্বভাৱে লুটিৱাওক"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
#, fuzzy
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "%1 অনুভূমিক"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "আখৰৰ শৈলী"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
#, fuzzy
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "আখৰৰ শৈলী"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "ফুটাৰ"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
#, fuzzy
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "ফুটাৰলৈ"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
#, fuzzy
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "হেডাৰলৈ"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
#, fuzzy
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "প্ৰস্থ"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
#, fuzzy
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "দফা"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
#, fuzzy
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "আখৰৰে (_c)"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
#, fuzzy
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "কোনো পৃষ্ঠা নাই"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "উলম্বভাৱে কেন্দ্ৰীত"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "তললৈ"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "ৰেখাৰ ওপৰত"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "বাওঁফালে কেন্দ্রীকৃত"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "ৰেখাৰ তলত"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "আনুভূমিকভাৱে কেন্দ্ৰীত"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "অভ্যন্তৰ"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "বাহিৰ"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "সম্পূর্ণ প্রস্থ"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "কেৱল পঢ়িবৰ বাবে দস্তাবেজত সম্পাদনা কৰিব পাৰি (_d)"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "বিভাজন কৰক"
-#. AETHf
-#: sw/inc/strings.hrc:1118
-#, fuzzy
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "নম্বৰিং"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
-#, fuzzy
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "নম্বৰিং দেখুৱাওক"
+msgid "List Style: (None)"
+msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "আৰু "
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "উজ্জ্বলতা"
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "পুনৰ কৰক "
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "পার্থক্য"
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "স্বচ্ছতা"
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "সুমুৱাওক"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "গ্ৰাফিক্সৰ প্ৰকাৰ"
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "মানবিশিষ্ট"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "গ্রেস্কেল"
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "ক'লা আৰু বগা"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "জলচিহ্ন"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "উদ্ধৃতি"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "জাল নাই"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "জাল (কেৱল শাৰী)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "জাল (শাৰী আৰু আখৰবোৰ)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "টেবুল"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "ছবি"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr "নিয়ন্ত্রণ"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "খণ্ড"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "পৃষ্ঠাসংকেত"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "গ্ৰাফিক্স"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
#, fuzzy
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLEবস্তু"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "শিৰোনামবোৰ"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "নিৰ্বাচন"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
#, fuzzy
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "পাদটীকা"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "মন্তব্যবোৰ"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "বিচৰাৰ পুনৰাবৃত্তি"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "পৰৱর্তী পৃষ্ঠা"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "কোনো শিৰোনাম নাই"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "পৰৱৰ্তী পৃষ্ঠাসংকেতলৈ"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "কোনো শিৰোনাম নাই"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "পৰৱৰ্তী পাদটীকালৈ"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "পৰৱৰ্তী মন্তব্য"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "সূচী প্রৱিষ্টি সুমুৱাওক"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "পৰৱৰ্তী খণ্ডলৈ"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠাসংকেতলৈ"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "পূৰ্বৱৰ্তী পাদটীকালৈ"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "পূৰ্বৱৰ্তী মন্তব্য"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "পূৰ্বৱৰ্তী টেবুল সূত্ৰলৈ যাওক"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "অশুদ্ধ টেবুল সূত্ৰলৈ যাওক"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "পৰৱৰ্তী অশুদ্ধ টেবুল সূত্ৰলৈ যাওক"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "সুমুৱাওক"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "মচি পেলাওক"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "টেবুল সলনি হয়"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "ব্যৱহৃত পেৰেগ্ৰাফ শৈলীবোৰ"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "শাৰী সুমুৱা হল "
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "শাৰী মচি পেলোৱা হ'ল"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "অন্তিম টীকা"
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "পাদটীকা"
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "স্তৰ মচি পেলাওক (~L)..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "পৃষ্ঠা ফৰমেট কৰক (~P)..."
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "স্তৰ মচি পেলাওক (~L)..."
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "মজীয়া ফৰমেট..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "ছবি ফাইলখন খুলিব নোৱাৰি"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "ছবি ফাইল পঢ়িব নোৱাৰি"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "অজ্ঞাত ছবি বিন্যাস"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "এই ছবি ফাইল সংস্কৰণ সমৰ্থিত নহয়"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "ছবি ফিল্টাৰ পোৱা নগল"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "ছবি সুমুৱাবলৈ পৰ্যাপ্ত মেমৰি নাই।"
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ছবি সুমুৱাওক"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "মন্তব্য: "
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "অন্তর্ভূক্তি"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "ডিলিশ্বন"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "স্বশুদ্ধকৰণ"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "টেবুল সলনি হয়"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "ব্যৱহৃত পেৰেগ্ৰাফ শৈলীবোৰ"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "পৃষ্ঠা "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
#, fuzzy
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "%n ৰ %p পৃষ্ঠা"
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "পেৰেগ্ৰাফ"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ছবি"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE বস্তু"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ফ্ৰেম"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "টেবুল"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "টেবুলৰ শাৰী"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "টেবুল কক্ষ"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ফুটাৰ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML দস্তাবেজ"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "শীৰ্ষক"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "পৃথক কৰোঁতা"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Level "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ফাইল, \"%1\" যি \"%2\" পথত আছে তাক বিচাৰি পোৱা নগ'ল।"
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ব্যৱহাৰকাৰী-বিৱৰিত সূচী"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<None>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<None>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "পাঠ সংখ্যা"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "প্রৱিষ্টি"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "টেব বন্ধ"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "লিখনি"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "পৃষ্ঠাৰ সংখ্যা"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "পাঠৰ তথ্য"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "হাইপাৰলিংক আৰম্ভ"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "হাইপাৰলিংক অন্ত"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি: "
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "আখৰৰ শৈলী: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "গঠন লিখনি"
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "অধিক কাৰ্য্যৰ বাবে ফকাচ স্থানান্তৰ কৰিবলে Ctrl+Alt+A টিপক"
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "গঠন নিয়ন্ত্ৰণসমূহ বাছিবলে বাঁও অথবা সোঁ কাঁড় টিপক"
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "ফকাচ পুনৰ বৰ্তমান গঠন নিয়ন্ত্ৰণলৈ নিবলৈ Ctrl+Alt+B টিপক"
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "বর্ণমালা সূচীৰ বাবে বাছনী ফাইল (*.sdi)"
@@ -9517,268 +9570,268 @@ msgstr "বর্ণমালা সূচীৰ বাবে বাছনী
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "ওপৰত আধাৰ ৰেখা (~t)"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "তলত আধাৰ ৰেখা (~B)"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "আধাৰ ৰেখা কেন্দ্রীকৃত (~c)"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "বস্তু ভৰাওক"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "বস্তু সম্পাদনা কৰক"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (নমুনা: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(পেৰেগ্ৰাফ শৈলী: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "বৰ্তমান পৃষ্ঠালে পৃষ্ঠা নম্বৰসমূহ প্ৰয়োগ কৰিব নোৱাৰি। যুগ্ম নম্বৰসমূহ বাও পৃষ্ঠাসমূহত ব্যৱহাৰ কৰিব পাৰি, অযুগ্ম নম্বৰসমূহ সোঁ পৃষ্ঠাসমূহত ব্যৱহাৰ কৰিব পাৰি।"
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION মুখ্য দস্তাবেজ"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "কোনো নহয় (বানান নিৰীক্ষন নকৰিব)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "অবিকল্পিত ভাষালৈ পুনৰ সংহতি কৰা"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "অধিক..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "উপেক্ষা কৰক (~I)"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML ডকুমেন্ট"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Level "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ৰূপৰেখা"
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "ফুটনোট/এণ্ডনোট সুমুৱাওক"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "সন্ধান চাবিৰে XX সময় সলনি কৰা হ'ল"
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "শাৰীবোৰ"
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "স্তম্ভ"
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "চলাই থাকক"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9787,7 +9840,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9796,125 +9849,125 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "স্বাক্ষৰ কৰিছে "
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "ব্যৱসায়িক কার্ডসমূহ (~u)"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "সুমুৱাওক"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "মচি পেলাওক"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
#, fuzzy
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "এট্রিবিয়ুটবোৰ"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "প্ৰথম চাবি"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "দ্বিতীয় চাবি"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "মন্তব্যসমূহ"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ফলা মিল খোৱাওক"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "হয়"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "নহয়"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "নিজৰ পছন্দৰ মতে"
@@ -10062,6 +10115,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "ভাঙি নোযোৱা ঠাই যোগ কৰক"
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -20757,295 +20816,295 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "হেডাৰ"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "ফুটাৰ"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "স্তৰ সক্ৰিয় কৰক"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "স্তৰ নিক্ৰিয় কৰক"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "ড্ৰেগ কৰাৰ প্ৰকাৰ"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "দস্তাবেজ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "সক্রিয় উইণ্ড'"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "সম্পাদনা"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "আপডেট কৰক"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "সুমুৱাওক"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "ওপৰলৈ যাওক"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "তললৈ যাওক"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
@@ -21088,181 +21147,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22323,20 +22382,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "...হিচাপে ছেভ কৰক"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Shows the current saved format names."
msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr ""
+
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "বিন্যাস"
@@ -22347,213 +22418,225 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr "আউটলাইন স্তৰ:"
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr ""
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr "Level 1"
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr "Level 2"
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr "Level 3"
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr "Level 4"
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr "Level 5"
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr "Level 6"
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr "Level 7"
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr "Level 8"
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr "Level 9"
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "Level 10"
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "ৰূপৰেখা"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "কোনো নহয়"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
#, fuzzy
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "শৈলী সম্পাদনা কৰক..."
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "চিহ্নিতৰ সৈতে আৰম্ভ কৰক (_t):"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
+msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "এই পেৰেগ্ৰাফটো লাইন নাম্বাৰিঙত অন্তৰ্ভূক্ত কৰক (_I)"
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "এই পেৰেগ্ৰাফটোত পুনৰ আৰম্ভ কৰক (_a)"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "চিহ্নিতৰ সৈতে আৰম্ভ কৰক (_S):"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "শাৰীৰ নম্বৰিং"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -28761,10 +28844,10 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr ""
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
+msgid "Specify the character style for the selected part on the Structure line."
msgstr ""
#. 5nWPi
@@ -29024,10 +29107,10 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr ""
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
msgstr ""
#. r33aA
diff --git a/source/as/uui/messages.po b/source/as/uui/messages.po
index 4baa428a12e..36b90002240 100644
--- a/source/as/uui/messages.po
+++ b/source/as/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2018-03-28 15:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,31 +16,31 @@ msgstr ""
"X-POOTLE-MTIME: 1522251341.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr "$(ARG1) -ত চলোৱা কাৰ্য্য বন্ধ হ'ল ।"
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr "$(ARG1) লৈ প্ৰবেশাধিকাৰ নাকচ কৰা হৈছিল।"
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "$(ARG1) ইতিমধ্যে আছে ।"
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "লক্ষ্য ইতিমধ্যে আছে"
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -52,7 +52,7 @@ msgstr ""
"যি এই বিন্যাসৰ কাৰণে বৰ ডাঙৰ। যদি আপুনি বিচাৰে যে ব্যৱহাৰকাৰীয়ে যাৰ লাইব্ৰেৰী পাছৱাৰ্ড নাই সেই অংশত মেক্ৰ'সমূহ চলাব লাগে আপুনি ইয়াক সৰু সৰু টুকুৰা কৰিব লাগিব। আপুনি এই লাইব্ৰেৰী সঞ্চয়/এক্সপোৰ্ট কৰিব বিচাৰে নে ?"
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -65,289 +65,289 @@ msgid ""
msgstr ""
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr "$(ARG1) ৰ তথ্য অশুদ্ধ checksum আছে ।"
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr "$(ARG1) ক $(ARG2) সৃষ্টি কৰিব নোৱাৰি ।"
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr "$(ARG1) ৰ তথ্য পঢ়িব পা ন'গ'ল ।"
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr "$(ARG1) ত বিচাৰিব পৰা ন'গ'ল ।"
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr "$(ARG1) ত tell কাৰ্য্য কৰিব পৰা ন'গ'ল।"
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr "$(ARG1) ৰ তথ্য লিখিব পৰা ন'গ'ল ।"
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr "অসম্ভৱ কাৰ্য্য: $(ARG1) বৰ্ত্তমানৰ ডাইৰেকটৰি ।"
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr "$(ARG1) সাজু নহয় ।"
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr "অসম্ভৱ কাৰ্য্য: $(ARG1) আৰু $(ARG2) বেলেগ ডিভাইচ (drives) ।"
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr "$(ARG1) প্ৰবেশাধিকাৰ কৰোঁতে সাধাৰণ input/output ভুল ।"
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr "অবৈধ ধৰণে $(ARG1) প্ৰবেশাধিকাৰ লোৱাৰ চেষ্টা কৰা হৈছিল ।"
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "$(ARG1) ত অবৈধ আখৰ অন্তৰভুক্ত হৈ আছে।"
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr "ডিভাইচ (drive) $(ARG1) অবৈধ ।"
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr "$(ARG1) -ৰ তথ্যত অবৈধ দৈৰ্ঘ্য আছে।"
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr "অবৈধ প্ৰাচলেৰে $(ARG1) ত কাৰ্য্য আৰম্ভ কৰা হৈছিল ।"
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr "$(ARG1) ত ৱাইল্ডকাৰ্ড থকা কাৰণে কাৰ্য্য কৰিব নোৱাৰি।"
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr "$(ARG1) লৈ অংশীদাৰী অভিগম লওতে ত্ৰুটি দিখা দিছে।"
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "$(ARG1) ত স্থানান্তৰিত আখৰ আছে ।"
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "$(ARG1) নামত বহুত আখৰ আছে।"
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "$(ARG1) নাই ।"
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "$(ARG1) পথ নাই ।"
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr "ইয়াত $(ARG1) ত কৰা কাৰ্য্য সমৰ্থন নাই ।"
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "$(ARG1) এটা ডাইৰেকটৰি নহয় ।"
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "$(ARG1) নথিপত্ৰ নহয় ।"
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr "$(ARG1) ডিভাইচত স্থান নাই ।"
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr "বহুতো নথিপত্ৰ খোলাৰ কাৰণে $(ARG1) ত কাৰ্য্য কৰিব নোৱাৰি ।"
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr "মেমৰি নথকাৰ কাৰণে $(ARG1) ত কাৰ্য্য কৰিব নোৱাৰি ।"
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr "তথ্য ৰৈ থকাৰ কাৰণে $(ARG1) ত কাৰ্য্য কৰিব নোৱাৰি ।"
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr "$(ARG1) -ক নিজতে কপি কৰিব নোৱাৰি।"
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr "$(ARG1) প্ৰবেশাধিকাৰ কৰোঁতে অজ্ঞাত ইনপুট/আউটপুট ভুল ।"
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "$(ARG1) লিখাৰ পৰা সুৰক্ষিত ।"
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "$(ARG1) সঠিক বিন্যাসত নাই।"
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "$(ARG1) ৰ সংস্কৰণ শুদ্ধ নহয়।"
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "$(ARG1) ড্ৰাইভৰ অস্তিত্ব নাই।"
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "$(ARG1) ফোল্ডাৰৰ অস্তিত্ব নাই।"
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr "ইনস্টল কৰা Java সংস্কৰণ সমৰ্থিত নহয় ।"
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr "ইনস্টল কৰা Java সংস্কৰণ $(ARG1) ৰ সমৰ্থন নাই ।"
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr "ইনস্টল কৰা Java সংস্কৰণ অসমৰ্থিত, অতি কমেও $(ARG1) -ৰ প্ৰয়োজন।"
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr "ইনস্টল কৰা Java সংস্কৰণ $(ARG1) ৰ সমৰ্থন নাই, অতি কমেও $(ARG2) -ৰ প্ৰয়োজন।"
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr "অংশীদাৰৰ সৈতে সন্মিলিত তথ্যটো ক্ষতিগ্ৰস্থ হৈছে."
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr "অংশীদাৰ $(ARG1)ৰ সৈতে সন্মিলিত তথ্যটো ক্ষতিগ্ৰস্থ হৈছে."
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr "আয়তন $(ARG1) সাজু নহয় ।"
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr "$(ARG1) সাজু নহয়; অনুত্ৰহ কৰি এটা সংৰক্ষণ মাধ্যম সোমাওক ।"
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr "আয়তন $(ARG1) সাজু নহয়; অনুত্ৰহ কৰি এটা সংৰক্ষণ মাধ্যম সোমাওক ।"
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr "অনুগ্ৰহ কৰি ডিস্ক$(ARG1) সোমাওক।"
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr "ডাইৰেকটৰি $(ARG1) ত অবজেক্ট সৃষ্টি কৰিব নোৱাৰি ।"
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr "সৰবৰাহ প্ৰট'কল ব্যৱহাৰ কৰোতে%PRODUCTNAME এ নথিপত্ৰবোৰ পুনৰ লিখিত নোহোৱকৈ নহোৱাকৈ ৰাখিব নোৱাৰে. আপুনি তথাপি অব্যাহত ৰাখিবলৈ বিচাৰেনেকি?"
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
#, fuzzy
msgctxt "RID_UUI_ERRHDL"
msgid ""
@@ -370,13 +370,13 @@ msgstr ""
"%PRODUCTNAME -এ নথিপত্ৰটো ঠিক কৰিব নে?\n"
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "'$(ARG1)' নথিপত্ৰটো মেৰামতি কৰিব পৰা নগ'ল আৰু সেইবাবে খুলিব পৰা নাযাব।"
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -386,7 +386,7 @@ msgstr ""
"ক্ষতিগ্ৰস্থ হোৱা সংৰূপ তথ্যৰ অবিহনে %PRODUCTNAME ৰ ষ্টাৰ্টআপ অব্যাহত ৰাখিবলৈ বিচাৰেনেকি?"
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -396,13 +396,13 @@ msgstr ""
"ক্ষতিগ্ৰস্থ হোৱা সংৰূপ তথ্যৰ অবিহনে %PRODUCTNAME ৰ ষ্টাৰ্টআপ অব্যাহত ৰাখিব বিচাৰেনেকি?"
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr "'$(ARG1)' সংৰূপ তথ্য উৎসটো মজুত নাই। এই তথ্যৰ অবিহনে কিছুমান ফলনে শুদ্ধকৈ অপাৰেট নকৰিব পাৰে।"
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -412,31 +412,31 @@ msgstr ""
"সংৰূপ তথ্য নেহেৰুৱাকৈ %PRODUCTNAME ৰ ষ্টাৰ্টআপ অব্যাহত ৰাখিবলৈ বিচাৰেনেকি?"
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr "ফৰ্মখনত অবৈধ তথ্য আছে. আপুনি তথাপি অব্যাহত ৰাখিবলৈ বিচাৰেনেকি?"
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr "$(ARG1) নথিপত্ৰটো অন্য ব্যৱহাৰকাৰীৰ দ্বাৰা লক কৰা আছে। বৰ্তমানে, নথিপত্ৰটোলে অন্য এটা লিখিব পৰা অনুমতি দিব নোৱাৰি।"
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr "$(ARG1) নথিপত্ৰটো আপোনাৰ দ্বাৰা লক কৰা আছে। বৰ্তমানে, নথিপত্ৰটোলে অন্য এটা লিখিব পৰা অনুমতি দিব নোৱাৰি।"
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr "$(ARG1) নথিপত্ৰটো বৰ্তমানে আপোনাৰ দ্বাৰা লক কৰা নহয়।"
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -446,7 +446,7 @@ msgstr ""
"এইটো নথিপত্ৰ লক সম্ভালি থকা চাৰ্ভাৰত হোৱা সমস্যাৰ বাবেও হব পাৰে। এইটো সঠিকভাৱে কব নোৱাৰি যে এই নথিপত্ৰত হোৱা লিখা কাৰ্য্যয় অন্য ব্যৱহাৰকাৰীসমূহৰ পৰিৱৰ্তনসমূহ পুনৰ লিখি নিদিয়ে!"
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -460,7 +460,7 @@ msgstr ""
" $(ARG1)।"
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -472,7 +472,7 @@ msgstr ""
"এই প্ৰমাণপত্ৰ গ্ৰহণ কৰাৰ আগতে, আপুনি এই ছাইটৰ প্ৰমাণপত্ৰ সাৱধানেৰে নিৰিক্ষণ কৰা উচিত। আপুনি $(ARG1) ৱেবছাইটক চিনাকি দিয়াবলে এই প্ৰমাণপত্ৰ গ্ৰহণ কৰিবলে ইচ্ছুক নে?"
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -484,13 +484,13 @@ msgstr ""
"আপোনাৰ কমপিউটাৰৰ সময় সঠিক হয় নে নহয় আপুনি নিৰিক্ষণ কৰি চাব লাগে ।"
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr "সুসঞ্চয়ৰ সতৰ্কবাৰ্তা :চাৰ্ভাৰৰ প্ৰমাণপত্ৰ অবৈধ"
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -506,13 +506,13 @@ msgstr ""
"আপুনি আগবাঢ়িব নে?"
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr "সুসঞ্চয়ৰ সতৰ্কবাৰ্তা : চাৰ্ভাৰৰ প্ৰমাণপত্ৰ শেষ হ'ল"
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -524,7 +524,7 @@ msgstr ""
"দেখুৱা প্ৰমাণপত্ৰ সন্দেহ কৰিলে, সংযোগ বাতিল কৰক আৰু ছাইটৰ প্ৰশাসকক কওক ।"
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr "সুসঞ্চয়ৰ সতৰ্কবাৰ্তা : ডমেইন নাম ভুল মিল"
@@ -595,55 +595,55 @@ msgid "_Yes"
msgstr ""
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr "ফাইল খুলিবলৈ পাছৱৰ্ড দিয়ক: \n"
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr "ফাইল পৰিবৰ্তন কৰিবলৈ পাছৱাৰ্ড দিয়ক: \n"
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "পাছৱৰ্ড দিয়ক: "
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr "পাছৱর্ড নিশ্চিত কৰক: "
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "পাছৱৰ্ড সংহতি কৰক"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "পাছৱৰ্ড দিয়ক"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "নিশ্চিত কৰা পাছৱৰ্ড, পাছৱৰ্ডৰ লগত মিল নাখায়। একে পাছৱৰ্ডক দুযোটা বাকচতে দি পাছৱৰ্ড পুনৰ সংহতি কৰক।"
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "দস্তাবেজ ব্যৱহৃত"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -652,19 +652,19 @@ msgid ""
msgstr ""
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "খোলক (~O)"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -673,62 +673,62 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "সঞ্চয়ৰ পুনৰ চেষ্টা কৰক (~R)"
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "সঞ্চয় কৰক (~S)"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "অধিবেশনৰ অন্তলৈকে পাছওৱাৰ্ড মনত ৰাখিব (~R)"
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "পাছওৱাৰ্ড মনত পেলাওক (~R)"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "ইনক্ৰিপ্ট নোহোৱা স্ট্ৰিমসমূহ"
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
#, fuzzy
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr "%PRODUCTNAME ৰ দ্বাৰা নথিপত্ৰ লক কৰিব পৰা ন'গ'ল, সেই স্থানত লক নথিপত্ৰ সৃষ্টি কৰা অনুমতি নথকাৰ বাবে।"
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "দস্তাবেজ ব্যৱহৃত"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -739,7 +739,7 @@ msgid ""
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -747,31 +747,31 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "খোলক (~O)"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "অজ্ঞাত ব্যৱহাৰকাৰী"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "দস্তাবেজ অন্যৰ দ্বাৰা পৰিৱৰ্তন কৰা হৈছে"
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -780,19 +780,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "যিকোনো উপায়ে সঞ্চয় কৰক (~S)"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "দস্তাবেজ ব্যৱহৃত"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -803,7 +803,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -814,19 +814,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "সঞ্চয়ৰ পুনৰ চেষ্টা কৰক (~R)"
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "হিচাপে সঞ্চয় কৰক...(~S)"
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -834,7 +834,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -842,55 +842,55 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "পাছওৱাৰ্ড ভুল । দস্তাবেজ খুলিব নোৱাৰি ।"
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "পাছওৱাৰ্ড ভুল । দস্তাবেজ খুলিব নোৱাৰি ।"
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "মূখ্য পাছওৱাৰ্ডটো ভুল।"
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "পাছওৱাৰ্ডটো ভুল হয়।"
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "পাছওৱাৰ্ড নিশ্চিতকৰণ অমিল ।"
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
diff --git a/source/as/vcl/messages.po b/source/as/vcl/messages.po
index 60652d69946..d872e3df3e6 100644
--- a/source/as/vcl/messages.po
+++ b/source/as/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -664,150 +664,138 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "পুনৰ স্থাপন কৰক"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr "তললৈ নমাওক"
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr "ওপৰলে উঠাওক"
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "সহায়"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr ""
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "দেখুৱাওক"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "লুকুৱাওক"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "দস্তাবেজ বন্ধ কৰক"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "ঠিক আছে (~O)"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "বাতিল কৰক (~C)"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "ঠিক আছে"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "বাতিল কৰক"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "হয় (~Y)"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "নহয় (~N)"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "পুনৰ চেষ্টা কৰক (~R)"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "সহায় (~H)"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "বন্ধ কৰক (~C)"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "অধিক (~M)"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "উপেক্ষা কৰক (~I)"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "বাদ দিয়ক (~A)"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "কম (~L)"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "সংৰক্ষণ কৰক (~S)"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "খোলক (~O)"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr ""
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -817,360 +805,360 @@ msgstr ""
"মেৰামতি বিকল্পটোৰ সৈতে সংস্থাপন আৰম্ভ কৰক।"
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME ৰ বিষয়ে"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "পছন্দবোৰ..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "যিকোনো ধৰণৰ"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "স্বয়ংক্ৰিয় ফাইল নামৰ প্রসাৰণ (~A)"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "পাছৱাৰ্ডৰ সৈতে সংৰক্ষণ কৰক (~w)"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr ""
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "ফিল্টাৰ সংহতিসমূহ সম্পাদনা কৰক (~E)"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "কেৱল-পঢ়িব পৰা (~R)"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "সংযোগ ৰূপে সুমুৱাওক (~L)"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "পূৰ্বদৰ্শন (~e)"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "চলাওক (~P)"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "সংস্কৰণ (~V):"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "শৈলীসমূহ (~t):"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
#, fuzzy
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "ফ্রেমৰ শৈলী"
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr ""
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "নিৰ্বাচন (~S)"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "পথ বাছক"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "অনুগ্ৰহ কৰি এটা ফোল্ডাৰ বাছক।"
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "\"$filename$\" নামৰ এটা ফাইল ইতিমধ্যে উপস্থিত। আপুনি ইয়াক প্ৰতিস্থাপন কৰিব বিচাৰে নে?"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr "ফাইল ইতিমধ্যে \"$dirname$\" ত অস্তিত্ববান। ইয়াক প্ৰতিস্থাপন কৰিলে ইয়াৰ সমলসমূহ পুনৰ লিখা হব। "
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "সকলো বিন্যাস"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "খোলক"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "সংৰক্ষণ কৰক"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "নথিপত্ৰৰ ধৰণ (~t)"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "চিস্টেমত কোনো ফন্ট বিচাৰি পোৱা নগল।"
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "কোনো পৃষ্ঠা নাই"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "নথিপত্ৰলে প্ৰিন্ট কৰক..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "অবিকল্পিত প্ৰিন্টাৰ"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "অনুগ্ৰহ কৰি fax সংখ্যা সুমুৱাওক"
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "স্বনিৰ্বাচিত"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
#, fuzzy
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "সোমোৱা লিখনী ক্ষেত্ৰ দৈৰ্ঘ্যতকে ডাঙৰ। লিখনী সৰু কৰা হ'ল।"
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr ""
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr ""
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr ""
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
#, fuzzy
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "অবিকল্পিত"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "তথ্য"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "সতৰ্কবাৰ্তা"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "ভুল"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "নিশ্চিতকৰণ"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "শাৰী মচি পেলাওক"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "একাধিক শাৰী মচক"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "একাধিক শাৰী সুমুৱাওক"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "'$1' সুমুৱাওক"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "'$1' মচি পেলাওক"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/as/writerperfect/messages.po b/source/as/writerperfect/messages.po
index d181d6c7156..6264e5aa0c5 100644
--- a/source/as/writerperfect/messages.po
+++ b/source/as/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+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"
@@ -16,51 +16,51 @@ msgstr ""
"X-POOTLE-MTIME: 1525785894.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
#, fuzzy
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "ফিল্টাৰ আমদানি কৰক"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr ""
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr ""
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr ""
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr ""
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
#, fuzzy
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "ল'টাছ ফাইলবোৰ ইমপোৰ্ট কৰক"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr ""
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr ""
diff --git a/source/ast/accessibility/messages.po b/source/ast/accessibility/messages.po
index 8eaf7bc33ae..19a070a4cf9 100644
--- a/source/ast/accessibility/messages.po
+++ b/source/ast/accessibility/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/accessibilitymessages/ast/>\n"
"Language: ast\n"
@@ -139,4 +139,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/avmedia/messages.po b/source/ast/avmedia/messages.po
index 771b30232d3..1db85049476 100644
--- a/source/ast/avmedia/messages.po
+++ b/source/ast/avmedia/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/avmediamessages/ast/>\n"
"Language: ast\n"
@@ -211,4 +211,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/basctl/messages.po b/source/ast/basctl/messages.po
index af3b61c08c3..a2f19674fc8 100644
--- a/source/ast/basctl/messages.po
+++ b/source/ast/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/basctlmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1516043755.000000\n"
#. fniWp
@@ -543,7 +543,7 @@ msgstr "Ensin nengún control marcáu"
#: basctl/inc/strings.hrc:109
msgctxt "RID_STR_BRWTITLE_MULTISELECT"
msgid "Multiselection"
-msgstr "Seleición múltiple"
+msgstr "Esbilla múltiple"
#. GNZHF
#: basctl/inc/strings.hrc:110
@@ -638,7 +638,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. GaJFV
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:26
diff --git a/source/ast/basic/messages.po b/source/ast/basic/messages.po
index 770f5d3665b..9b08d665591 100644
--- a/source/ast/basic/messages.po
+++ b/source/ast/basic/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/basicmessages/ast/>\n"
"Language: ast\n"
@@ -842,7 +842,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. Vtc9n
#: basic/inc/strings.hrc:24
diff --git a/source/ast/chart2/messages.po b/source/ast/chart2/messages.po
index e4065a4f176..48d828e61be 100644
--- a/source/ast/chart2/messages.po
+++ b/source/ast/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1540149368.000000\n"
#. NCRDD
@@ -103,7 +103,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. v9sqX
#: chart2/inc/strings.hrc:24
@@ -241,7 +241,7 @@ msgstr "Barres d'error Y"
#: chart2/inc/strings.hrc:46
msgctxt "STR_PAGE_ALIGNMENT"
msgid "Alignment"
-msgstr "Alliñamientu"
+msgstr "Alliniamientu"
#. hXbmP
#: chart2/inc/strings.hrc:47
@@ -2189,13 +2189,13 @@ msgstr "Sangríes y espaciáu"
#: chart2/uiconfig/ui/paradialog.ui:182
msgctxt "paradialog|labelTP_PARA_ALIGN"
msgid "Alignment"
-msgstr "Alliñamientu"
+msgstr "Alliniamientu"
#. EB5A9
#: chart2/uiconfig/ui/paradialog.ui:231
msgctxt "paradialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
-msgstr "Tipografía Asiática"
+msgstr "Tipografía asiática"
#. BzbWJ
#: chart2/uiconfig/ui/paradialog.ui:279
@@ -5036,7 +5036,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_Trendline.ui:320
msgctxt "tp_Trendline|label10"
msgid "_Type"
-msgstr ""
+msgstr "_Triba"
#. P6TjC
#: chart2/uiconfig/ui/tp_Trendline.ui:325
diff --git a/source/ast/connectivity/messages.po b/source/ast/connectivity/messages.po
index abc9d8d2ae4..4e9cc348628 100644
--- a/source/ast/connectivity/messages.po
+++ b/source/ast/connectivity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivitymessages/ast/>\n"
"Language: ast\n"
@@ -675,4 +675,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 6a3786fd978..6aaa4b9842c 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ast/>\n"
"Language: ast\n"
@@ -145,7 +145,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. E6GDh
#: cui/inc/strings.hrc:23
@@ -1913,248 +1913,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Comina de zarru"
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "Ensin berbesos"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "Namái berbesu esterior"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Berbesu esterior y llinies horizontales"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Berbesu esterior y toles llinies interiores"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Berbesu esterior ensin modificación de les llinies interiores"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Definir namái llinies verticales"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "Los cuatro berbesos"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "Namái berbesu drechu ya esquierdu"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Namái berbesu inferior y superior"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "Namái berbesu esquierdu"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Definir berbesu inferior y superior y toles llinies interiores"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Definir berbesu esquierdu y drechu y toles llinies interiores"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ensin solombra"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Proyeutar solombra haza abaxo y a la drecha"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Proyeutar solombra haza arriba y a la drecha"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Proyeutar solombra haza abaxo y a la esquierda"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Proyeutar solombra haza arriba y a la esquierda"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Roblólu: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Tolos ficheros"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Bases de datos rexistraes"
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "L'URL <%1> nun pue convertise nun camín del sistema de ficheros."
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr "Copyright © 2000–2021 Collaboradores de LibreOffice."
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Esta versión facilitóla %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice ta basáu n'OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME deriva de LibreOffice, que ta basáu n'OpenOffice.org."
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "IU: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Editar caminos: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Etiqueta"
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "El testu o URL ye demasiáu estensu pal nivel de correición d'errores actual. Encurtia'l testu o amenorga'l nivel de correición."
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "Instalar"
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "Guetando..."
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "Cargando..."
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "Estensiones"
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -2331,14 +2259,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2520,1071 +2449,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr "¿Quies desarrollar peñeres XSLT y XML nueves?"
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3595,22 +3518,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3619,16 +3542,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -3701,7 +3624,7 @@ msgstr "Personalización"
#: cui/inc/treeopt.hrc:42
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Application Colors"
-msgstr ""
+msgstr "Colores de l'aplicación"
#. hh7Mg
#: cui/inc/treeopt.hrc:43
@@ -9573,7 +9496,7 @@ msgstr ""
#: cui/uiconfig/ui/gallerythemeiddialog.ui:75
msgctxt "gallerythemeiddialog|label2"
msgid "ID:"
-msgstr "ID:"
+msgstr "Id.:"
#. fJdBH
#: cui/uiconfig/ui/gallerytitledialog.ui:8
@@ -13123,10 +13046,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Separtador"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -14273,10 +14196,9 @@ msgstr ""
#. FEeH6
#: cui/uiconfig/ui/optfltrembedpage.ui:230
-#, fuzzy
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
-msgstr "Fondu de caráuter"
+msgstr "Resalte"
#. mCeit
#: cui/uiconfig/ui/optfltrembedpage.ui:239
@@ -14970,22 +14892,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Opciones"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -16297,7 +16243,7 @@ msgstr "Axusta'l nivel de seguridá pa executar macros y especifica los desendol
#: cui/uiconfig/ui/optsecuritypage.ui:183
msgctxt "optsecuritypage|macro"
msgid "Macro Securit_y..."
-msgstr "Se_guridá de macros..."
+msgstr "Se_guranza de macros..."
#. eGAGp
#: cui/uiconfig/ui/optsecuritypage.ui:191
@@ -19110,10 +19056,9 @@ msgstr "Sangríes y espaciáu"
#. jSB7P
#: cui/uiconfig/ui/searchformatdialog.ui:375
-#, fuzzy
msgctxt "searchformatdialog|labelTP_PARA_ALIGN"
msgid "Alignment"
-msgstr "Alliniación "
+msgstr "Alliniamientu"
#. bEqdf
#: cui/uiconfig/ui/searchformatdialog.ui:424
@@ -19123,17 +19068,15 @@ msgstr "Fluxu de testu"
#. TChw9
#: cui/uiconfig/ui/searchformatdialog.ui:473
-#, fuzzy
msgctxt "searchformatdialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. CjCNz
#: cui/uiconfig/ui/searchformatdialog.ui:521
-#, fuzzy
msgctxt "searchformatdialog|background"
msgid "Highlighting"
-msgstr "Fondu de caráuter"
+msgstr "Resalte"
#. nVjsf
#: cui/uiconfig/ui/securityoptionsdialog.ui:8
@@ -21315,13 +21258,13 @@ msgid "_Next Tip"
msgstr ""
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Enllaz"
@@ -21333,79 +21276,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/ast/dbaccess/messages.po b/source/ast/dbaccess/messages.po
index 4a207b3cd34..d6590dcb5c2 100644
--- a/source/ast/dbaccess/messages.po
+++ b/source/ast/dbaccess/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ast/>\n"
"Language: ast\n"
@@ -97,7 +97,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. FAMGa
#: dbaccess/inc/strings.hrc:24
@@ -3279,13 +3279,13 @@ msgstr ""
#: dbaccess/uiconfig/ui/fielddescpage.ui:350
msgctxt "fielddescpage|STR_NUMERIC_TYPE"
msgid "_Type"
-msgstr ""
+msgstr "_Triba"
#. Uym6E
#: dbaccess/uiconfig/ui/fielddescpage.ui:375
msgctxt "fielddescpage|STR_TAB_FIELD_DATATYPE"
msgid "Field _type"
-msgstr ""
+msgstr "_Triba de campu"
#. dUE3D
#: dbaccess/uiconfig/ui/fielddescpanel.ui:46
@@ -3307,7 +3307,6 @@ msgstr "Formatu"
#. MvFHK
#: dbaccess/uiconfig/ui/fielddialog.ui:192
-#, fuzzy
msgctxt "fielddialog|alignment"
msgid "Alignment"
msgstr "Alliniamientu"
@@ -3374,13 +3373,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "Seleicione'l tipu de base de datos cola que quier establecer conexón."
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "_Tipu de base de datos:"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/ast/desktop/messages.po b/source/ast/desktop/messages.po
index 765b2f19c18..ba6bed10fe8 100644
--- a/source/ast/desktop/messages.po
+++ b/source/ast/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: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/ast/>\n"
"Language: ast\n"
@@ -875,7 +875,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. Qcv5A
#: desktop/uiconfig/ui/dependenciesdialog.ui:18
diff --git a/source/ast/editeng/messages.po b/source/ast/editeng/messages.po
index 9e326df9b5b..345ea2eb63d 100644
--- a/source/ast/editeng/messages.po
+++ b/source/ast/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/ast/>\n"
"Language: ast\n"
@@ -160,7 +160,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. 2Lzx7
#: editeng/uiconfig/ui/spellmenu.ui:12
diff --git a/source/ast/extensions/messages.po b/source/ast/extensions/messages.po
index c1ac753c32d..ee2b735a107 100644
--- a/source/ast/extensions/messages.po
+++ b/source/ast/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022490.000000\n"
#. cBx8W
@@ -97,7 +97,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. hEBQd
#: extensions/inc/showhide.hrc:29
@@ -1101,7 +1101,7 @@ msgstr "Entrada multillinia"
#: extensions/inc/strings.hrc:66
msgctxt "RID_STR_MULTISELECTION"
msgid "Multiselection"
-msgstr "Seleición múltiple"
+msgstr "Esbilla múltiple"
#. nEBee
#: extensions/inc/strings.hrc:67
@@ -2345,7 +2345,7 @@ msgstr "Control d'imaxe"
#: extensions/inc/strings.hrc:278
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
-msgstr "Seleición de ficheru"
+msgstr "Esbilla de ficheros"
#. a7gAj
#: extensions/inc/strings.hrc:279
@@ -2375,7 +2375,7 @@ msgstr "Campu de moneda"
#: extensions/inc/strings.hrc:283
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
-msgstr "Campu de patrón"
+msgstr "Campu mazcaritáu"
#. uEYBR
#: extensions/inc/strings.hrc:284
@@ -3057,7 +3057,7 @@ msgstr " (Data)"
#: extensions/inc/strings.hrc:400
msgctxt "RID_STR_TIMEPOSTFIX"
msgid " (Time)"
-msgstr " (Tiempu)"
+msgstr " (Hora)"
#. XPCgZ
#: extensions/inc/strings.hrc:402
@@ -3099,7 +3099,6 @@ msgstr "Sí"
#. cBnXC
#: extensions/uiconfig/sabpilot/ui/contentfieldpage.ui:42
-#, fuzzy
msgctxt "contentfieldpage|label1"
msgid "Existing fields"
msgstr "Campos esistentes"
@@ -3737,10 +3736,9 @@ msgstr "Nome curtíu"
#. vaKMR
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:50
-#, fuzzy
msgctxt "generalpage|authtype"
msgid "_Type"
-msgstr "_Tipu"
+msgstr "_Triba"
#. G73uW
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:64
@@ -3779,24 +3777,21 @@ msgstr "Señes"
#. p4Qk5
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:134
-#, fuzzy
msgctxt "generalpage|pages"
msgid "Pa_ge(s)"
-msgstr "Pá~xina(es)"
+msgstr "Pá_xina(es)"
#. yA7zD
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:148
-#, fuzzy
msgctxt "generalpage|year"
msgid "_Year"
-msgstr "Añu"
+msgstr "A_ñu"
#. FBFh5
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:162
-#, fuzzy
msgctxt "generalpage|isbn"
msgid "_ISBN"
-msgstr "~ISBN"
+msgstr "_ISBN"
#. HBcbt
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:176
@@ -3992,24 +3987,21 @@ msgstr "Editor"
#. pEBaZ
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:219
-#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
-msgstr "_Tipu"
+msgstr "_Triba"
#. TxEfY
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:233
-#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
-msgstr "Añu"
+msgstr "A_ñu"
#. qLU7E
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:247
-#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
-msgstr "Títulu"
+msgstr "Títu_lu"
#. F26mM
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:297
diff --git a/source/ast/filter/messages.po b/source/ast/filter/messages.po
index b04635f02fd..f5409c36246 100644
--- a/source/ast/filter/messages.po
+++ b/source/ast/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: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ast/>\n"
"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.4\n"
"X-POOTLE-MTIME: 1516029128.000000\n"
#. 5AQgJ
@@ -352,7 +352,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. AwX66
#: filter/uiconfig/ui/pdfgeneralpage.ui:42
diff --git a/source/ast/forms/messages.po b/source/ast/forms/messages.po
index f4b9985c3a7..47d6aebd1a6 100644
--- a/source/ast/forms/messages.po
+++ b/source/ast/forms/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/formsmessages/ast/>\n"
"Language: ast\n"
@@ -431,4 +431,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/formula/messages.po b/source/ast/formula/messages.po
index 3dd0065b978..19357ec29d7 100644
--- a/source/ast/formula/messages.po
+++ b/source/ast/formula/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/ast/>\n"
"Language: ast\n"
@@ -2603,7 +2603,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. iySox
#: formula/inc/strings.hrc:25
diff --git a/source/ast/fpicker/messages.po b/source/ast/fpicker/messages.po
index d05c6514501..3954048937c 100644
--- a/source/ast/fpicker/messages.po
+++ b/source/ast/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/ast/>\n"
"Language: ast\n"
@@ -153,7 +153,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. D3iME
#: fpicker/uiconfig/ui/explorerfiledialog.ui:129
diff --git a/source/ast/framework/messages.po b/source/ast/framework/messages.po
index 0a7b8c56b27..6ac6538b6af 100644
--- a/source/ast/framework/messages.po
+++ b/source/ast/framework/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1513251152.000000\n"
#. 5dTDC
@@ -227,6 +227,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr ""
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr "Campu mazcaritáu"
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Botón pa calcar"
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Esbilla de ficheros"
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr "Barra de navegación"
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -290,4 +410,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/helpcontent2/source/auxiliary.po b/source/ast/helpcontent2/source/auxiliary.po
index bb216a864c9..ea9a5034605 100644
--- a/source/ast/helpcontent2/source/auxiliary.po
+++ b/source/ast/helpcontent2/source/auxiliary.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-05-19 12:41+0200\n"
-"PO-Revision-Date: 2020-04-28 18:16+0000\n"
+"PO-Revision-Date: 2021-03-10 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1532004324.000000\n"
#. fEEXD
@@ -590,7 +590,7 @@ msgctxt ""
"1009\n"
"node.text"
msgid "Drag & Drop"
-msgstr "Arrastrar y soltar"
+msgstr "Abasnar y asitiar"
#. DFzj6
#: shared.tree
diff --git a/source/ast/helpcontent2/source/text/sbasic/python.po b/source/ast/helpcontent2/source/text/sbasic/python.po
index 4bbfa71851c..6f9b5af012a 100644
--- a/source/ast/helpcontent2/source/text/sbasic/python.po
+++ b/source/ast/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ast/>\n"
@@ -168,13 +168,13 @@ msgctxt ""
msgid "It is recommended to have knowledge of Python standard modules and %PRODUCTNAME API features prior to perform inter-language calls from Python to Basic, JavaScript or any other script engine."
msgstr "Ye recomendable tener conocimientu de los módulos estándar de Python y de les carauterístiques de la API de %PRODUCTNAME antes facer llamaes inter-llinguaxe dende Python a Basic, JavaScript o cualquier otru motor de scripts."
-#. yXTrk
+#. Sffwq
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0338\n"
"help.text"
-msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME nested Basic engine may be absent. Avoid Python to %PRODUCTNAME Basic calls in such context. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
+msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
msgstr ""
#. NcuDF
@@ -447,13 +447,13 @@ msgctxt ""
msgid "My Macros or %PRODUCTNAME Macros dialogs"
msgstr ""
-#. jCE4m
+#. pcUEy
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0339\n"
"help.text"
-msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. ChW9B
@@ -465,13 +465,13 @@ msgctxt ""
msgid "Document embedded dialogs"
msgstr ""
-#. SsPGJ
+#. uHH6H
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0365\n"
"help.text"
-msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. mMo7w
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index d792739fd83..d01d31fa70b 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-02-02 17:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ast/>\n"
@@ -4741,13 +4741,13 @@ msgctxt ""
msgid "-no UI-"
msgstr ""
-#. FsrLe
+#. AUk3A
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id961599839198859\n"
"help.text"
-msgid "When the document disk location has changed, for example after a <emph>File - Save As...</emph> action."
+msgid "When the document disk location has changed, for example after a <emph>File - Save As</emph> action."
msgstr ""
#. n5TCf
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index e91d2894155..71c43da1f6d 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-23 11:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ast/>\n"
"Language: ast\n"
@@ -16,6 +16,87 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1531405556.000000\n"
+#. ViEWM
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"tit\n"
+"help.text"
+msgid "(Un)Available since release"
+msgstr ""
+
+#. CeSww
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasMeth\n"
+"help.text"
+msgid "This method is not available in Basic."
+msgstr ""
+
+#. LDXQx
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasProp\n"
+"help.text"
+msgid "This property is not available in Basic."
+msgstr ""
+
+#. 4GDXo
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycMeth\n"
+"help.text"
+msgid "This method is not available in Python."
+msgstr ""
+
+#. 3ZUdq
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycProp\n"
+"help.text"
+msgid "This property is not available in Python."
+msgstr ""
+
+#. GXE45
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id281613660174140\n"
+"help.text"
+msgid "These methods are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. qjuHF
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id981613655373210\n"
+"help.text"
+msgid "This control is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. bAYUN
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id831613654401663\n"
+"help.text"
+msgid "These event properties are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. kVj8c
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id201613654395537\n"
+"help.text"
+msgid "This property is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. EziC4
#: lib_ScriptForge.xhp
msgctxt ""
@@ -23,7 +104,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge Libraries"
-msgstr ""
+msgstr "Biblioteques de ScriptForge"
#. NXPBo
#: lib_ScriptForge.xhp
@@ -43,15 +124,6 @@ msgctxt ""
msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value>"
msgstr ""
-#. MHX92
-#: lib_ScriptForge.xhp
-msgctxt ""
-"lib_ScriptForge.xhp\n"
-"par_id901528999850603\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#basiclibrarynote\" markup=\"keep\"/><br/> <item type=\"literal\">GlobalScope.BasicLibraries.LoadLibrary(\"ScriptForge\")</item>"
-msgstr ""
-
#. WLejn
#: lib_ScriptForge.xhp
msgctxt ""
@@ -79,15 +151,69 @@ msgctxt ""
msgid "The <literal>ScriptForge</literal> Basic library is available from %PRODUCTNAME 7.1 onwards."
msgstr ""
-#. acPUv
+#. Depaw
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
-"par_id891611613601554\n"
+"hd_id851613836643580\n"
"help.text"
msgid "Services provided by the ScriptForge library"
msgstr ""
+#. dw2Fe
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838858931\n"
+"help.text"
+msgid "Category"
+msgstr "Categoría"
+
+#. TmFbF
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id441613838858931\n"
+"help.text"
+msgid "Services"
+msgstr "Servicios"
+
+#. ZZKBq
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id851613847558931\n"
+"help.text"
+msgid "%PRODUCTNAME Basic"
+msgstr ""
+
+#. jv7Z3
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838825831\n"
+"help.text"
+msgid "Document Content"
+msgstr ""
+
+#. 8fZtg
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613947858931\n"
+"help.text"
+msgid "User Interface"
+msgstr ""
+
+#. dAomL
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613866258931\n"
+"help.text"
+msgid "Utilities"
+msgstr ""
+
#. 6gvZc
#: lib_ScriptForge.xhp
msgctxt ""
@@ -178,13 +304,13 @@ msgctxt ""
msgid "Its entry points are:"
msgstr ""
-#. SBNCb
+#. puNwN
#: lib_euro.xhp
msgctxt ""
"lib_euro.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Euro Converter…</emph> wizard loads the following libraries in memory:"
+msgid "Selecting the <emph>Euro Converter</emph> wizard loads the following libraries in memory:"
msgstr ""
#. TGAHA
@@ -268,13 +394,13 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. kN4F6
+#. ewcAB
#: lib_gimmicks.xhp
msgctxt ""
"lib_gimmicks.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText...</emph> wizard."
+msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText</emph> wizard."
msgstr ""
#. kHzUe
@@ -358,13 +484,13 @@ msgctxt ""
msgid "Description"
msgstr "Descripción"
-#. asxd6
+#. Anhsb
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document converter...</emph> wizard."
+msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document Converter</emph> wizard."
msgstr ""
#. FaGZt
@@ -376,13 +502,13 @@ msgctxt ""
msgid "Its entry point is:"
msgstr ""
-#. EyBsL
+#. foGsC
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Document Converter...</emph> wizard loads the following libraries in memory:"
+msgid "Selecting the <emph>Document Converter</emph> wizard loads the following libraries in memory:"
msgstr ""
#. vV4TD
@@ -2230,13 +2356,13 @@ msgctxt ""
msgid "Definitions"
msgstr ""
-#. nXWRV
+#. 4gE5A
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id511591016999246\n"
"help.text"
-msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>)."
+msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>."
msgstr ""
#. kq2Br
@@ -2275,15 +2401,6 @@ msgctxt ""
msgid "The example below copies data from document A (opened as read-only and hidden) to document B."
msgstr ""
-#. 22mej
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id941591020321580\n"
-"help.text"
-msgid "SheetName"
-msgstr ""
-
#. iED65
#: sf_calc.xhp
msgctxt ""
@@ -2302,15 +2419,6 @@ msgctxt ""
msgid "The shortcut \"~\" (tilde) represents the current sheet."
msgstr ""
-#. pL4FD
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id101591020737697\n"
-"help.text"
-msgid "RangeName"
-msgstr ""
-
#. nskFb
#: sf_calc.xhp
msgctxt ""
@@ -4282,6 +4390,636 @@ msgctxt ""
msgid "'Sort range based on columns A (ascending) and C (descending)"
msgstr ""
+#. zNFY6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDatabases.Database service"
+msgstr ""
+
+#. K7nuj
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id371587913266310\n"
+"help.text"
+msgid "<variable id=\"DatabaseService\"><link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link></variable>"
+msgstr ""
+
+#. RByov
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407198144\n"
+"help.text"
+msgid "The <literal>Database</literal> service provides access to databases either embedded or described in Base documents. This service provides methods to:"
+msgstr ""
+
+#. 7dqXS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924481\n"
+"help.text"
+msgid "Get access to data in database tables."
+msgstr ""
+
+#. 29pT5
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924285\n"
+"help.text"
+msgid "Run <literal>SELECT</literal> queries and perform aggregate functions."
+msgstr ""
+
+#. LYsPD
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924111\n"
+"help.text"
+msgid "Run SQL action statements such as <literal>INSERT</literal>, <literal>UPDATE</literal>, <literal>DELETE</literal>, etc."
+msgstr ""
+
+#. ABgYk
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id811599407236602\n"
+"help.text"
+msgid "Each instance of the <literal>Database</literal> service represents a single database and gives access to its tables, queries and data. This service does not provide access to forms or reports in the Base document."
+msgstr ""
+
+#. Snu6R
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231615386789950\n"
+"help.text"
+msgid "All exchanges between this service and the database are done using SQL only."
+msgstr ""
+
+#. MiGUE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id121599407322804\n"
+"help.text"
+msgid "SQL statements may be run in <emph>direct</emph> or <emph>indirect</emph> mode. In direct mode the statement is transferred to the database engine without any syntax checking or review."
+msgstr ""
+
+#. Kg5Cn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id681599407189019\n"
+"help.text"
+msgid "The provided interfaces include simple tables and queries lists, as well as access to database data."
+msgstr ""
+
+#. N3J98
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407280007\n"
+"help.text"
+msgid "To make SQL statements more readable, you can use optional square brackets to enclose tables, queries and fields instead of using other enclosing characters that may be exclusive to certain Relational Database Management Systems (RDBMS)."
+msgstr ""
+
+#. CAFnK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id91587913266988\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. GBCxf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id541599408159668\n"
+"help.text"
+msgid "The code snippet below shows how to access any database with the <literal>Database</literal> service."
+msgstr ""
+
+#. RApNW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id471599408248873\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. f2tV4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id111615146818256\n"
+"help.text"
+msgid "<emph>FileName</emph>: The name of the Base file. Must be expressed using <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. yg5bv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id771615146944307\n"
+"help.text"
+msgid "<emph>RegistrationName</emph>: The name of a registered database. If a file name is provided, this argument should not be used."
+msgstr ""
+
+#. RM9c6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id491615147048748\n"
+"help.text"
+msgid "Conversely, if a <literal>RegistrationName</literal> is specified, the <literal>FileName</literal> parameter should not be defined."
+msgstr ""
+
+#. 3d6NY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id841615147168279\n"
+"help.text"
+msgid "<emph>ReadOnly</emph>: Determines if the database will be opened as readonly (Default = True)."
+msgstr ""
+
+#. Gn7AF
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id291615147236001\n"
+"help.text"
+msgid "<emph>User, Password</emph>: Additional connection parameters to the database server."
+msgstr ""
+
+#. Z2VVg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id771615147491563\n"
+"help.text"
+msgid "Accessing Databases with the UI Service"
+msgstr ""
+
+#. 6s3Hr
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id901599408410712\n"
+"help.text"
+msgid "It is also possible to access the database associated with a Base document using the <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"UI Service\"><literal>ScriptForge.UI</literal></link> service, as shown in the example below:"
+msgstr ""
+
+#. T6mkQ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id631615147843278\n"
+"help.text"
+msgid "' User and password are supplied below, if needed"
+msgstr ""
+
+#. 88wGG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id921599408791887\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. EF9Lc
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id841587913266618\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. x4Z5A
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521587913266568\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. QUrYT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587913266368\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. 3kQCm
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id631587914939732\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. RYuuo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id951587913266220\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. BzLQb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id651587913266754\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. up8WT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587914989890\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. dGoYp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id351587913266349\n"
+"help.text"
+msgid "The list of stored queries."
+msgstr ""
+
+#. bfdLR
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id931599409717463\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2DDTs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599409717945\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. rGTvw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id341599409717612\n"
+"help.text"
+msgid "The list of stored tables."
+msgstr ""
+
+#. u5YE4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id741599409777967\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. evuSw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551599409777759\n"
+"help.text"
+msgid "The UNO object representing the current database connection."
+msgstr ""
+
+#. w9YZG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599409887585\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NeTGg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id861599409887284\n"
+"help.text"
+msgid "The UNO object representing the metadata describing the database system attributes."
+msgstr ""
+
+#. ApsdK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the Database Service"
+msgstr ""
+
+#. emrA2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id201587913266596\n"
+"help.text"
+msgid "Closes the current database connection."
+msgstr ""
+
+#. nwbSh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id13159655484952\n"
+"help.text"
+msgid "Computes the given aggregate function on a field or expression belonging to a table."
+msgstr ""
+
+#. E9LsG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id101615148468548\n"
+"help.text"
+msgid "Optionally, a SQL <literal>WHERE</literal> clause can be specified as a filter that will be applied prior to the aggregate function."
+msgstr ""
+
+#. rKxVP
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441596554849949\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 3PSmS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id381596554849698\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. F4AAZ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521596554849185\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. AGBFS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id781615150306678\n"
+"help.text"
+msgid "The example below assumes the file <literal>Employees.odb</literal> has a table named <literal>EmployeeData</literal>."
+msgstr ""
+
+#. KAqZB
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id871615150277916\n"
+"help.text"
+msgid "' Counts the number of employees in the table"
+msgstr ""
+
+#. AVstM
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id291615150373387\n"
+"help.text"
+msgid "' Returns the sum of all salaries in the table"
+msgstr ""
+
+#. cMiVJ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id931615150423062\n"
+"help.text"
+msgid "' Below are some examples of how tables can be filtered"
+msgstr ""
+
+#. kCmmv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id41599488113961\n"
+"help.text"
+msgid "Computes a SQL expression on a single record returned by a <literal>WHERE</literal> clause defined by the <literal>Criteria</literal> parameter."
+msgstr ""
+
+#. 8yUaz
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id601615381471954\n"
+"help.text"
+msgid "If the query returns multiple records, only the first one is considered. Use the <literal>OrderClause</literal> parameter to determine how query results are sorted."
+msgstr ""
+
+#. CNwh2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id671599488113986\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 5DGVh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441599488113247\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. jtrX7
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id40159948811316\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. X5HJp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599488689029\n"
+"help.text"
+msgid "<emph>OrderClause</emph>: An <literal>ORDER BY</literal> clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets."
+msgstr ""
+
+#. CPoBx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id481599489278579\n"
+"help.text"
+msgid "Stores the contents of a table or the results of a <literal>SELECT</literal> query or of an SQL statement in a two-dimensional array. The first index in the array corresponds to the rows and the second index refers to the columns."
+msgstr ""
+
+#. GXji8
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id821615384762425\n"
+"help.text"
+msgid "An upper limit can be specified to the number of returned rows. Optionally column names may be inserted in the first row of the array."
+msgstr ""
+
+#. gX7AY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599490209915\n"
+"help.text"
+msgid "The returned array will be empty if no rows are returned and the column headers are not required."
+msgstr ""
+
+#. dURZU
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id451599489278429\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A table or query name (without square brackets) or a <literal>SELECT</literal> SQL statement."
+msgstr ""
+
+#. fFFFd
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599489278141\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
+#. unoDn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id941599489278747\n"
+"help.text"
+msgid "<emph>Header</emph>: When <literal>True</literal>, the first row of the returned array contains the column headers."
+msgstr ""
+
+#. BZxwK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id591599489278926\n"
+"help.text"
+msgid "<emph>MaxRows</emph>: The maximum number of rows to return. The default is zero, meaning there is no limit to the number of returned rows."
+msgstr ""
+
+#. 3XZPf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id721615385125947\n"
+"help.text"
+msgid "Below are a few examples of how the <literal>GetRows</literal> method can be used:"
+msgstr ""
+
+#. zkeuW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id171615385196045\n"
+"help.text"
+msgid "' Returns all rows in the table with column headers"
+msgstr ""
+
+#. eFmmE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id371615385230721\n"
+"help.text"
+msgid "' Returns the first 50 employee records ordered by the 'FirstName' field"
+msgstr ""
+
+#. FMBEy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id31599490609759\n"
+"help.text"
+msgid "Executes an action query of an SQL statement such as creating a table, as well as inserting, updating and deleting records."
+msgstr ""
+
+#. gyiQy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id331615385491925\n"
+"help.text"
+msgid "The method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. G5bDE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id21599490810021\n"
+"help.text"
+msgid "The <literal>RunSql</literal> method is rejected with an error message in case the database was previously opened in read-only mode."
+msgstr ""
+
+#. cMjus
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id701599490609473\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A query name (without square brackets) or a SQL statement."
+msgstr ""
+
+#. kngXb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id51599490609377\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. (Default = <literal>False</literal>). For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
#. BC4Sc
#: sf_dialog.xhp
msgctxt ""
@@ -4363,13 +5101,13 @@ msgctxt ""
msgid "Service invocation and usage"
msgstr ""
-#. hZcuK
+#. v8RcL
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The dialog service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
+msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
msgstr ""
#. Ntzqh
@@ -4444,6 +5182,15 @@ msgctxt ""
msgid "Note that in previous examples, the prefix <literal>\"SFDialogs.\"</literal> may be omitted."
msgstr ""
+#. zLWvF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id251612628336779\n"
+"help.text"
+msgid "Properties or methods marked below as <emph>(7.2)</emph> are available as from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. nXGkZ
#: sf_dialog.xhp
msgctxt ""
@@ -4669,121 +5416,301 @@ msgctxt ""
msgid "The UNO object representing the dialog view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControl interface\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog-members.html\" name=\"UnoControlDialog interface\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. gTQjc
+#. q8eyc
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id921606472825856\n"
+"hd_id421612628828054\n"
"help.text"
-msgid "Methods"
+msgid "Event properties"
msgstr ""
-#. DiCyL
+#. EbGWN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id871583933076448\n"
+"par_id41612629140856\n"
"help.text"
-msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
msgstr ""
-#. 7QdPA
+#. XCC7C
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id151598178880227\n"
+"par_id961612628879819\n"
"help.text"
-msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgid "Name"
msgstr ""
-#. L9qDh
+#. V3bin
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id61583933076171\n"
+"par_id401612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "ReadOnly"
msgstr ""
-#. iFcFd
+#. uW85z
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id26158393307687\n"
+"par_id281612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Basic IDE Description"
msgstr ""
-#. eYDfG
+#. dFkbN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"bas_id841598179117184\n"
+"par_id111612629836630\n"
"help.text"
-msgid "' Dialog stored in current document's standard library"
+msgid "Yes"
msgstr ""
-#. 4qLn9
+#. aKBvg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id161584541257982\n"
+"par_id1001612629836902\n"
"help.text"
-msgid "Return either:"
+msgid "When receiving focus"
msgstr ""
-#. isSnB
+#. 4FBaJ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id421598179770993\n"
+"par_id291612629836294\n"
"help.text"
-msgid "the list of the controls contained in the dialog"
+msgid "Yes"
msgstr ""
-#. 4EuYK
+#. 8U7FZ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id81598185229301\n"
+"par_id62161262983683\n"
"help.text"
-msgid "a dialog control class instance based on its name"
+msgid "When losing focus"
msgstr ""
-#. 2RFtC
+#. wBCKi
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id601584541257443\n"
+"par_id81612629836634\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "Yes"
msgstr ""
-#. 7PGuV
+#. CK5vU
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id291584541257237\n"
+"par_id881612629836744\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgid "Key pressed"
msgstr ""
-#. AEAHd
+#. gXJGu
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id1001584541257789\n"
+"par_id591612629836830\n"
"help.text"
-msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgid "Yes"
msgstr ""
-#. atHXa
+#. CJwi7
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id32158454125769\n"
+"par_id161612629836775\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Key released"
+msgstr ""
+
+#. wS7GH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. GcDU7
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. eUS49
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QrByH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. CRGTF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 69s4B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. ojLRr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. XaS8A
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. MnMUF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NtqPz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. czknv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. J2uzg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. gTQjc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. DiCyL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 7QdPA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgstr ""
+
+#. eYDfG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id841598179117184\n"
+"help.text"
+msgid "' Dialog stored in current document's standard library"
+msgstr ""
+
+#. 4qLn9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "Return either:"
+msgstr ""
+
+#. isSnB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id421598179770993\n"
+"help.text"
+msgid "the list of the controls contained in the dialog"
+msgstr ""
+
+#. 4EuYK
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81598185229301\n"
+"help.text"
+msgid "a dialog control class instance based on its name"
+msgstr ""
+
+#. AEAHd
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
msgstr ""
#. j8x9C
@@ -4876,22 +5803,13 @@ msgctxt ""
msgid "' Dialog stored in current document's standard library"
msgstr ""
-#. FrCG7
-#: sf_dialog.xhp
-msgctxt ""
-"sf_dialog.xhp\n"
-"bas_id781612273203518\n"
-"help.text"
-msgid "End Select"
-msgstr ""
-
-#. DYy75
+#. ARCGg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id21598187953679\n"
"help.text"
-msgid "Terminate the dialog service for the current instance. Return <literal>True</literal> if the termination was successful."
+msgid "Terminate the <literal>Dialog</literal> service for the current instance. Return <literal>True</literal> if the termination was successful."
msgstr ""
#. BFfGX
@@ -4921,31 +5839,31 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service manages the controls belonging to a dialog defined with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current service represents a single control within a dialog box."
msgstr ""
-#. 3oXnC
+#. 7dDgL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bm_id331612167249331\n"
+"par_id701598191157426\n"
"help.text"
-msgid "<bookmark_value>API;awt.XControl</bookmark_value> <bookmark_value>API;awt.XControlModel</bookmark_value>"
+msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
msgstr ""
-#. 7dDgL
+#. fFfwe
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id701598191157426\n"
+"par_id981598191184526\n"
"help.text"
-msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
+msgid "Note that the unique <literal>DialogControl.Value</literal> property content varies according to the control type."
msgstr ""
-#. GqHgy
+#. MBrzA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id981598191184526\n"
+"par_id991612698027551\n"
"help.text"
-msgid "Note that <literal>DialogControl.Value</literal> property content varies according to UNO control types."
+msgid "A special attention is given to controls of type tree control. It is easy to populate a tree, either branch by branch, or with a set of branches at once. Populating a tree control can be performed statically or dynamically."
msgstr ""
#. 9LpGF
@@ -5029,6 +5947,15 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service is available for these control types:"
msgstr ""
+#. ScLTk
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612698897514\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
#. 7xddb
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5092,6 +6019,15 @@ msgctxt ""
msgid "No"
msgstr ""
+#. jqpFz
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id231598538847029\n"
+"help.text"
+msgid "Button"
+msgstr ""
+
#. aTyMC
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5146,6 +6082,33 @@ msgctxt ""
msgid "One of the types listed above."
msgstr ""
+#. oMipU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id67161270548283\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 59ovD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341612705482566\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. w2ZhT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612705482919\n"
+"help.text"
+msgid "The currently upmost node selected in the tree control. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. veivJ
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5200,13 +6163,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. DrmM6
+#. 6L9ke
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id491598539231618\n"
+"par_id491598529331618\n"
"help.text"
-msgid "DateField, TimeField, FormattedField (read-only)"
+msgid "(read-only)"
msgstr ""
#. QbN5U
@@ -5279,7 +6242,7 @@ msgctxt ""
"par_id961598457655506\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. 6N6Eb
#: sf_dialogcontrol.xhp
@@ -5297,7 +6260,7 @@ msgctxt ""
"par_id621598457951781\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. r83sC
#: sf_dialogcontrol.xhp
@@ -5342,7 +6305,7 @@ msgctxt ""
"par_id80159845835726\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. 8GZkA
#: sf_dialogcontrol.xhp
@@ -5414,7 +6377,7 @@ msgctxt ""
"par_id971598458773352\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. LP96H
#: sf_dialogcontrol.xhp
@@ -5425,6 +6388,33 @@ msgctxt ""
msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the specified control. The filename must comply with the <literal>FileNaming</literal> attribute of the <literal>ScriptForge.FileSystem</literal> service."
msgstr ""
+#. LZLsc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612700624650\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QxAW9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612700624483\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. m4N4j
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id11612700624514\n"
+"help.text"
+msgid "An object representing the lowest root node (usually there is only one such root node). Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. PqsSY
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5432,7 +6422,7 @@ msgctxt ""
"par_id401598516577225\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. AciNr
#: sf_dialogcontrol.xhp
@@ -5450,7 +6440,7 @@ msgctxt ""
"par_id781598516764550\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. 4h8VF
#: sf_dialogcontrol.xhp
@@ -5468,7 +6458,7 @@ msgctxt ""
"par_id411598517275112\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. EijF2
#: sf_dialogcontrol.xhp
@@ -5495,7 +6485,7 @@ msgctxt ""
"par_id821598517418463\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. ZemBe
#: sf_dialogcontrol.xhp
@@ -5513,15 +6503,15 @@ msgctxt ""
"par_id701598517671373\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
-#. fk87j
+#. ZHrsm
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id991598517671916\n"
+"par_id1001598540024225\n"
"help.text"
-msgid "Read below."
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\" name=\"Value property\">Value property</link>"
msgstr ""
#. PqKgo
@@ -5531,7 +6521,7 @@ msgctxt ""
"par_id661598517730941\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. 8r3sG
#: sf_dialogcontrol.xhp
@@ -5623,13 +6613,49 @@ msgctxt ""
msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog.html)\" name=\"awt.UnoControlDialog\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. agJv5
+#. SAkJX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612699446459\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yuAdF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612699446893\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. 3Dmwo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id25161269944611\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
+#. 7XckG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id691612699446892\n"
+"help.text"
+msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\" name=\"awt.tree.XMutableTreeDataModel\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. dfWTW
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"hd_id81598540704978\n"
"help.text"
-msgid "The Value property"
+msgid "The <variable id=\"ValueProperty\">Value property</variable>"
msgstr ""
#. JHK7w
@@ -5659,6 +6685,15 @@ msgctxt ""
msgid "Description"
msgstr ""
+#. kfK2B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id271598543254590\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. jEyx9
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5686,6 +6721,15 @@ msgctxt ""
msgid "0, False: not checked<br/>1, True: checked<br/>2: grayed, don't know"
msgstr ""
+#. EKHtH
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781598543254887\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. nZVA5
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5704,6 +6748,24 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. DoCfT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401598543254743\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. XzBhY
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id731598543254544\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. kgfXR
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5749,6 +6811,15 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. CCkkF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81598543254625\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. YvPAp
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5767,6 +6838,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. veFie
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id561598543254115\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. ZragT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5794,6 +6874,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. 5VuCQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id751598543254299\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. a9AMF
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5803,6 +6892,348 @@ msgctxt ""
msgid "The text appearing in the field"
msgstr ""
+#. wGGjL
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341598543254600\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. CABLr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. c7srp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgstr ""
+
+#. fkFAt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 2sB8F
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 2A2Ex
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Description as labeled in the Basic IDE"
+msgstr ""
+
+#. rSRBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id91612707166532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. aABgD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612707166258\n"
+"help.text"
+msgid "Execute action"
+msgstr ""
+
+#. KnFdW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id79161270716675\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JrRob
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612707166731\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. mpuj3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 7Swj5
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. Mp4i7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ozGia
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. TR5uW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612707354544\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. HREcr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612707354899\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. L6e2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. sVo6A
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. pPBHX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. P6NX8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. XJGHA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. oCDXm
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. nLbMG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9XdcG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. BZ7sC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. mzbBD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. fAD8Y
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FCBxu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. 4DCtC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8B9ct
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. krueU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4c5qE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. FkyLb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id851612707606863\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. VudpK
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id351612707606197\n"
+"help.text"
+msgid "(Not in Basic IDE) when the expansion button is pressed on a node in a tree control"
+msgstr ""
+
+#. TkEgQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id121612707606251\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. quWBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612707606121\n"
+"help.text"
+msgid "(Not in Basic IDE) when a node in a tree control is selected"
+msgstr ""
+
+#. qyb3B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id811612707606330\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. th6Kr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id621612707606219\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
#. YFbGT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5821,33 +7252,222 @@ msgctxt ""
msgid "List of Methods in the DialogControl Service"
msgstr ""
-#. 3oU3L
+#. 5jtfg
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id871583933076448\n"
+"par_id831612711823126\n"
"help.text"
-msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. <variable id=\"XMutableTreeNode\">Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XMutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information.</variable>"
msgstr ""
-#. 6YvuU
+#. MrQnS
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id151598178880227\n"
+"par_id741612711823706\n"
"help.text"
-msgid "This method is often called from a dialog or control event."
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. B7sAb
+#. cK7HA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id841598179117184\n"
+"par_id761612711823834\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. g2Ubo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id791612711823819\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. GV6Gp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id911612711823382\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. qbb2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id401612711823779\n"
"help.text"
msgid "'Dialog stored in current document's standard library"
msgstr ""
+#. 8B3qP
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id221612713087885\n"
+"help.text"
+msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
+msgstr ""
+
+#. UkE9k
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781612713087722\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. 2FTD4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id36161271308759\n"
+"help.text"
+msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgstr ""
+
+#. r5QNj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id61612716027443\n"
+"help.text"
+msgid "Flat tree >>>> Resulting subtree"
+msgstr ""
+
+#. SQH7v
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612713087915\n"
+"help.text"
+msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgstr ""
+
+#. fWnhZ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612780723320\n"
+"help.text"
+msgid "Returns a new root node of the tree control, as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. The new tree root is inserted below pre-existing root nodes. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. YT845
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id821612780723965\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
+msgstr ""
+
+#. QiXVA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id671612780723837\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. Cw3b9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id31612780723267\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. Ynpwt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612781589503\n"
+"help.text"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. 5Jxkj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612782475457\n"
+"help.text"
+msgid "When not found, the method returns <literal>Nothing</literal>, to be tested with the <literal>IsNull()</literal> builtin function."
+msgstr ""
+
+#. n7pE8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612781589363\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
+msgstr ""
+
+#. t5Kcc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id541613670199211\n"
+"help.text"
+msgid "One argument out of <literal>DisplayValue</literal>or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgstr ""
+
+#. KMPVF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612781589560\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"Sting service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgstr ""
+
+#. CF4o6
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id481612781589626\n"
+"help.text"
+msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
+msgstr ""
+
+#. g7uEG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id141582384726168\n"
+"help.text"
+msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgstr ""
+
+#. 3oU3L
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 6YvuU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is often called from a dialog or control event."
+msgstr ""
+
#. HNmmm
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5866,13 +7486,13 @@ msgctxt ""
msgid "An error is raised if the actual control is not of the type <literal>TextField</literal> or is not multiline."
msgstr ""
-#. MwNhE
+#. AKiEA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Line</emph> : The string to insert. Default = an empty line."
+msgid "<emph>Line</emph>: The string to insert. Default is an empty line."
msgstr ""
#. opNus
@@ -6719,7 +8339,7 @@ msgctxt ""
"par_id441582886030118\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. DNFGz
#: sf_document.xhp
@@ -7421,7 +9041,7 @@ msgctxt ""
"par_id71584978715562\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. RyJkE
#: sf_exception.xhp
@@ -7448,7 +9068,7 @@ msgctxt ""
"par_id211584978211383\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. AnFVG
#: sf_exception.xhp
@@ -7475,7 +9095,7 @@ msgctxt ""
"par_id671584978666689\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. G3q2n
#: sf_exception.xhp
@@ -8017,15 +9637,6 @@ msgctxt ""
msgid "The following code snippet invokes the <literal>FileSystem</literal> service. The method <literal>BuildPath</literal> was used as an example."
msgstr ""
-#. hUmn8
-#: sf_filesystem.xhp
-msgctxt ""
-"sf_filesystem.xhp\n"
-"bm_id901612991354326\n"
-"help.text"
-msgid "<bookmark_value>FileSystem service;FileNaming property</bookmark_value> <bookmark_value>FileSystem service;ConfigFolder property</bookmark_value> <bookmark_value>FileSystem service;ExtensionsFolder property</bookmark_value> <bookmark_value>FileSystem service;HomeFolder property</bookmark_value> <bookmark_value>FileSystem service;InstallFolder property</bookmark_value> <bookmark_value>FileSystem service;TemplatesFolder property</bookmark_value> <bookmark_value>FileSystem service;TemporaryFolder property</bookmark_value> <bookmark_value>FileSystem service;UserTemplatesFolder property</bookmark_value>"
-msgstr ""
-
#. Gsznv
#: sf_filesystem.xhp
msgctxt ""
@@ -8078,7 +9689,7 @@ msgctxt ""
"par_id371583668519172\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. Gihmg
#: sf_filesystem.xhp
@@ -8269,22 +9880,22 @@ msgctxt ""
msgid "Joins a folder path and the name of a file and returns the full file name with a valid path separator. The path separator is added only if necessary."
msgstr ""
-#. dbCP6
+#. EDmLL
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id90158393307695\n"
"help.text"
-msgid "<emph>FolderName</emph> : The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
+msgid "<emph>FolderName</emph>: The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
msgstr ""
-#. LaGBv
+#. TqBVA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id891583933076975\n"
"help.text"
-msgid "<emph>Name</emph> : The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
+msgid "<emph>Name</emph>: The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
msgstr ""
#. DwTpc
@@ -8305,22 +9916,22 @@ msgctxt ""
msgid "Depending on the value of the <literal>CompareContents</literal> argument, the comparison between both files can be either based only on file attributes (such as the last modified date), or based on the file contents."
msgstr ""
-#. dLpG4
+#. kYy2f
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481601118910755\n"
"help.text"
-msgid "<emph>FileName1, FileName2</emph> : The files to compare."
+msgid "<emph>FileName1, FileName2</emph>: The files to compare."
msgstr ""
-#. TAPBR
+#. mXZPN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111601118910848\n"
"help.text"
-msgid "<emph>CompareContents</emph> : When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
+msgid "<emph>CompareContents</emph>: When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
msgstr ""
#. EZNG5
@@ -8350,22 +9961,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ErB6x
+#. cxNda
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
msgstr ""
-#. A3qtd
+#. pwEq9
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111584542310166\n"
"help.text"
-msgid "<emph>Destination</emph> : It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
msgstr ""
#. FCpqn
@@ -8386,13 +9997,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. 53E5r
+#. 48FYf
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431558\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. KerV3
@@ -8440,22 +10051,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ygWn7
+#. isESD
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id851584544734202\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
msgstr ""
-#. EgL3W
+#. 5fFnt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id321584544734273\n"
"help.text"
-msgid "<emph>Destination</emph> : Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
msgstr ""
#. CzQ9A
@@ -8476,13 +10087,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. KCfZf
+#. 2ziFA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431525\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. niaPD
@@ -8512,13 +10123,13 @@ msgctxt ""
msgid "If the specified folder has a parent folder that does not exist, it is created."
msgstr ""
-#. ZFWUY
+#. G2A8N
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id491584540675469\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be created. If the folder already exists, an exception will be raised."
+msgid "<emph>FolderName</emph>: A string representing the folder to be created. If the folder already exists, an exception will be raised."
msgstr ""
#. EYSCS
@@ -8539,31 +10150,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. tykpH
+#. hBQSN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id901585322689715\n"
"help.text"
-msgid "<emph>FileName</emph> : The name of the file to be created."
+msgid "<emph>FileName</emph>: The name of the file to be created."
msgstr ""
-#. ZcmDb
+#. VkGyb
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id501585322689209\n"
"help.text"
-msgid "<emph>Overwrite</emph> : Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
+msgid "<emph>Overwrite</emph>: Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
msgstr ""
-#. X7GW9
+#. Zp6H3
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585322689192\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. eoE92
@@ -8611,13 +10222,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. D8kDv
+#. 2k57M
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id441584882040860\n"
"help.text"
-msgid "<emph>FileName</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
+msgid "<emph>FileName</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
msgstr ""
#. YtAfH
@@ -8665,13 +10276,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. zdaKv
+#. ecg9D
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id451584882542247\n"
"help.text"
-msgid "<emph>FolderName</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
+msgid "<emph>FolderName</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
msgstr ""
#. ECKGi
@@ -8701,13 +10312,13 @@ msgctxt ""
msgid "If the <literal>FileName</literal> parameter is actually an existing folder name, the method returns <literal>False</literal>."
msgstr ""
-#. 5sCo3
+#. 7pDFB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id361583764426547\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file to be tested."
+msgid "<emph>FileName</emph>: A string representing the file to be tested."
msgstr ""
#. ChDCL
@@ -8737,22 +10348,22 @@ msgctxt ""
msgid "The resulting list may be filtered with wildcards."
msgstr ""
-#. QFJEd
+#. YsYdQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id731583944543140\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. 6qDtR
+#. V95Bm
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id591585648450060\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
msgstr ""
#. HJ9vL
@@ -8782,13 +10393,13 @@ msgctxt ""
msgid "If the <literal>FolderName</literal> parameter is actually an existing file name, the method returns <literal>False</literal>."
msgstr ""
-#. SQVF8
+#. Z46FB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001583765642211\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be tested."
+msgid "<emph>FolderName</emph>: A string representing the folder to be tested."
msgstr ""
#. eAFVs
@@ -8809,13 +10420,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. kotiz
+#. B3jVo
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id691584110618308\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. VcGyZ
@@ -8863,13 +10474,13 @@ msgctxt ""
msgid "If this method is applied to a folder name or to a file without an extension, then an empty string is returned."
msgstr ""
-#. tQpBe
+#. GDoGW
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821584032680311\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. Am6Bu
@@ -8890,13 +10501,13 @@ msgctxt ""
msgid "The <literal>GetFileLen</literal> method can handle files with much larger sizes by returning a <literal>Currency</literal> value."
msgstr ""
-#. cC9GE
+#. FvwV6
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id161600685050367\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. o2GGJ
@@ -8908,13 +10519,13 @@ msgctxt ""
msgid "Returns the last modified date of a given file."
msgstr ""
-#. ssSmV
+#. dxpgz
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id25158481147822\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. VEZR6
@@ -8935,13 +10546,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. DHaix
+#. VWPoq
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671584032366193\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. ffxFe
@@ -8962,13 +10573,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. Gqc5k
+#. XDmYQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471584113432231\n"
"help.text"
-msgid "<emph>FileName</emph> : A string with the file or folder name to be analyzed."
+msgid "<emph>FileName</emph>: A string with the file or folder name to be analyzed."
msgstr ""
#. Uc93M
@@ -9025,22 +10636,22 @@ msgctxt ""
msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
msgstr ""
-#. 5FXjQ
+#. jTMPS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id28160104251451\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
-#. 88LmG
+#. F86KG
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id71601042959846\n"
"help.text"
-msgid "<emph>Algorithm</emph> : One of the supported algorithms."
+msgid "<emph>Algorithm</emph>: One of the supported algorithms."
msgstr ""
#. HzFs2
@@ -9070,22 +10681,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. RY5vD
+#. LAeis
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id721584791330406\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
msgstr ""
-#. 5CsKP
+#. rgNqi
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id291584791330181\n"
"help.text"
-msgid "<emph>Destination</emph> : If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
+msgid "<emph>Destination</emph>: If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
msgstr ""
#. E7BHq
@@ -9151,22 +10762,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. wBkni
+#. tLxAt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id541584791330777\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
msgstr ""
-#. By4Cy
+#. bTWWF
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551584791330279\n"
"help.text"
-msgid "<emph>Destination</emph> : If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
+msgid "<emph>Destination</emph>: If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
msgstr ""
#. upwt8
@@ -9214,31 +10825,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. CBiwE
+#. R5a4m
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585320922678\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open."
+msgid "<emph>FileName</emph>: Identifies the file to open."
msgstr ""
-#. wr4wi
+#. FUxVH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671585320922388\n"
"help.text"
-msgid "<emph>IOMode</emph> : Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
+msgid "<emph>IOMode</emph>: Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
msgstr ""
-#. 25nRj
+#. ttSYS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id21585321398586\n"
"help.text"
-msgid "<emph>Create</emph> : Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
+msgid "<emph>Create</emph>: Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
msgstr ""
#. VDFAi
@@ -9259,13 +10870,13 @@ msgctxt ""
msgid "If <literal>False</literal> then new files are not created (default)."
msgstr ""
-#. WzDqZ
+#. BoVQQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id771585321576210\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. FuYwe
@@ -9286,13 +10897,13 @@ msgctxt ""
msgid "If the <literal>SAVE</literal> mode is set and the picked file exists, a warning message will be displayed."
msgstr ""
-#. gi6um
+#. PAaAH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481583670342502\n"
"help.text"
-msgid "<emph>DefaultFile</emph> : This argument is a string composed of a folder and file name:"
+msgid "<emph>DefaultFile</emph>: This argument is a string composed of a folder and file name:"
msgstr ""
#. fyVCs
@@ -9313,22 +10924,22 @@ msgctxt ""
msgid "The file part designates the default file to open or save."
msgstr ""
-#. CyhXn
+#. rcast
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id981583670342502\n"
"help.text"
-msgid "<emph>Mode</emph> : <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
+msgid "<emph>Mode</emph>: <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
msgstr ""
-#. Ym5VM
+#. Dtmio
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id31583670342502\n"
"help.text"
-msgid "<emph>Filter</emph> : The extension of the files displayed when the dialog is opened (default = no filter)."
+msgid "<emph>Filter</emph>: The extension of the files displayed when the dialog is opened (default = no filter)."
msgstr ""
#. 8WirR
@@ -9349,22 +10960,22 @@ msgctxt ""
msgid "Opens a dialog box to select a folder."
msgstr ""
-#. nQtNH
+#. coL3A
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id951583671701872\n"
"help.text"
-msgid "<emph>DefaultFolder</emph> : A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
+msgid "<emph>DefaultFolder</emph>: A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
msgstr ""
-#. hspKF
+#. esSGJ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821583671701764\n"
"help.text"
-msgid "<emph>FreeText</emph> : Text to display in the dialog (default = \"\")."
+msgid "<emph>FreeText</emph>: Text to display in the dialog (default = \"\")."
msgstr ""
#. GMYtx
@@ -9394,22 +11005,22 @@ msgctxt ""
msgid "The list may be filtered with wildcards."
msgstr ""
-#. vXLY5
+#. ApGN7
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id701584016761945\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. XSBWe
+#. zHooS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471585648674921\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
msgstr ""
#. WVhEh
@@ -9430,6 +11041,1005 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
msgstr ""
+#. VCRTD
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.L10N service"
+msgstr ""
+
+#. q7BSh
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id521585843652750\n"
+"help.text"
+msgid "<variable id=\"L10NService\"><link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N service\"><literal>ScriptForge</literal>.<literal>L10N</literal> service</link></variable>"
+msgstr ""
+
+#. FRAiJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652556\n"
+"help.text"
+msgid "This service provides a number of methods related to the translation of strings with minimal impact on the program's source code. The methods provided by the <literal>L10N</literal> service can be used mainly to:"
+msgstr ""
+
+#. gw2rW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id601614351922212\n"
+"help.text"
+msgid "Create POT files that can be used as templates for translation of all strings in the program."
+msgstr ""
+
+#. sbVQL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id131614352196513\n"
+"help.text"
+msgid "Get translated strings at runtime for the language defined in the <literal>Locale</literal> property."
+msgstr ""
+
+#. kCrgU
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id971614966420419\n"
+"help.text"
+msgid "The acronym <literal>L10N</literal> stands for Localization and refers to a set of procedures for translating software to a specific country or region."
+msgstr ""
+
+#. supr5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652438\n"
+"help.text"
+msgid "PO files have long been promoted in the free software community as a means to providing multilingual user interfaces. This is accomplished through the use of human-readable text files with a well defined structure that specifies, for any given language, the source language string and the localized string."
+msgstr ""
+
+#. j6xsd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652814\n"
+"help.text"
+msgid "The main advantage of the PO format is dissociation of the programmer and the translator. PO files are independent text files, so the programmer can send POT template files to translators, who will then translate their contents and return the translated PO files for each supported language."
+msgstr ""
+
+#. iBQxR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id811614352321187\n"
+"help.text"
+msgid "The <literal>L10N</literal> service is based on the GNU implementation of PO (portable object) files. To learn more about this file format, visit <link href=\"https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html\" name=\"GetText\">GNU gettext Utilities: PO Files</link>."
+msgstr ""
+
+#. 4CMir
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id91585843652832\n"
+"help.text"
+msgid "This service implements the three methods listed below:"
+msgstr ""
+
+#. fBXDW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1158584365237\n"
+"help.text"
+msgid "<emph>AddText</emph>: Used by the programmer to build a set of strings that will be translated later."
+msgstr ""
+
+#. cm7fq
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id681585843652331\n"
+"help.text"
+msgid "<emph>ExportToPOTFile</emph>: Exports the strings added by the <literal>AddText</literal> method to a POT file."
+msgstr ""
+
+#. Z7dU5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id531585843652697\n"
+"help.text"
+msgid "<emph>GetText</emph>: Gets the translated strings at runtime."
+msgstr ""
+
+#. D4Fyf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id361614361362393\n"
+"help.text"
+msgid "Note that the first two methods are used to build a set of translatable strings and export them to a POT file. However, it is not mandatory to create POT files using these methods. Since they are text files, the programmer could have created them using any text editor."
+msgstr ""
+
+#. Rn7FL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id351585843652312\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. nkcFt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614353247163\n"
+"help.text"
+msgid "To invoke the <literal>L10N</literal> service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below."
+msgstr ""
+
+#. u3ENa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652877\n"
+"help.text"
+msgid "<emph>FolderName</emph>: The folder containing the PO files. It must be expressed in the <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. 8PpqQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585843652789\n"
+"help.text"
+msgid "<emph>Locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
+msgstr ""
+
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
+#. 3YPqe
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891614358528334\n"
+"help.text"
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods."
+msgstr ""
+
+#. XUTWZ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id611614358672609\n"
+"help.text"
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings."
+msgstr ""
+
+#. RmYkJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id451614358683971\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\")"
+msgstr ""
+
+#. Ab7iH
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id321614358809763\n"
+"help.text"
+msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French."
+msgstr ""
+
+#. zEgWG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id661614358846464\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\", \"fr-BE\")"
+msgstr ""
+
+#. UGFWB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652496\n"
+"help.text"
+msgid "PO files must be named in the form \"la-CO.po\" or \"la.po\", where \"la\" refers to the language and \"CO\" is the country. Some examples are: \"en-US.po\", \"fr-BE.po\" or \"fr.po\"."
+msgstr ""
+
+#. zQhHX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id171585843652545\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. M9GLd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bm_id871614359551930\n"
+"help.text"
+msgid "<bookmark_value>L10N service;Folder</bookmark_value> <bookmark_value>L10N service;Languages</bookmark_value> <bookmark_value>L10N service;Locale</bookmark_value>"
+msgstr ""
+
+#. 6mcLb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id561585843652465\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. mJaFd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652958\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. FFbDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id741585843652162\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. X3tJK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652823\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 8ECBX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id351585843652638\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. j3wEj
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id451585843652928\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. uED9S
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id751585843652642\n"
+"help.text"
+msgid "The folder containing the PO files (see the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#bm_id901612991354326\" name=\"FileNaming property\"><literal>FileSystem.FileNaming</literal></link> property to learn about the notation used)."
+msgstr ""
+
+#. Zsp7p
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id96158584365279\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vdfiw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652912\n"
+"help.text"
+msgid "A zero-based array listing all the base names (without the \".po\" extension) of the PO-files found in the specified <literal>Folder</literal>."
+msgstr ""
+
+#. NWxhu
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961585843652589\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LSNA3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id561585843652947\n"
+"help.text"
+msgid "The currently active language-COUNTRY combination. This property will be initially empty if the service was instantiated without any of the optional arguments."
+msgstr ""
+
+#. 5cs7h
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the L10N Service"
+msgstr ""
+
+#. Q24j9
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1001585843652271\n"
+"help.text"
+msgid "Adds a new entry in the list of localizable strings. It must not exist yet."
+msgstr ""
+
+#. WPVrn
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id391585843652753\n"
+"help.text"
+msgid "<emph>Context</emph>: The key to retrieve the translated string with the <literal>GetText</literal> method. This parameter has a default value of \"\"."
+msgstr ""
+
+#. EC7wb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585844419114\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. The <literal>MsgId</literal> becomes the key to retrieve the translated string via <literal>GetText</literal> method when <literal>Context</literal> is empty."
+msgstr ""
+
+#. X3F7E
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id311614361926844\n"
+"help.text"
+msgid "The <literal>MsgId</literal> string may contain any number of placeholders (%1 %2 %3 ...) for dynamically modifying the string at runtime."
+msgstr ""
+
+#. 9Jgn8
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id541585844475331\n"
+"help.text"
+msgid "<emph>Comment</emph>: Optional comment to be added alongside the string to help translators."
+msgstr ""
+
+#. TAyPG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id461614364298440\n"
+"help.text"
+msgid "The example below creates a set of strings in English:"
+msgstr ""
+
+#. DqFBf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281586102707242\n"
+"help.text"
+msgid "Exports a set of untranslated strings as a POT file."
+msgstr ""
+
+#. zTKQ4
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id711586102939257\n"
+"help.text"
+msgid "To build a set of strings you can use either a succession of <literal>AddText</literal> method calls, or by a successful invocation of the <literal>L10N</literal> service with the <literal>FolderName</literal> argument present. It is also possible to use a combination of both techniques."
+msgstr ""
+
+#. WiqHy
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id31586102707537\n"
+"help.text"
+msgid "<emph>FileName</emph>: The output file in <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. BkEjG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id851586102707579\n"
+"help.text"
+msgid "<emph>Header</emph>: Comments that will be added on top of the generated POT file."
+msgstr ""
+
+#. qfPvB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id111614364686973\n"
+"help.text"
+msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the <literal>Header</literal> argument."
+msgstr ""
+
+#. rUUCt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id5158610270728\n"
+"help.text"
+msgid "<emph>Encoding</emph>: The character set to be used (Default = \"UTF-8\")."
+msgstr ""
+
+#. uDu7z
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581614364494235\n"
+"help.text"
+msgid "The generated file should successfully pass the <literal>msgfmt --check</literal> GNU command."
+msgstr ""
+
+#. wBAjb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891586165768715\n"
+"help.text"
+msgid "Gets the translated string corresponding to the given <literal>MsgId</literal> argument."
+msgstr ""
+
+#. NzGZC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291614365296959\n"
+"help.text"
+msgid "A list of arguments may be specified to replace the placeholders (%1, %2, ...) in the string."
+msgstr ""
+
+#. 9DBFa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231586166181909\n"
+"help.text"
+msgid "If no translated string is found, the method returns the untranslated string after replacing the placeholders with the specified arguments."
+msgstr ""
+
+#. bAcmJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id871586352505927\n"
+"help.text"
+msgid "This method can be called either by the full name <literal>GetText</literal> or by the shortcut <literal>_</literal> (a single underscore):"
+msgstr ""
+
+#. NzdBC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614967136502\n"
+"help.text"
+msgid "In the ScriptForge library, all methods starting with the \"_\" character are reserved for internal use only. However, the shortcut <literal>_</literal> used for <literal>GetText</literal> is the only exception to this rule, hence it can be safely used in Basic scripts."
+msgstr ""
+
+#. rNrAw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id51586165768525\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime."
+msgstr ""
+
+#. Fummg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id11614365537450\n"
+"help.text"
+msgid "Besides using a single <literal>MsgId</literal> string, this method also accepts the following formats:"
+msgstr ""
+
+#. fD2Bg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961614365557277\n"
+"help.text"
+msgid "The <literal>Context</literal> string with which the method will retrieve the <literal>MsgId</literal> in the PO file, or;"
+msgstr ""
+
+#. v6nVR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id981614365589866\n"
+"help.text"
+msgid "A combination <literal>Context|MsgId</literal>, instructing the method to retrieve the <literal>MsgId</literal> using specified <literal>Context</literal> value. The second part of the argument is used to improve code readability."
+msgstr ""
+
+#. 5zB4f
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id571586165768106\n"
+"help.text"
+msgid "<emph>Arg1, ...</emph>: Values to be inserted into the placeholders. Any variable type is allowed, however only strings, numbers and dates will be considered."
+msgstr ""
+
+#. cCZDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id701614365961454\n"
+"help.text"
+msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the <literal>GetText</literal> method:"
+msgstr ""
+
+#. Kz4S7
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id171614366110835\n"
+"help.text"
+msgid "myPO = CreateScriptService(\"L10N\", \"c:\\MyPOFolder\\\")"
+msgstr ""
+
+#. EcBzr
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id1001586166834936\n"
+"help.text"
+msgid "' \"¡Bienvenido John! Espero que disfrutes de este programa\""
+msgstr ""
+
+#. H4aXx
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/guide/translation.xhp\" name=\"Controls Translation\"> Translation of Controls in the Dialog Editor</link>"
+msgstr ""
+
+#. Ah5Gj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Platform service"
+msgstr ""
+
+#. PCkEG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"PlatformService\"><link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"Platform service\"><literal>ScriptForge</literal>.<literal>Platform</literal> service</link></variable>"
+msgstr ""
+
+#. 7D6Dx
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Platform</literal> service provides a collection of properties about the current execution environment and context, such as:"
+msgstr ""
+
+#. FDJFB
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "The hardware platform (architecture, CPU count, machine type, etc)"
+msgstr ""
+
+#. i9FbJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Operating system information (OS type, release, version, etc)"
+msgstr ""
+
+#. uPLtj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "The LibreOffice version"
+msgstr ""
+
+#. BrEr7
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id671600788076855\n"
+"help.text"
+msgid "The current user name"
+msgstr ""
+
+#. ZvBqs
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id951614903258253\n"
+"help.text"
+msgid "All properties of the <literal>Platform</literal> service are read-only."
+msgstr ""
+
+#. iK4Gv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. Emisv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The code snippet below instantiates the <literal>Platform</literal> service and accesses the <literal>Architecture</literal> property."
+msgstr ""
+
+#. KC5eN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VXJ8a
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. JN68D
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. ZndAt
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. dAoKA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. XdLGG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. EEWuL
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "The hardware bit architecture. Example: '<literal>32bit</literal>' or '<literal>64bit</literal>'"
+msgstr ""
+
+#. 8EZ8A
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iG4iH
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "The computer's network name."
+msgstr ""
+
+#. hvAeY
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. g5EUJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "The number of central processor units."
+msgstr ""
+
+#. 89Lo8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rmGRV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "The name of the currently logged user."
+msgstr ""
+
+#. Dt7J5
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id391600788076253\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LA6EN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076541\n"
+"help.text"
+msgid "The machine type. Examples are: '<literal>i386</literal>' or '<literal>x86_64</literal>'."
+msgstr ""
+
+#. tqwyD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id211600788076138\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9uRw8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id521600788076371\n"
+"help.text"
+msgid "The actual LibreOffice version expressed as<br/>'<literal>LibreOffice w.x.y.z (The Document Foundation)</literal>'."
+msgstr ""
+
+#. 4bpcJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id621614902220807\n"
+"help.text"
+msgid "Example: '<literal>LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
+msgstr ""
+
+#. 7WDer
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076758\n"
+"help.text"
+msgid "Yes"
+msgstr "Sí"
+
+#. NUSby
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id781600788076694\n"
+"help.text"
+msgid "The operating system type. Example: '<literal>Darwin</literal>, <literal>Linux</literal>' or '<literal>Windows</literal>'."
+msgstr ""
+
+#. cLiaw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id261600788076841\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. nepQ6
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id11600788076757\n"
+"help.text"
+msgid "A single string identifying the underlying platform with as much useful and human-readable information as possible."
+msgstr ""
+
+#. EH36m
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id501614902381381\n"
+"help.text"
+msgid "Example: '<literal>Linux-5.8.0-44-generic-x86_64-with-glibc2.32</literal>'"
+msgstr ""
+
+#. hbyth
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id531600789141795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4iEvV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600789141619\n"
+"help.text"
+msgid "The operating system's release. Example: '<literal>5.8.0-44-generic</literal>'"
+msgstr ""
+
+#. 2fBtD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600789286532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iukPq
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id701600789286280\n"
+"help.text"
+msgid "The operating system's build or version."
+msgstr ""
+
+#. DWQNA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id351614902520555\n"
+"help.text"
+msgid "Example: '<literal>#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021</literal>'"
+msgstr ""
+
+#. fCdYi
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id941600789527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wkthE
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id631600789527859\n"
+"help.text"
+msgid "The real processor name. Example: '<literal>amdk6</literal>'."
+msgstr ""
+
+#. MYY9M
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id111614902598396\n"
+"help.text"
+msgid "This property may return the same value as the <literal>Machine</literal> property."
+msgstr ""
+
+#. 4pnPw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/python/python_platform.xhp\" name=\"OS python\">Identifying the operating system</link>"
+msgstr ""
+
+#. UCfLb
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613065794148\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Platform information with Calc INFO formula\">Platform information with INFO(\"system\") Calc formula</link>"
+msgstr ""
+
+#. PqDHG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id103613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType function</link>"
+msgstr ""
+
+#. DAfoV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301316075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools library</link>"
+msgstr ""
+
#. GpvmN
#: sf_services.xhp
msgctxt ""
@@ -9752,7 +12362,7 @@ msgctxt ""
"par_id351582724127926\n"
"help.text"
msgid "A service is either:"
-msgstr ""
+msgstr "Un serviciu pue ser:"
#. oC8wx
#: sf_services.xhp
@@ -10328,7 +12938,7 @@ msgctxt ""
"bas_id881582816585185\n"
"help.text"
msgid "' Generates an error."
-msgstr ""
+msgstr "' Xenera un error."
#. ygESx
#: sf_session.xhp
@@ -10931,7 +13541,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.String service (SF_String)"
-msgstr ""
+msgstr "Serviciu ScriptForge.String (SF_String)"
#. ZhvDP
#: sf_string.xhp
@@ -11318,7 +13928,7 @@ msgctxt ""
"par_id211584978211383\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. xht7K
#: sf_string.xhp
@@ -11336,7 +13946,7 @@ msgctxt ""
"par_id671584978666689\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. pdykp
#: sf_string.xhp
@@ -11354,7 +13964,7 @@ msgctxt ""
"par_id421584978666327\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. 9djV3
#: sf_string.xhp
@@ -11372,7 +13982,7 @@ msgctxt ""
"par_id541584978666991\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. VrjGQ
#: sf_string.xhp
@@ -11392,13 +14002,13 @@ msgctxt ""
msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
msgstr ""
-#. WSwjJ
+#. TFfR3
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id151611951803163\n"
"help.text"
-msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution."
+msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as <literal>Capitalize</literal>, <literal>Escape</literal>, etc return a new string after their execution."
msgstr ""
#. jaBZR
@@ -12652,13 +15262,13 @@ msgctxt ""
msgid "If <literal>OldStr</literal> and <literal>NewStr</literal> are arrays, replacements occur one by one up to the <literal>UBound(NewStr)</literal>."
msgstr ""
-#. HDGCx
+#. qUhcr
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id241612385058264\n"
"help.text"
-msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, than the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
+msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, then the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
msgstr ""
#. oTqRh
@@ -13129,6 +15739,564 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String function\">String built-in function</link>"
msgstr ""
+#. HjZDB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.TextStream service"
+msgstr ""
+
+#. cEA5U
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id351585330787295\n"
+"help.text"
+msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
+msgstr ""
+
+#. nBJsE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id511585330787205\n"
+"help.text"
+msgid "The <literal>TextStream</literal> service is used to sequentially read from and write to files opened or created using the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. TeRTa
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id41613596903894\n"
+"help.text"
+msgid "The methods <literal>OpenTextFile</literal> and <literal>CreateTextFile</literal> from the <literal>FileSystem</literal> service return an instance of the <literal>TextStream</literal> service."
+msgstr ""
+
+#. MVFWC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id161585330787262\n"
+"help.text"
+msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system."
+msgstr ""
+
+#. GDkir
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id831613598137669\n"
+"help.text"
+msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the <literal>SF_String.sfNEWLINE</literal> property."
+msgstr ""
+
+#. SvXzF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id851613597445432\n"
+"help.text"
+msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run."
+msgstr ""
+
+#. U6RHd
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id83158533078741\n"
+"help.text"
+msgid "Service instantiation"
+msgstr ""
+
+#. c7WYC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id351613598192725\n"
+"help.text"
+msgid "The code snippet below uses the <literal>OpenTextFile</literal> method to create an instance of the <literal>TextStream</literal> Service."
+msgstr ""
+
+#. UUudg
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id371585330787197\n"
+"help.text"
+msgid "The file must be closed with the <literal>CloseFile</literal> method after all read or write operations have been executed:"
+msgstr ""
+
+#. uCC2B
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id91613599192241\n"
+"help.text"
+msgid "myFile.CloseFile()"
+msgstr ""
+
+#. zNveN
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891582733781994\n"
+"help.text"
+msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
+msgstr ""
+
+#. LnYGk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id761613599333614\n"
+"help.text"
+msgid "Set myFile = myFile.Dispose()"
+msgstr ""
+
+#. nsGCZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id121612917368946\n"
+"help.text"
+msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
+msgstr ""
+
+#. JAmgD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id941585330787948\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. aZttT
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id1001613600572485\n"
+"help.text"
+msgid "<bookmark_value>TextStream service;AtEndOfStream</bookmark_value> <bookmark_value>TextStream service;Encoding</bookmark_value> <bookmark_value>TextStream service;FileName</bookmark_value> <bookmark_value>TextStream service;IOMode</bookmark_value> <bookmark_value>TextStream service;Line</bookmark_value> <bookmark_value>TextStream service;NewLine</bookmark_value>"
+msgstr ""
+
+#. aN9zM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id631585330787267\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. vwGC5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id401585330787370\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. GpL38
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id581585330787700\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 6FDuM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id551585330787608\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. ECkTm
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id181585330787752\n"
+"help.text"
+msgid "Yes"
+msgstr "Sí"
+
+#. YFkaY
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id901585330787680\n"
+"help.text"
+msgid "Used in read mode. A <literal>True</literal> value indicates that the end of the file has been reached. A test using this property should precede calls to the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. EFEnA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787568\n"
+"help.text"
+msgid "Yes"
+msgstr "Sí"
+
+#. cVCoJ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id741585330787777\n"
+"help.text"
+msgid "The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. p5s3X
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id641585330787207\n"
+"help.text"
+msgid "Yes"
+msgstr "Sí"
+
+#. JjEqX
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id281585330787614\n"
+"help.text"
+msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. goEnw
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id111585330787410\n"
+"help.text"
+msgid "Yes"
+msgstr "Sí"
+
+#. MZS6Z
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id861585330787417\n"
+"help.text"
+msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"."
+msgstr ""
+
+#. 7nTb9
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id87158533078795\n"
+"help.text"
+msgid "Yes"
+msgstr "Sí"
+
+#. j45gC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787741\n"
+"help.text"
+msgid "Returns the number of lines read or written so far."
+msgstr ""
+
+#. CLAvQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id531585330787157\n"
+"help.text"
+msgid "No"
+msgstr "Non"
+
+#. rdA5M
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id691585330787279\n"
+"help.text"
+msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
+msgstr ""
+
+#. dCeHZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. hKJkD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the TextStream Service"
+msgstr ""
+
+#. DBBKM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421585330787675\n"
+"help.text"
+msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns <literal>True</literal> if the file was successfully closed."
+msgstr ""
+
+#. MCW3q
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id65158533078799\n"
+"help.text"
+msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed."
+msgstr ""
+
+#. Vr34D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id71613600347125\n"
+"help.text"
+msgid "The resulting string can be split in lines either by using the <literal>Split</literal> built-in Basic function if the line delimiter is known, or with the <literal>SF_String.SplitLines</literal> method."
+msgstr ""
+
+#. VRLGn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id91585330787373\n"
+"help.text"
+msgid "For large files, using the <literal>ReadAll</literal> method wastes memory resources. In such cases it is recommended to read the file line by line using the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. BuBVA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id921613595637851\n"
+"help.text"
+msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):"
+msgstr ""
+
+#. dUSey
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id391613596019750\n"
+"help.text"
+msgid "The example below uses the <literal>ReadAll</literal> and <literal>SplitLines</literal> methods to read the contents of the file into an array of strings:"
+msgstr ""
+
+#. BuRJE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id251613595640550\n"
+"help.text"
+msgid "'Loads the FileSystem service"
+msgstr ""
+
+#. L2a3D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id181613595641087\n"
+"help.text"
+msgid "'Opens the text file with the names to be read"
+msgstr ""
+
+#. fArny
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id651613595641754\n"
+"help.text"
+msgid "Set inputFile = FSO.OpenTextFile(\"~/Documents/Students.txt\")"
+msgstr ""
+
+#. 9sFB5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id81613595642474\n"
+"help.text"
+msgid "Dim allData as String"
+msgstr ""
+
+#. a9b3r
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613595642766\n"
+"help.text"
+msgid "allData = inputFile.ReadAll()"
+msgstr ""
+
+#. 7Fq9E
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id871585330787885\n"
+"help.text"
+msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string."
+msgstr ""
+
+#. 6iDcF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id431613600221626\n"
+"help.text"
+msgid "The <literal>AtEndOfStream</literal> test should precede the <literal>ReadLine</literal> method like in the example below."
+msgstr ""
+
+#. GRRkq
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id171585330787774\n"
+"help.text"
+msgid "An error will be raised if the <literal>AtEndOfStream</literal> was reached during the previous <literal>ReadLine</literal> or <literal>SkipLine</literal> method call."
+msgstr ""
+
+#. mAty4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id11585330787847\n"
+"help.text"
+msgid "Skips the next line in the input stream when reading a <literal>TextStream</literal> file."
+msgstr ""
+
+#. FDMJB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id441613600704766\n"
+"help.text"
+msgid "This method can result in <literal>AtEndOfStream</literal> being set to <literal>True</literal>."
+msgstr ""
+
+#. D4JVb
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141585330787657\n"
+"help.text"
+msgid "Writes a specified number of empty lines to the output stream."
+msgstr ""
+
+#. NqNwE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id291585330787357\n"
+"help.text"
+msgid "<emph>Lines</emph>: The number of empty lines to write."
+msgstr ""
+
+#. GCPCC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id101585330787215\n"
+"help.text"
+msgid "Writes the given string to the output stream as a single line."
+msgstr ""
+
+#. Eska7
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421613601002074\n"
+"help.text"
+msgid "The character defined in the <literal>NewLine</literal> property is used as the line delimiter."
+msgstr ""
+
+#. YRTuQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id491585330787650\n"
+"help.text"
+msgid "<emph>Line</emph>: The line to write, may be empty."
+msgstr ""
+
+#. 39u4o
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id21613321528612\n"
+"help.text"
+msgid "'Instantiates the FileSystem Service"
+msgstr ""
+
+#. FnTiG
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613321529277\n"
+"help.text"
+msgid "'Creates a text file"
+msgstr ""
+
+#. f5RSB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id641613321530181\n"
+"help.text"
+msgid "'Writes the Value and Value squared, separated by \";\""
+msgstr ""
+
+#. FCowk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id141613321530960\n"
+"help.text"
+msgid "myFile.WriteLine(\"Value;Value Squared\")"
+msgstr ""
+
+#. m9Mo4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id881613321532598\n"
+"help.text"
+msgid "'Closes the file and free resources"
+msgstr ""
+
+#. nrDCn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input function\">Input Function</link>"
+msgstr ""
+
+#. FnNRc
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id271612398715438\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
+msgstr ""
+
#. PCSPY
#: sf_timer.xhp
msgctxt ""
@@ -13298,7 +16466,7 @@ msgctxt ""
"par_id621582733781588\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. 9yDgM
#: sf_timer.xhp
@@ -13316,7 +16484,7 @@ msgctxt ""
"par_id301582733781498\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. tqpDU
#: sf_timer.xhp
@@ -13334,7 +16502,7 @@ msgctxt ""
"par_id181582733781551\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. SGyi4
#: sf_timer.xhp
@@ -13352,7 +16520,7 @@ msgctxt ""
"par_id651582733781874\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. E45MD
#: sf_timer.xhp
@@ -13370,7 +16538,7 @@ msgctxt ""
"par_id141582733781303\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. FeCob
#: sf_timer.xhp
@@ -13435,15 +16603,6 @@ msgctxt ""
msgid "Returned value"
msgstr ""
-#. S6Gay
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id31582734180676\n"
-"help.text"
-msgid "Continue"
-msgstr ""
-
#. C2QQ4
#: sf_timer.xhp
msgctxt ""
@@ -13462,15 +16621,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not suspended"
msgstr ""
-#. ASHCm
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id881582734649304\n"
-"help.text"
-msgid "Restart"
-msgstr ""
-
#. nkUs3
#: sf_timer.xhp
msgctxt ""
@@ -13489,15 +16639,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is inactive"
msgstr ""
-#. 7VHEX
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id201582734802443\n"
-"help.text"
-msgid "Start"
-msgstr ""
-
#. AkgAy
#: sf_timer.xhp
msgctxt ""
@@ -13516,15 +16657,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is already started"
msgstr ""
-#. QdjDi
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id781582734905507\n"
-"help.text"
-msgid "Suspend"
-msgstr ""
-
#. D7CoH
#: sf_timer.xhp
msgctxt ""
@@ -13543,15 +16675,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not started or already suspended"
msgstr ""
-#. BUjcE
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id771582734996722\n"
-"help.text"
-msgid "Terminate"
-msgstr ""
-
#. sgXra
#: sf_timer.xhp
msgctxt ""
@@ -13579,6 +16702,33 @@ msgctxt ""
msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
msgstr ""
+#. UgBnC
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id141582735926821\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as suspended time"
+msgstr ""
+
+#. 4jHcj
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id901582735961725\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as running time"
+msgstr ""
+
+#. 7QhZU
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id941610739926687\n"
+"help.text"
+msgid "'Shows the final time measurements"
+msgstr ""
+
#. J6XGB
#: sf_timer.xhp
msgctxt ""
@@ -13615,6 +16765,33 @@ msgctxt ""
msgid "The following example illustrates how to create two <literal>Timer</literal> objects and start them separately."
msgstr ""
+#. PtA4E
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id481610989853679\n"
+"help.text"
+msgid "'Starts myTimerA"
+msgstr ""
+
+#. VUdGW
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id331610989849501\n"
+"help.text"
+msgid "'Starts myTimerB"
+msgstr ""
+
+#. t98Fv
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id931610989837747\n"
+"help.text"
+msgid "'Terminate both timers"
+msgstr ""
+
#. CpzL5
#: sf_timer.xhp
msgctxt ""
@@ -13703,7 +16880,7 @@ msgctxt ""
"par_id761587913266388\n"
"help.text"
msgid "Creation of new windows"
-msgstr ""
+msgstr "Creación de ventanes nueves"
#. Dxuyy
#: sf_ui.xhp
@@ -13775,7 +16952,7 @@ msgctxt ""
"par_id541587914079744\n"
"help.text"
msgid "the title of the window"
-msgstr ""
+msgstr "el títulu de la ventana"
#. rdSGt
#: sf_ui.xhp
@@ -13784,7 +16961,7 @@ msgctxt ""
"par_id191587914134221\n"
"help.text"
msgid "for new documents, something like \"Untitled 1\""
-msgstr ""
+msgstr "pa los documentos nuevos, como «Ensin títulu 1»"
#. GrAxe
#: sf_ui.xhp
@@ -13811,7 +16988,7 @@ msgctxt ""
"hd_id541588520711430\n"
"help.text"
msgid "Document object"
-msgstr ""
+msgstr "Oxetu Document"
#. utsAW
#: sf_ui.xhp
@@ -13919,7 +17096,7 @@ msgctxt ""
"par_id658517913266754\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. Bjyuv
#: sf_ui.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/00.po b/source/ast/helpcontent2/source/text/scalc/00.po
index b7985f19549..260b716b0e9 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: 2021-02-05 18:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+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"
@@ -1177,13 +1177,13 @@ msgctxt ""
msgid "Window Menu"
msgstr "Menú Ventana"
-#. dH2aq
+#. ry53A
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "<variable id=\"fete\">Choose ><menuitem>View - Split Window</menuitem>.</variable>"
+msgid "<variable id=\"fete\">Choose <menuitem>View - Split Window</menuitem>.</variable>"
msgstr ""
#. dr9Aq
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 86d8769a631..3392090ae64 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/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: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1542028585.000000\n"
@@ -1034,14 +1034,14 @@ msgctxt ""
msgid "<emph>Filling cells using context menus:</emph>"
msgstr "<emph>Rellenar caxelles por aciu menúes contestuales:</emph>"
-#. hRJz3
+#. 2j5RS
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
-msgstr "Active el <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">menú contestual</link> de la caxella y apuerte a la entrada <emph>Llista de seleición</emph>."
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgstr ""
#. BzAsX
#: 02140000.xhp
@@ -19493,67 +19493,76 @@ msgctxt ""
msgid "The number 0 is returned for empty cells and matrix elements."
msgstr "Devuélvese'l númberu 0 pa les caxelles y los elementos de matriz baleros."
-#. Eg4Cg
+#. frvbX
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11827\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HIPERVÍNCULO(\"http://www.example.org\")</item> amuesa'l testu \"http://www.example.org\" na caxella y executa el hiperenllaz http://www.example.org al faer clic."
+msgid "<input>=HYPERLINK(\"http://www.example.org\")</input> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
-#. GThdD
+#. wHG7A
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182A\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HIPERVÍNCULO(\"http://www.example.org\";\"Clic equí \")</item> amuesa'l testu \"clic equí\" na caxella y executa el hiperenllaz http://www.example.org al faer clic."
+msgid "<input>=HYPERLINK(\"http://www.example.org\";\"Click here\")</input> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
-#. nBEGH
+#. jamR2
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id0907200912224534\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";12345)</item> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgid "<input>=HYPERLINK(\"http://www.example.org\";12345)</input> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
msgstr ""
-#. GFCwJ
+#. qLdBN
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182D\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
-msgstr "<item type=\"input\">=HIPERVÍNCULO($B4)</item> onde la caxella B4 contién <item type=\"input\">http://www.example.org</item>. La función amiesta http://www.example.org a la direición URL de la caxella del hiperenllaz y devuelve el mesmu testu que s'utiliza como resultáu de la fórmula."
+msgid "<input>=HYPERLINK($B4)</input> where cell B4 contains <literal>http://www.example.org</literal>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr ""
-#. viZae
+#. cWDrv
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11830\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HIPERVÍNCULO(\"http://www.\";\"Clic \") Y \"example.org\"</item> amuesa'l testu Clic example.org na caxella y executa el hiperenllaz http://www.example.org al faer clic."
+msgid "<input>=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</input> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
-#. bdxGj
+#. DDEtK
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id8859523\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
-msgstr "<item type=\"input\">=HIPERENLLAZ(\"#Fueya1.A1\";\"Dir enriba\")</item> amuesa'l testu Dir enriba y va a la caxella Fueya1.A1 d'esti documentu."
+msgid "<input>=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</input> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr ""
-#. kFDkB
+#. CoMEq
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id2958769\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
+msgid "<input>=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</input> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr ""
+
+#. Ky2xV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id321615667588042\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"file:///C:/Documents/\";\"Open Documents folder\")</input> displays the text \"Open Documents folder\" and shows the folder contents using the standard file manager in your operating system."
msgstr ""
#. ubKsF
@@ -45719,14 +45728,14 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
msgstr ""
-#. xvaTV
+#. YBufY
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_idN109D1\n"
"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
-msgstr "Nel <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"menú contestual\">menú contestual</link> puen escoyese los comandos pa crear un estilu nuevu, desaniciar dalgunu creáu pol usuariu o modificar l'estilu escoyíu."
+msgid "In the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr ""
#. zdEoY
#: 05100000.xhp
@@ -63260,22 +63269,22 @@ msgctxt ""
msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
msgstr ""
-#. 4Zi8d
+#. QaJCw
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556229012536\n"
"help.text"
-msgid "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
+msgid "<input>=TEXTJOIN(\" \"; 1; \"Here\"; \"comes\"; \"the\"; \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
msgstr ""
-#. SamHC
+#. 39FPP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556239012536\n"
"help.text"
-msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
+msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\";1;A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
msgstr ""
#. AXCJg
diff --git a/source/ast/helpcontent2/source/text/sdatabase.po b/source/ast/helpcontent2/source/text/sdatabase.po
index c9c62082ffe..cf004c82a4f 100644
--- a/source/ast/helpcontent2/source/text/sdatabase.po
+++ b/source/ast/helpcontent2/source/text/sdatabase.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2021-02-08 11:28+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-13 13:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
#. ugSgG
#: 02000000.xhp
@@ -2371,7 +2371,7 @@ msgctxt ""
"par_id3156092\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. p9WTn
#: 02010100.xhp
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id3152450\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#. BzBAa
#: 02010100.xhp
@@ -3039,13 +3039,13 @@ msgctxt ""
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sort and Filter Data\">Sort and Filter Data</link>"
msgstr ""
-#. ZEwwQ
+#. hNfEL
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3154288\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
msgstr ""
#. fAyEi
@@ -3795,6 +3795,465 @@ msgctxt ""
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/close\">Closes the dialog.</ahelp>"
msgstr ""
+#. n4gFz
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. sQwNc
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153323\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Relations</link>"
+msgstr ""
+
+#. GxBiD
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3146957\n"
+"help.text"
+msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
+msgstr ""
+
+#. YYXkm
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
+msgstr ""
+
+#. vMuED
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3154823\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
+msgstr ""
+
+#. zHWMJ
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3145316\n"
+"help.text"
+msgid "This function is only available if you are working with a relational database."
+msgstr ""
+
+#. 5MXvo
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
+msgstr ""
+
+#. krxTw
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3152812\n"
+"help.text"
+msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
+msgstr ""
+
+#. zZFEP
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
+msgstr ""
+
+#. uJVYH
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3148922\n"
+"help.text"
+msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
+msgstr ""
+
+#. ek2aE
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3148922\n"
+"help.text"
+msgid "Primary key and foreign keys"
+msgstr ""
+
+#. ksuDX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149168\n"
+"help.text"
+msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
+msgstr ""
+
+#. FACvb
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3147085\n"
+"help.text"
+msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
+msgstr ""
+
+#. vro8F
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153193\n"
+"help.text"
+msgid "Define relations"
+msgstr ""
+
+#. wmwWU
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3155430\n"
+"help.text"
+msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
+msgstr ""
+
+#. pGNLA
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155430\n"
+"help.text"
+msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
+msgstr ""
+
+#. EF2rg
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149984\n"
+"help.text"
+msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
+msgstr ""
+
+#. yTadX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3153093\n"
+"help.text"
+msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
+msgstr ""
+
+#. bnCjW
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155856\n"
+"help.text"
+msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
+msgstr ""
+
+#. zaiku
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. BAAZE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
+msgstr ""
+
+#. tDgC3
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "Relations"
+msgstr ""
+
+#. 5fAEp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3150499\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
+msgstr ""
+
+#. yHc9N
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155136\n"
+"help.text"
+msgid "The update and delete options are only available if they are supported by the database used."
+msgstr ""
+
+#. BDC5P
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3155341\n"
+"help.text"
+msgid "Tables"
+msgstr ""
+
+#. BAGsd
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153880\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
+msgstr ""
+
+#. 4UCC7
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154047\n"
+"help.text"
+msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
+msgstr ""
+
+#. VBeNf
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3153822\n"
+"help.text"
+msgid "Key fields"
+msgstr ""
+
+#. CnkB6
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
+msgstr ""
+
+#. tG7Wy
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
+msgstr ""
+
+#. ECqps
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145609\n"
+"help.text"
+msgid "Update options"
+msgstr ""
+
+#. TcZQE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "Here you can select options that take effect when there are changes to a primary key field."
+msgstr ""
+
+#. SNgAC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3149046\n"
+"help.text"
+msgid "No action"
+msgstr ""
+
+#. BQgh9
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3152360\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
+msgstr ""
+
+#. UzK5q
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "Updating cascade"
+msgstr ""
+
+#. GFtru
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154073\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
+msgstr ""
+
+#. xydLE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145171\n"
+"help.text"
+msgid "Set null"
+msgstr ""
+
+#. ksYnw
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
+msgstr ""
+
+#. FGxMC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "Set default"
+msgstr ""
+
+#. T7dEQ
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
+msgstr ""
+
+#. AvWBL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Delete options"
+msgstr ""
+
+#. ayyns
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "Here you can select options that take effect when a primary key field is deleted."
+msgstr ""
+
+#. jTCSL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3159252\n"
+"help.text"
+msgid "No action"
+msgstr ""
+
+#. PgDqt
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
+msgstr ""
+
+#. hFmB4
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3154146\n"
+"help.text"
+msgid "Delete cascade"
+msgstr ""
+
+#. ESpAp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155309\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
+msgstr ""
+
+#. ZaNTh
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153140\n"
+"help.text"
+msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
+msgstr ""
+
+#. mAu9C
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "Set null"
+msgstr ""
+
+#. dAtCx
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
+msgstr ""
+
+#. 474LG
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145272\n"
+"help.text"
+msgid "Set Default"
+msgstr ""
+
+#. ktJ6K
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154320\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
+msgstr ""
+
#. cLmBi
#: main.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 27b10e86b19..bd0c07e1d2f 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:58+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/textshared00/ast/>\n"
@@ -601,13 +601,13 @@ msgctxt ""
msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value.</variable>"
msgstr ""
-#. oSC8p
+#. ECspB
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3154145\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>).</variable>"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>).</variable>"
msgstr ""
#. JFGU9
@@ -2122,15 +2122,6 @@ msgctxt ""
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 ""
-#. AP8vJ
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_idN108F1\n"
-"help.text"
-msgid "Context Menu"
-msgstr "Menú contestual"
-
#. hfzNy
#: 00000005.xhp
msgctxt ""
@@ -7936,6 +7927,15 @@ msgctxt ""
msgid "Image"
msgstr ""
+#. 8ceGP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id671614345792991\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Frame - Floating Frame</menuitem>"
+msgstr ""
+
#. yAVgx
#: 00000404.xhp
msgctxt ""
@@ -7954,14 +7954,14 @@ msgctxt ""
msgid "On the <emph>Insert</emph> bar, click"
msgstr ""
-#. 5CBGw
+#. SEYKo
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3168607\n"
"help.text"
-msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Iconu</alt></image>"
+msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147482\">Icon</alt></image>"
+msgstr ""
#. 6RNey
#: 00000404.xhp
@@ -8125,13 +8125,13 @@ msgctxt ""
msgid "Stars"
msgstr "Estrelles"
-#. c6VE3
+#. GCpBe
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id81526422144005\n"
"help.text"
-msgid "Choose <emph>Insert - Signature Line...</emph>"
+msgid "Choose <emph>Insert - Signature Line</emph>"
msgstr ""
#. aFWLc
@@ -10654,6 +10654,15 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering</emph>."
msgstr ""
+#. GmdFv
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id761616160771224\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Bullets and Numbering</menuitem>."
+msgstr ""
+
#. N8NwQ
#: 00040500.xhp
msgctxt ""
@@ -10663,23 +10672,23 @@ msgctxt ""
msgid "On <emph>Formatting</emph> bar, click"
msgstr ""
-#. 4QWK9
+#. sQFWD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149445\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Icon bullet list</alt></image>"
+msgid "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Bullets and Numbering dialog Icon</alt></image>"
msgstr ""
-#. yavcV
+#. BPPZD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3157970\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Viñeta"
+msgid "Bullets and Numbering"
+msgstr ""
#. XAbBj
#: 00040500.xhp
@@ -10735,40 +10744,40 @@ msgctxt ""
msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
msgstr ""
-#. ZD5up
+#. n79tw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
msgstr ""
-#. 3g7gB
+#. tbLJG
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150862\n"
"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering - Numbering</menuitem> tab."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Ordered</menuitem> tab."
msgstr ""
-#. iTevh
+#. Rak4H
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3129011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
msgstr ""
-#. dAnx5
+#. 2XAFx
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146019\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
msgstr ""
#. 4AKhs
@@ -10780,49 +10789,40 @@ msgctxt ""
msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Image</emph> tab.</variable>"
msgstr ""
-#. G4FjC
+#. CwE3e
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155848\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Outline</menuitem> tab."
msgstr ""
-#. ifngA
+#. 8cr6F
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148733\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
-#. BQqBM
+#. gfMdA
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3154931\n"
+"par_id3156658\n"
"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
+msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. TDV7t
+#. DVZRw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
-msgstr ""
-
-#. gfMdA
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3156658\n"
-"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
msgstr ""
#. t8uTF
@@ -12535,13 +12535,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (drawing documents)."
msgstr ""
-#. ABvKj
+#. 3GEwT
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145365\n"
"help.text"
-msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (presentation documents)."
+msgid "Choose <menuitem>Format - Object and Shape - Area - Transparency</menuitem> tab (presentation documents)."
msgstr ""
#. KXq32
@@ -13093,49 +13093,49 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Style - Subscript</menuitem>."
msgstr ""
-#. ATNzQ
+#. GCxvv
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155377\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing</menuitem>."
+msgid "Choose <menuitem>Format - Spacing</menuitem>."
msgstr ""
-#. zWwjF
+#. AJWAM
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154475\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Single</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1</menuitem>."
msgstr ""
-#. GdBSL
+#. TKPgq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150478\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - 1.5 Lines</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1.5</menuitem>."
msgstr ""
-#. pNDFU
+#. nxrCX
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147167\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Double</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 2</menuitem>."
msgstr ""
-#. 4TwEA
+#. eLguF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146978\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Left</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Left</menuitem>."
msgstr ""
#. reirq
@@ -13165,13 +13165,13 @@ msgctxt ""
msgid "Align Left"
msgstr "Alliniáu a la izquierda"
-#. 4wBza
+#. mmjN6
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155823\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Right</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Right</menuitem>."
msgstr ""
#. 2MorN
@@ -13201,13 +13201,13 @@ msgctxt ""
msgid "Align Right"
msgstr "Alliniar a la derecha"
-#. ZvaaQ
+#. QVuAL
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149189\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Centered</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
msgstr ""
#. YutM3
@@ -13237,13 +13237,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
-#. FiPMC
+#. BAFc3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146151\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Justified</menuitem> (drawing functions)."
+msgid "Choose <menuitem>Format - Align Text - Justified</menuitem>."
msgstr ""
#. Mj8VD
@@ -13300,31 +13300,31 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Group</menuitem>."
msgstr ""
-#. 3AJkC
+#. 93FXg
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157985\n"
+"par_id3157980\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Group</menuitem>"
msgstr ""
-#. bdCDb
+#. dXNCq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157980\n"
+"par_id3157985\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Group</menuitem>"
msgstr ""
-#. RvPBU
+#. w3EVK
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149508\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Group - Group</menuitem> (form objects)."
+msgid "Open context menu - choose <menuitem>Group</menuitem> (for text box and shapes)."
msgstr ""
#. ibZAV
@@ -13345,22 +13345,22 @@ msgctxt ""
msgid "Group"
msgstr "Arrexuntar"
-#. GuQA3
+#. fQM7Y
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153023\n"
+"par_id3163378\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Ungroup</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem>."
msgstr ""
-#. WFDj3
+#. K7UZY
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163378\n"
+"par_id3153023\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Ungroup</menuitem>."
msgstr ""
#. 9k3ef
@@ -13390,22 +13390,22 @@ msgctxt ""
msgid "Ungroup"
msgstr "Desagrupar"
-#. cdsaS
+#. kPkDt
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153109\n"
+"par_id3145678\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Exit Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem>."
msgstr ""
-#. P2Xae
+#. fZQDA
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145678\n"
+"par_id3153109\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Exit Group</menuitem>."
msgstr ""
#. Bszjv
@@ -13435,22 +13435,22 @@ msgctxt ""
msgid "Exit Group"
msgstr "Salir del grupu"
-#. Cx3Zj
+#. iWdD3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3149129\n"
+"par_id3145354\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Enter Group</menuitem> (text documents, spreadsheets)."
+msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem>."
msgstr ""
-#. hn7Hv
+#. vuF7P
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145354\n"
+"par_id3149129\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem> (drawing documents)."
+msgid "Choose <menuitem>Format - Group - Enter Group</menuitem>."
msgstr ""
#. 4rTmw
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 0ba4b86022c..8f8b33cb66b 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: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-02-04 20:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-02-28 16:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
"Language: ast\n"
@@ -3067,13 +3067,13 @@ msgctxt ""
msgid "<bookmark_value>Export as; PDF</bookmark_value><bookmark_value>Export as; EPUB</bookmark_value>"
msgstr ""
-#. NDQi2
+#. C5uBC
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"hd_id751513634008094\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Export As</link>"
msgstr ""
#. yQFCE
@@ -3085,13 +3085,13 @@ msgctxt ""
msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats.</ahelp></variable>"
msgstr ""
-#. 84MXi
+#. MhcED
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"par_id971513634212601\n"
"help.text"
-msgid "Choose <emph>File - Export As...</emph> ."
+msgid "Choose <emph>File - Export As</emph>."
msgstr ""
#. 5EMoa
@@ -5623,13 +5623,13 @@ msgctxt ""
msgid "separated by"
msgstr ""
-#. qctV8
+#. MVCUS
#: 01160300.xhp
msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
+msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
msgstr ""
#. 949cB
@@ -14128,6 +14128,24 @@ msgctxt ""
msgid "When you click a character in the <emph>Special Characters</emph> dialog, a preview and the corresponding numerical code for the character is displayed."
msgstr ""
+#. AQsdj
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"hd_id451614794558893\n"
+"help.text"
+msgid "Search"
+msgstr ""
+
+#. JGCeA
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"par_id741614794572948\n"
+"help.text"
+msgid "Enter the UTF-8 name or part of the name of the character to display the UTF-8 character in the top left square of the grid. The name of the character cannot be translated. For example, enter <literal>tilde</literal> to display <literal>~</literal> and enter <literal>latin capital letter O with circumflex</literal> to display <literal>Ô</literal>."
+msgstr ""
+
#. d8FbY
#: 04100000.xhp
msgctxt ""
@@ -15424,33 +15442,6 @@ msgctxt ""
msgid "<emph>Small capitals</emph> - <variable id=\"smallcapitals\">Changes the selected lowercase characters to uppercase characters, and then reduces their size.</variable>"
msgstr ""
-#. kGuxJ
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"bm_id410168\n"
-"help.text"
-msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
-msgstr ""
-
-#. Suvvn
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3152941\n"
-"help.text"
-msgid "Blinking"
-msgstr ""
-
-#. 2FiCB
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"par_id3145662\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
-msgstr ""
-
#. B3MEb
#: 05020200.xhp
msgctxt ""
@@ -23857,13 +23848,13 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles deck of the Sidebar</link></caseinline><defaultinline>Styles deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
msgstr ""
-#. aXpX4
+#. MD7GR
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"tit\n"
"help.text"
-msgid "Aligning (Objects)"
+msgid "Align Objects"
msgstr ""
#. kVyf4
@@ -23875,13 +23866,13 @@ msgctxt ""
msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
msgstr ""
-#. a4NeC
+#. xAmKa
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"hd_id3149987\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
+msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Align Objects</link>"
msgstr ""
#. dFAkA
@@ -28042,13 +28033,13 @@ msgctxt ""
msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
msgstr ""
-#. awqBc
+#. UEuLi
#: 05220000.xhp
msgctxt ""
"05220000.xhp\n"
"hd_id3146856\n"
"help.text"
-msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text Attributes</link>"
+msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
msgstr ""
#. cBEMC
@@ -34603,14 +34594,14 @@ msgctxt ""
msgid "Text Attributes"
msgstr ""
-#. UEXgE
+#. dZtp3
#: 05990000.xhp
msgctxt ""
"05990000.xhp\n"
"hd_id3155757\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Testu\">Testu</link>"
+msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text Attributes</link>"
+msgstr ""
#. B2wiN
#: 05990000.xhp
@@ -37310,7 +37301,7 @@ msgctxt ""
"par_id3155273\n"
"help.text"
msgid "Automatically replaces double less-than and greater-than signs with double angle quotes « and » in several languages, and with single angle quotes ‹ and › in Swiss French."
-msgstr "Sustitúi automáticamente secuencies de signos de desigualdá matemática dobles (<lliteral><<</lliteral> y <lliteral>>></lliteral>) por comines angulares (« y ») en dellos idiomes, y por comines angulares simples (‹ y ›) en francés suizu."
+msgstr "Sustitúi automáticamente secuencies de signos de desigualdá matemática dobles (<literal><<</literal> y <literal>>></literal>) por comines angulares (« y ») en dellos idiomes, y por comines angulares simples (‹ y ›) en francés suizu."
#. YRQQD
#: 06040400.xhp
@@ -37897,13 +37888,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr ""
-#. sdTwy
+#. S7psX
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"par_id3150146\n"
"help.text"
-msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
+msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph or to selected paragraphs, and lets you edit format of the numbering or bullets.</ahelp></variable>"
msgstr ""
#. 7wAZT
@@ -37915,15 +37906,6 @@ msgctxt ""
msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
msgstr ""
-#. FXvcQ
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id911610939960192\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering\">Numbering</link>"
-msgstr ""
-
#. FUmyk
#: 06050000.xhp
msgctxt ""
@@ -38086,13 +38068,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Customize tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#. mFseS
+#. AQgFB
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"tit\n"
"help.text"
-msgid "Outline"
+msgid "Outline (Bullets and Numbering)"
msgstr ""
#. Tuc3B
@@ -38104,13 +38086,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
msgstr ""
-#. faDgM
+#. 2DJLS
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3146936\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different formats that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
msgstr ""
#. RDBrG
@@ -38122,13 +38104,13 @@ msgctxt ""
msgid "Selection"
msgstr "Esbilla"
-#. tG9L7
+#. PPdZD
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3155934\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline style that you want to use.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline format that you want to use.</ahelp>"
msgstr ""
#. WYun7
@@ -38167,13 +38149,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Image</link>"
msgstr ""
-#. g8rob
+#. YBPGk
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
"par_id0611200904373226\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
msgstr ""
#. yDHf2
@@ -38257,13 +38239,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Customize</link>"
msgstr ""
-#. KTDdy
+#. ptL6S
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147212\n"
"help.text"
-msgid "Sets the formatting options for numbered or bulleted lists. If you want, you can apply formatting to individual levels in the list hierarchy."
+msgid "Sets the formatting options for ordered or unordered lists. If you want, you can apply formatting to individual levels in the list hierarchy."
msgstr ""
#. pGwyV
@@ -38311,13 +38293,13 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. vcASB
+#. 2JWDd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147261\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering style for the selected levels.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering scheme for the selected levels.</ahelp>"
msgstr ""
#. mmh24
@@ -38509,13 +38491,13 @@ msgctxt ""
msgid "Bullet"
msgstr ""
-#. RqUuK
+#. ZiJYu
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145085\n"
"help.text"
-msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet style."
+msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet type."
msgstr ""
#. JBJEa
@@ -38572,22 +38554,22 @@ msgctxt ""
msgid "None"
msgstr ""
-#. ty7BH
+#. kcSkw
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3149167\n"
"help.text"
-msgid "Does not apply a numbering style."
+msgid "Does not apply a numbering scheme."
msgstr ""
-#. P7jbZ
+#. sANUk
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145746\n"
"help.text"
-msgid "The availability of the following fields depends on the style that you select in the <emph>Number</emph> box."
+msgid "The availability of the following fields depends on the numbering scheme that you select in the <emph>Number</emph> box."
msgstr ""
#. iqVUE
@@ -38617,13 +38599,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Character Style</caseinline></switchinline>"
msgstr ""
-#. zkHUZ
+#. DXsYK
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in an ordered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
msgstr ""
#. AXZAF
@@ -38635,13 +38617,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Show sublevels</caseinline></switchinline>"
msgstr ""
-#. tCS4j
+#. 3zFAs
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3152881\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">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\".</ahelp></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Enter the number of previous levels to include in the outline format. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering scheme, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
msgstr ""
#. 85gXU
@@ -38671,13 +38653,13 @@ msgctxt ""
msgid "After"
msgstr ""
-#. 9rGAH
+#. UM7wq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150288\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">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.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Enter a character or the text to display behind the number in the list. If you want to create a ordered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
msgstr ""
#. FWEse
@@ -38689,13 +38671,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Color</caseinline><caseinline select=\"DRAW\">Color</caseinline></switchinline>"
msgstr ""
-#. cV8eZ
+#. DDWVd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3156060\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering scheme.</ahelp></defaultinline></switchinline>"
msgstr ""
#. JQB8P
@@ -38851,31 +38833,31 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
msgstr ""
-#. CwwFP
+#. e5KXW
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"tit\n"
"help.text"
-msgid "Position (List Styles)"
+msgid "Position (Lists)"
msgstr ""
-#. YCPm7
+#. pbtfH
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"hd_id3150467\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
+msgid "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link></variable>"
msgstr ""
-#. 26wKr
+#. ZuAPU
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3158397\n"
"help.text"
-msgid "<variable id=\"positioninfo\">Sets the indent, spacing, and alignment options for the numbered or bulleted list.</variable>"
+msgid "<variable id=\"positioninfo\">Set indent, spacing, and alignment options for numbering symbols, such as numbers or bullets, to ordered and unordered lists.</variable>"
msgstr ""
#. itRYD
@@ -38887,13 +38869,13 @@ msgctxt ""
msgid "Level"
msgstr "Nivel"
-#. icEv9
+#. 2gVRo
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3155755\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select \"1-10\". In Chapter Numbering, only one level can be selected, or use \"1-10\" to apply the options, except Paragraph style, to all the levels."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select “1-10”."
msgstr ""
#. qAm3f
@@ -40795,13 +40777,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
msgstr ""
-#. 4xgpA
+#. J85qe
#: 06140200.xhp
msgctxt ""
"06140200.xhp\n"
"par_id3154682\n"
"help.text"
-msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
+msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications. To assign a key for all applications, choose the <emph>%PRODUCTNAME</emph> radio button in the top right corner."
msgstr ""
#. BjkTi
@@ -40822,6 +40804,15 @@ msgctxt ""
msgid "If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list. It is possible to assign the same function to more than one key."
msgstr ""
+#. a7WFE
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id341603939923441\n"
+"help.text"
+msgid "A shortcut key assigned to a particular application overrides the shortcut key setting made in %PRODUCTNAME for all applications."
+msgstr ""
+
#. Fi6Jn
#: 06140200.xhp
msgctxt ""
@@ -44629,13 +44620,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr ""
-#. W4vvs
+#. jHLBC
#: formatting_mark.xhp
msgctxt ""
"formatting_mark.xhp\n"
"hd_id3245643\n"
"help.text"
-msgid "No-width no break"
+msgid "Word Joiner"
msgstr ""
#. 4Ur7Y
@@ -47707,13 +47698,13 @@ msgctxt ""
msgid "Embedding Fonts"
msgstr ""
-#. MhNdc
+#. MMKaJ
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"bm_id3149955\n"
"help.text"
-msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
+msgid "<bookmark_value>embedding fonts in document file</bookmark_value><bookmark_value>documents; embedding fonts</bookmark_value><bookmark_value>font embedding; in documents</bookmark_value><bookmark_value>fonts; embedding</bookmark_value><bookmark_value>fonts; licensing for embedding</bookmark_value><bookmark_value>embedding; fonts</bookmark_value><bookmark_value>embedding licensed fonts</bookmark_value>"
msgstr ""
#. VdsXE
@@ -47734,13 +47725,13 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
msgstr ""
-#. JFNLj
+#. UnyFx
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"hd_id3149999\n"
"help.text"
-msgid "Fonts embedding"
+msgid "Font embedding"
msgstr ""
#. LM4Gn
@@ -47761,6 +47752,15 @@ msgctxt ""
msgid "Consider embedding fonts when your document use rare or custom fonts not generally available in other computers."
msgstr ""
+#. AcrZ8
+#: prop_font_embed.xhp
+msgctxt ""
+"prop_font_embed.xhp\n"
+"par_id191616163803305\n"
+"help.text"
+msgid "Font licenses may restrict embedding fonts in documents. Font files contain flags that indicate if and how they can be embedded within a document file. %PRODUCTNAME parses these flags and determines if and how it may be embedded in a document file, and when you open a document containing embedded fonts, it will also look at these flags to determine if and how a document can be viewed or edited."
+msgstr ""
+
#. iBvGV
#: ref_epub_export.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index 4b92d5955f0..4f513423be4 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-30 15:37+0100\n"
-"PO-Revision-Date: 2020-08-05 15:35+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-02-28 16:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -9006,7 +9006,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "SELECT * FROM Orders WHERE Customer_Number =: x (if you want the subform to show all data from the orders table)"
-msgstr "SELECT * FROM Pidíos WHERE Veceru_Nr =: x (si deseya qu'el subformulario amuese tolos datos procedentes de la tabla de pidíos)"
+msgstr "SELECT * FROM Pidíos WHERE Veceru_Nr =: x (si deseyes que'l subformulariu amuese tolos datos procedentes de la tabla de pidíos)"
#. Gs8Vq
#: 01170203.xhp
@@ -9024,7 +9024,7 @@ msgctxt ""
"par_id3153921\n"
"help.text"
msgid "SELECT Item FROM Orders WHERE Customer_Number =: x (if you want the subform from the orders table to show only the data contained in the \"Item\" field)"
-msgstr "SELECT Artículos FROM Pidíos WHERE Veceru_Nr =: x (si deseya qu'el subformulario amuese namái aquellos datos de la tabla de pidíos que tean incluyíos nel campu \"Artículos\")."
+msgstr "SELECT Artículos FROM Pidíos WHERE Veceru_Nr =: x (si deseya que'l subformulariu amuese namái aquellos datos de la tabla de pidíos que tean incluyíos nel campu «Artículos»)."
#. PGoEB
#: 01170203.xhp
@@ -11267,22 +11267,22 @@ msgctxt ""
msgid "Character Highlighting Color"
msgstr ""
-#. tExR8
+#. 5GRDP
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Character Highlighting Color</link>"
+msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlighting</link>"
msgstr ""
-#. y45WA
+#. 6EDWk
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlight color to the character style or text selection.</ahelp></variable>"
+msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlighting color to the <switchinline select=\"appl\"><caseinline select=\"WRITER\">character style or</caseinline></switchinline> text selection.</ahelp></variable>"
msgstr ""
#. KrAa6
@@ -11303,6 +11303,15 @@ msgctxt ""
msgid "When editing a character style, choose <emph>Highlighting</emph> tab."
msgstr ""
+#. 8NF47
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id481613812856744\n"
+"help.text"
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\">Formatting bar, Text Object bar or Character section of Properties Sidebar.</caseinline><defaultinline><emph>Text Formatting bar.</emph></defaultinline></switchinline>"
+msgstr ""
+
#. YETEY
#: 02160000.xhp
msgctxt ""
@@ -11357,13 +11366,13 @@ msgctxt ""
msgid "Select the text that you want to highlight."
msgstr ""
-#. 94UES
+#. AQAQh
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id851610983100948\n"
"help.text"
-msgid "Click the <emph>Character Highlighting Color</emph> icon on the <emph>Formatting</emph> bar."
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Formatting</emph> or <emph>Text Object</emph></caseinline><defaultinline><emph>Text Formatting</emph></defaultinline></switchinline> bar."
msgstr ""
#. bVPsm
@@ -11474,13 +11483,13 @@ msgctxt ""
msgid "Select the highlighted text."
msgstr "Escueya'l testu resaltáu."
-#. BTFWr
+#. yRMNb
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3149784\n"
"help.text"
-msgid "On the <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph>Text</emph></defaultinline></switchinline> <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
msgstr ""
#. yDDr8
@@ -12347,23 +12356,23 @@ msgctxt ""
msgid "Move Down"
msgstr "Mover escontra abaxo"
-#. qjHwq
+#. ZvBbZ
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"tit\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Activar o desactivar viñetes"
+msgid "Toggle Unordered List"
+msgstr ""
-#. 2pB5k
+#. CCrby
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Bullets On/Off</link>"
-msgstr "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Activar/desactivar viñetes</link>"
+msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Toggle Unordered List</link>"
+msgstr ""
#. GQ9yd
#: 06120000.xhp
@@ -12410,23 +12419,23 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text box and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
msgstr ""
-#. QCjAp
+#. X9H2x
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3150355\n"
"help.text"
-msgid "<image id=\"img_id3157909\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Iconu</alt></image>"
+msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon</alt></image>"
+msgstr ""
-#. iHX8u
+#. TEain
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3149233\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Activar o desactivar viñetes"
+msgid "Toggle Unordered List"
+msgstr ""
#. 6UAmF
#: 07010000.xhp
@@ -12824,14 +12833,41 @@ msgctxt ""
msgid "<variable id=\"hyperdiatext\"><ahelp hid=\".\">Opens a dialog that enables you to create and edit hyperlinks.</ahelp></variable>"
msgstr ""
-#. thKGB
+#. H5bDr
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id511616406933483\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Hyperlink</menuitem>."
+msgstr ""
+
+#. CFNbD
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id771616410590648\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Hyperlink</menuitem>, when the cursor is placed in a hyperlink."
+msgstr ""
+
+#. E6FB3
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id161616407054506\n"
+"help.text"
+msgid "On <link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\"><emph>Standard</emph></link> bar, click"
+msgstr ""
+
+#. MSjJA
#: 09070000.xhp
msgctxt ""
"09070000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3093440\">Icon</alt></image>"
-msgstr "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3093440\">Iconu</alt></image>"
+msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3093440\">Icon</alt></image>"
+msgstr ""
#. Dty7B
#: 09070000.xhp
@@ -13364,6 +13400,15 @@ msgctxt ""
msgid "Document"
msgstr "Documentu"
+#. 8Cn55
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"bm_id551615667308718\n"
+"help.text"
+msgid "<bookmark_value>hyperlinks;to files</bookmark_value> <bookmark_value>hyperlinks;to folders</bookmark_value>"
+msgstr ""
+
#. RCfpV
#: 09070300.xhp
msgctxt ""
@@ -13382,6 +13427,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a <emph>URL</emph> for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
msgstr ""
+#. taJit
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"par_id91615666930995\n"
+"help.text"
+msgid "If the URL refers to a <emph>folder</emph>, the standard file manager in your operating system opens showing the contents of the specified folder."
+msgstr ""
+
#. GQcJJ
#: 09070300.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/04.po b/source/ast/helpcontent2/source/text/shared/04.po
index 9d088acd074..10e3a946303 100644
--- a/source/ast/helpcontent2/source/text/shared/04.po
+++ b/source/ast/helpcontent2/source/text/shared/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-05 18:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2020-06-16 20:22+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared04/ast/>\n"
@@ -71,13 +71,13 @@ msgctxt ""
msgid "When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available."
msgstr "En realidá, en casi toles operaciones de l'aplicación pue escoyese ente utilizar el mur o'l tecláu."
-#. iE2uQ
+#. Q2ALG
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "Calling Menus With Shortcut Keys"
+msgid "Calling Menus with Mnemonics"
msgstr ""
#. Lv2Sv
diff --git a/source/ast/helpcontent2/source/text/shared/explorer/database.po b/source/ast/helpcontent2/source/text/shared/explorer/database.po
index 50a6645c97a..bd9861b49c9 100644
--- a/source/ast/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ast/helpcontent2/source/text/shared/explorer/database.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-01 17:02+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-01-22 16:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/ast/>\n"
@@ -16,465 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028595.000000\n"
-#. n4gFz
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "Rellaciones"
-
-#. Mdpfp
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153323\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">Relations</link>"
-msgstr "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Rellaciones\">Rellaciones</link>"
-
-#. GxBiD
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3146957\n"
-"help.text"
-msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>base de datos relacional (Base)</bookmark_value>"
-
-#. YYXkm
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3146957\n"
-"help.text"
-msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
-msgstr "Esti comandu abre la ventana <emph>Diseñu de relaciones</emph>, que dexa definir relaciones ente les diverses tables de la base de datos."
-
-#. vMuED
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3154823\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
-msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">Equí pue enllazar les tables de la base de datos actual por aciu los sos campos de datos comunes.</ahelp> Faiga clic nel iconu <emph>Rellación nueva</emph> pa crear les relaciones, o utilice'l mur p'abasnar y asitiar."
-
-#. zHWMJ
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3145316\n"
-"help.text"
-msgid "This function is only available if you are working with a relational database."
-msgstr "Esta función namái ta disponible si utilízase una base de datos relacional."
-
-#. 5MXvo
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
-msgstr ""
-
-#. krxTw
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3152812\n"
-"help.text"
-msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
-msgstr "Si ta abierta la ventana <emph>Diseñu de relaciones</emph>, nun puen modificar les tables escoyíes, nin siquier en mou de diseñu de tabla. Ye una forma de garantizar que les tables nun se modificar mientres l'establecimientu de relaciones."
-
-#. zZFEP
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3150541\n"
-"help.text"
-msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
-msgstr ""
-
-#. uJVYH
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3148922\n"
-"help.text"
-msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
-msgstr "<bookmark_value>claves principales;inxertar (Base)</bookmark_value><bookmark_value>claves;claves principales (Base)</bookmark_value><bookmark_value>claves esternes (Base)</bookmark_value>"
-
-#. ek2aE
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3148922\n"
-"help.text"
-msgid "Primary key and foreign keys"
-msgstr ""
-
-#. ksuDX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149168\n"
-"help.text"
-msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
-msgstr ""
-
-#. FACvb
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3147085\n"
-"help.text"
-msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
-msgstr "Los campos de datos a los que s'asignó una llave primaria identificar na ventana de la tabla col símbolu d'una llave."
-
-#. vro8F
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153193\n"
-"help.text"
-msgid "Define relations"
-msgstr "Definir relaciones"
-
-#. wmwWU
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3155430\n"
-"help.text"
-msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
-msgstr "<bookmark_value>relaciones;crear y desaniciar (Base)</bookmark_value>"
-
-#. pGNLA
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155430\n"
-"help.text"
-msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
-msgstr ""
-
-#. McRUh
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149984\n"
-"help.text"
-msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr "Otra posibilidá ye calcar nel símbolu <emph>Rellación nueva</emph> asitiáu na parte cimera de la ventana y definir la rellación ente los dos tables nel diálogu <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>Relaciones</emph></link>."
-
-#. yTadX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3153093\n"
-"help.text"
-msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
-msgstr ""
-
-#. bnCjW
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155856\n"
-"help.text"
-msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
-msgstr "Si efeutúa una doble pulsación nuna de les llinies de conexón va poder asignar propiedaes específiques a la rellación. Ábrese'l diálogu <emph>Relaciones</emph>."
-
-#. zaiku
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "Rellaciones"
-
-#. BAAZE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
-msgstr "<bookmark_value>rellaciones;propiedaes (Base)</bookmark_value><bookmark_value>campos de claves pa rellaciones (Base)</bookmark_value><bookmark_value>anovar en cascada (Base)</bookmark_value>"
-
-#. tDgC3
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "Relations"
-msgstr "Rellaciones"
-
-#. 5fAEp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3150499\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
-msgstr "<ahelp hid=\".uno:DBAddRelation\">Dexa definir y editar una rellación ente dos tables.</ahelp>"
-
-#. yHc9N
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155136\n"
-"help.text"
-msgid "The update and delete options are only available if they are supported by the database used."
-msgstr "Les opciones d'anovación y borráu namái tán disponibles si son compatibles cola base de datos utilizada."
-
-#. BDC5P
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3155341\n"
-"help.text"
-msgid "Tables"
-msgstr "Tables"
-
-#. BAGsd
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153880\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">Amuesa dos tables que guarden una rellación ente sigo.</ahelp> Al crear una nueva rellación, ye posible escoyer una tabla a partir de los dos campos combinaos que s'atopen na parte cimera del diálogu."
-
-#. 4UCC7
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154047\n"
-"help.text"
-msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
-msgstr "Si calca dos vegaes nuna llinia de conexón de la ventana Rellaciones p'abrir el diálogu <emph>Relaciones</emph>, les tables implicaes na rellación nun van poder modificar."
-
-#. VBeNf
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3153822\n"
-"help.text"
-msgid "Key fields"
-msgstr "Campos de llave"
-
-#. CnkB6
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3159157\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Define los campos de claves pa la rellación.</ahelp>"
-
-#. tG7Wy
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">Los nomes de les tables escoyíes pal enllaz apaecen en forma de nomes de columna.</ahelp> Si fai clic nun campu va poder utilizar los botones de flecha pa escoyer un campu de la tabla. Caúna de les relaciones apaez detallada nuna filera."
-
-#. ECqps
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145609\n"
-"help.text"
-msgid "Update options"
-msgstr "Opciones d'anovación"
-
-#. TcZQE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153061\n"
-"help.text"
-msgid "Here you can select options that take effect when there are changes to a primary key field."
-msgstr "Equí pue escoyer opciones que surten efeutu si hai cambeos nun campu de llave primariu."
-
-#. SNgAC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3149046\n"
-"help.text"
-msgid "No action"
-msgstr "Nenguna aición"
-
-#. BQgh9
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3152360\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Especifica que los cambeos efeutuaos nuna clave principal nun afecten a otros campos de claves esternos.</ahelp>"
-
-#. UzK5q
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3148664\n"
-"help.text"
-msgid "Updating cascade"
-msgstr "Anovar cascada"
-
-#. GFtru
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154073\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Escueya esta opción p'anovar tolos campos de clave esternos si modifícase'l valor de la clave principal correspondiente (anovación en cascada).</ahelp>"
-
-#. xydLE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145171\n"
-"help.text"
-msgid "Set null"
-msgstr "Poner cero"
-
-#. ksYnw
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154123\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\">Si modificóse la clave principal correspondiente, emplegue esta opción pa definir el valor \"Ye nulu\" pa tolos campos de claves esternos. \"Ye nulu\" significa que'l campu ta baleru.</ahelp>"
-
-#. FGxMC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150448\n"
-"help.text"
-msgid "Set default"
-msgstr "Predeterminar"
-
-#. T7dEQ
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3151041\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> Si modificóse la clave principal correspondiente, emplegue esta opción pa definir un valor predetermináu pa tolos campos de claves esternos.</ahelp> Mientres la creación de la tabla correspondiente, defínese'l valor predetermináu d'un campu de clave esternu cuando s'asignen les propiedaes de campu."
-
-#. AvWBL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3125863\n"
-"help.text"
-msgid "Delete options"
-msgstr "Opciones d'eliminación"
-
-#. ayyns
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153193\n"
-"help.text"
-msgid "Here you can select options that take effect when a primary key field is deleted."
-msgstr "Equí pue escoyer opciones que surten efeutu cuando se desaniciar un campu de llave primariu."
-
-#. jTCSL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3159252\n"
-"help.text"
-msgid "No action"
-msgstr "Nenguna aición"
-
-#. PgDqt
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3145785\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Especifica que'l borráu d'una clave principal nun tenga nengún efeutu sobre otros campos de claves esternos.</ahelp>"
-
-#. hFmB4
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3154146\n"
-"help.text"
-msgid "Delete cascade"
-msgstr "Desaniciar cascada"
-
-#. ESpAp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155309\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Especifica que tolos campos de claves esternos van desaniciase si desanicia'l campu de clave principal correspondiente.</ahelp>"
-
-#. ZaNTh
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153140\n"
-"help.text"
-msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
-msgstr "Al desaniciar un campu de llave primariu cola opción <emph>Desaniciar cascada</emph>, tolos rexistros d'otres tables con esta llave como llave esterna van desaniciase tamién. Utilice esta opción con cuidu; ye posible que se desaniciar una parte importante de la base de datos."
-
-#. mAu9C
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3152596\n"
-"help.text"
-msgid "Set null"
-msgstr "Poner cero"
-
-#. dAtCx
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153363\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">Si desanicia la clave principal correspondiente, el valor \"Ye nulu\" va asignar a tolos campos de claves esternos.</ahelp>"
-
-#. 474LG
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145272\n"
-"help.text"
-msgid "Set Default"
-msgstr "Predeterminar"
-
-#. ktJ6K
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154320\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">Si desanicia la clave principal correspondiente, va asignase un valor específicu a tolos campos de claves esternos.</ahelp>"
-
#. x8A6E
#: 05030000.xhp
msgctxt ""
@@ -3769,15 +3310,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Configurar conexón de ADO</link>"
-#. V9baD
-#: dabawiz00.xhp
-msgctxt ""
-"dabawiz00.xhp\n"
-"par_idN10610\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
-msgstr "+<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Configurar conexón de LDAP</link>"
-
#. bbTEe
#: dabawiz00.xhp
msgctxt ""
@@ -4795,132 +4327,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
msgstr "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Asistente pa bases de datos</link>"
-#. XLfeM
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"tit\n"
-"help.text"
-msgid "LDAP Connection"
-msgstr "Conexón de LDAP"
-
-#. E4K9F
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"bm_id22583\n"
-"help.text"
-msgid "<bookmark_value>LDAP server; address books (Base)</bookmark_value><bookmark_value>address books; LDAP server (Base)</bookmark_value><bookmark_value>data sources; LDAP server (Base)</bookmark_value>"
-msgstr "<bookmark_value>sirvidor LDAP;libretas de direiciones (Base)</bookmark_value><bookmark_value>libretas de direiciones;sirvidor LDAP (Base)</bookmark_value><bookmark_value>oríxenes de datos;sirvidor LDAP (Base)</bookmark_value>"
-
-#. HDgwj
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "<variable id=\"ldap\"><link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">LDAP Connection</link></variable>"
-msgstr "<variable id=\"ldap\"><link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Conexón LDAP</link></variable>"
-
-#. Xdbya
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database using LDAP</ahelp> (<emph>Lightweight Directory Access Protocol)</emph>. This page is only available if you registered an LDAP server as an address database."
-msgstr "<ahelp hid=\".\">Especifica la configuración pa importar una base de datos utilizando LDAP</ahelp> (<emph>Lightweight Directory Access Protocol)</emph>. Esta páxina namái ta disponible si rexistróse un sirvidor LDAP como base de datos de direiciones."
-
-#. ZMeDx
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "Server URL"
-msgstr "URL del sirvidor"
-
-#. ScRnC
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_HOSTNAME\">Enter the name of the LDAP server using the format \"ldap.server.com\".</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_HOSTNAME\">Escriba'l nome del sirvidor LDAP utilizando'l formatu \"ldap.server.com\".</ahelp>"
-
-#. WRJRs
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Base DN"
-msgstr "Base DN"
-
-#. kFVmv
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10598\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Enter the starting point to search the LDAP database, for example, \"dc=com\".</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Escriba'l puntu inicial pa guetar na base de datos LDAP, por exemplu, \"dc=com\".</ahelp>"
-
-#. AKFCR
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Port number"
-msgstr "Númberu de puertu"
-
-#. 9Bhwf
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_PORTNUMBER\">Enter the port of the LDAP server, normally 389.</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_PORTNUMBER\">Escriba'l puertu del sirvidor LDAP, que suel ser 389.</ahelp>"
-
-#. 8FGvh
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CA\n"
-"help.text"
-msgid "Use secure connection (SSL)"
-msgstr "Usar conexón segura (SSL)"
-
-#. REnMu
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CE\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_USESSL_LDAP\">Creates a secure connection to the LDAP server through the Secure Sockets Layer (SSL).</ahelp> By default, an SSL connection uses port 636. A regular connection uses port 389."
-msgstr "<ahelp hid=\"HID_DSADMIN_USESSL_LDAP\">Crea una conexón segura col sirvidor LDAP por aciu Secure Sockets Layer (SSL).</ahelp> De mou predetermináu, una conexón SSL utiliza'l puertu 636. Una conexón regular utiliza'l puertu 389."
-
-#. PXBAE
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105DE\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz03auth.xhp\">Authentication</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz03auth.xhp\">Autenticación</link>"
-
-#. EkPas
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105F5\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Asistente pa bases de datos</link>"
-
#. Y4EFA
#: dabawiz02mysql.xhp
msgctxt ""
@@ -6640,14 +6046,14 @@ msgctxt ""
msgid "Relationships"
msgstr "Relaciones"
-#. agJkV
+#. DKgXb
#: menutools.xhp
msgctxt ""
"menutools.xhp\n"
"par_idN10576\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/explorer/database/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre la vista <link href=\"text/shared/explorer/database/05020000.xhp\">Diseñu de relaciones</link> y comprueba si la conexón de la base de datos almite relaciones.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/sdatabase/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
+msgstr ""
#. B2YV6
#: menutools.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 46998a62d11..295f5188d68 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-15 15:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-05 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ast/>\n"
"Language: ast\n"
@@ -4874,7 +4874,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "CorelDRAW"
-msgstr ""
+msgstr "CorelDRAW"
#. rTQKQ
#: convertfilters.xhp
@@ -8161,13 +8161,13 @@ msgctxt ""
msgid "Tables"
msgstr "Tables"
-#. k3n7x
+#. Gcdea
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3163713\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/shared/explorer/database/05020000.xhp\" name=\"relations\">relations</link>"
+msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/sdatabase/05020000.xhp\" name=\"relations\">relations</link>"
msgstr ""
#. AENyR
@@ -18619,68 +18619,77 @@ msgctxt ""
msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
msgstr "Numberación y viñetes de párrafu namái s'almite en Writer, Impress y Draw."
-#. 4DAtN
+#. LnEF2
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id3147618\n"
+"help.text"
+msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>No List</emph> icon in the <emph>Formatting</emph> bar. The list indenting is also removed."
+msgstr ""
+
+#. R49Gn
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3154288\n"
"help.text"
-msgid "<image id=\"img_id3153527\" src=\"cmd/sc_removebullets.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153527\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153527\" src=\"cmd/sc_removebullets.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153527\">Iconu</alt></image>"
+msgid "<image id=\"img_id3153527\" src=\"cmd/lc_removebullets.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153527\">No List icon</alt></image>"
+msgstr ""
-#. zSuGJ
+#. nFCu3
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3150443\n"
+"par_id151614326512513\n"
"help.text"
-msgid "<image id=\"img_id3163802\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3163802\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3163802\">Iconu</alt></image>"
+msgid "No List icon"
+msgstr ""
-#. it4t7
+#. Uzqm6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3147618\n"
+"par_id3144511\n"
"help.text"
-msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>Numbering Off</emph> icon in the <emph>Bullets and Numbering</emph> bar."
-msgstr "Ye posible desactivar la numberación o les viñetes del párrafu actual o los párrafos escoyíos. Faiga clic nel iconu <emph>Desactivar numberación</emph> de la barra <emph>Numberación y viñetes</emph>."
+msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Toggle Unordered List</emph> icon on the <emph>Text Formatting</emph> bar."
+msgstr ""
-#. CcCTx
+#. XLYd6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3155449\n"
"help.text"
-msgid "<image id=\"img_id3158432\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3158432\">Icon</alt></image>"
-msgstr "<image id=\"img_id3158432\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3158432\">Iconu</alt></image>"
+msgid "<image id=\"img_id3158432\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3158432\">Icon</alt></image>"
+msgstr ""
-#. biscq
+#. ikjGP
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3144511\n"
+"par_id781614327726646\n"
"help.text"
-msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Bullets On/Off </emph>icon on the <emph>Text Formatting</emph> bar."
-msgstr "Si'l cursor atopar nuna llista numberada o con viñetes, pue desactivar la numberación o les viñetes automátiques pal párrafu actual o los párrafos escoyíos faciendo clic nel iconu <emph>Activar/desactivar viñetes</emph> de la barra <emph>Formatu de testu</emph>."
+msgid "Toggle Unordered List icon"
+msgstr ""
-#. CfCjc
+#. RE37f
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148946\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To remove numbering from a paragraph using the keyboard: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Pa desaniciar la numberación d'un párrafu por aciu el tecláu: </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> To remove a number or bullet from a paragraph while preserving the list indenting: </caseinline></switchinline>"
+msgstr ""
-#. qETFj
+#. EsxZF
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148663\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a numbered paragraph and press the Backspace key. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Coloque'l cursor al entamu d'un párrafu numberáu y calque la tecla Retrocesu. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a paragraph in a list and press the <keycode>Backspace</keycode> key. </caseinline></switchinline>"
+msgstr ""
#. TY7jM
#: numbering_stop.xhp
@@ -18691,6 +18700,15 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The numbering of the paragraph disappears and is removed from the numbering sequence. Numbering resumes in the following paragraph. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">La numberación del párrafu sume y desaníciase de la secuencia de numberación. La numberación sigue nel párrafu siguiente. </caseinline></switchinline>"
+#. B8akd
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id911614326873271\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> at the beginning of a list paragraph to return the number or bullet."
+msgstr ""
+
#. FrmUz
#: numbering_stop.xhp
msgctxt ""
@@ -23326,13 +23344,13 @@ msgctxt ""
msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr ""
-#. ir37U
+#. RYx7a
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id781554408625219\n"
"help.text"
-msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion."
+msgid "<variable id=\"seefilters\">See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion.</variable>"
msgstr ""
#. EiUnD
@@ -23929,13 +23947,13 @@ msgctxt ""
msgid "If you want to change the settings of your default tab stops, you will find further information under <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Text Document - General\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - General\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Drawing - General\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(module name) - General</defaultinline></switchinline> in the Options dialog box."
msgstr "Si deseya camudar la configuración de los altos de tabulación predeterminaos, va atopar información adicional al respective en <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Documentos de testu - General\">%PRODUCTNAME Writer - Xeneral</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Fueyes de cálculu - General\">%PRODUCTNAME Calc - Xeneral</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Dibuxos - Xeneral\">%PRODUCTNAME Draw - Xeneral</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentaciones - General\">%PRODUCTNAME Impress - Xeneral</link></caseinline><defaultinline>(nome del módulu) - Xeneral</defaultinline></switchinline> nel cuadru de diálogu \"Opciones\"."
-#. hqPQR
+#. hA4kf
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3146972\n"
"help.text"
-msgid "The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
+msgid "The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
msgstr ""
#. ojDwN
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index bd440fdb55d..03847d9a29e 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-02-04 20:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-05 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ast/>\n"
"Language: ast\n"
@@ -5279,7 +5279,7 @@ msgctxt ""
"par_idN10687\n"
"help.text"
msgid "Macro security"
-msgstr "Seguridá de macros"
+msgstr "Seguranza de macros"
#. 2rHSt
#: 01030300.xhp
@@ -5297,7 +5297,7 @@ msgctxt ""
"par_idN1068E\n"
"help.text"
msgid "Macro Security"
-msgstr "Seguridá de macros"
+msgstr "Seguranza de macros"
#. ch6a2
#: 01030300.xhp
@@ -5333,7 +5333,7 @@ msgctxt ""
"par_idN1068E0\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Certificáu"
#. FRqVV
#: 01030300.xhp
@@ -6145,23 +6145,23 @@ msgctxt ""
msgid "List"
msgstr "Llista"
-#. AcAJa
+#. sEbwG
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3144433\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the fonts for lists and numbering and all derived styles.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the font and font size for the <emph>List</emph> paragraph style, which is inherited by all derived paragraph styles.</ahelp>"
msgstr ""
-#. KnLN9
+#. aQFY4
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><emph>Format - Numbering/Bullets</emph></link></caseinline><defaultinline><emph>Format - Numbering/Bullets</emph></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
-msgstr "Cuando s'escueye <switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Formatu - Numberación/Viñetes\"><emph>Formatu - Numberación/Viñetes</emph></link></caseinline> <defaultinline><emph>Formatu - Numberación/Viñetes</emph></defaultinline> </switchinline> pa dar formatu a un párrafu con númberos o viñetes, el programa asigna dichos estilos de párrafu de forma automática."
+msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><menuitem>Format - Bullets and Numbering</menuitem></link></caseinline><defaultinline><menuitem>Format - Bullets and Numbering</menuitem></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
+msgstr ""
#. 3nSZ5
#: 01040300.xhp
@@ -6235,13 +6235,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Specifies print settings within a text or HTML document.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Especifica parámetros d'impresión dientro d'un testu o documentu HTML.</ahelp>"
-#. m2BYE
+#. rwhVS
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"par_id3153542\n"
"help.text"
-msgid "The print settings defined on this tab page apply to all subsequent print jobs, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
+msgid "The print settings defined on this tab page apply to subsequent new documents, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
msgstr ""
#. kHkS3
@@ -13766,7 +13766,7 @@ msgctxt ""
"par_id0125201009445727\n"
"help.text"
msgid "The \"Default\" entry selects the language of the user interface for the operating system. If this language is not available in the %PRODUCTNAME installation, the language of the %PRODUCTNAME installation is the default language."
-msgstr "L'elementu \"Predetermináu\" escueye'l mesmu idioma pa la interfaz del usuariu qu'el del sistema operativu. Si esti idioma nun ye unu de los disponibles na instalación de %PRODUCTNAME, l'idioma predetermináu va ser el de la instalación de %PRODUCTNAME."
+msgstr "L'elementu «Predetermináu» escueye'l mesmu idioma pa la interfaz del usuariu que'l del sistema operativu. Si esti idioma nun ye unu de los disponibles na instalación de %PRODUCTNAME, l'idioma predetermináu va ser el de la instalación de %PRODUCTNAME."
#. 3BKVK
#: 01140000.xhp
@@ -15919,6 +15919,15 @@ msgctxt ""
msgid "Java options"
msgstr "Opciones de Java"
+#. BYguG
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id181614855578590\n"
+"help.text"
+msgid "The current list of %PRODUCTNAME modules and resources that depends on Java is available <link href=\"https://wiki.documentfoundation.org/Faq/General/015\" name=\"Java wiki\">in the wiki</link>."
+msgstr ""
+
#. J8Yfv
#: java.xhp
msgctxt ""
@@ -15937,6 +15946,15 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optadvancedpage/javaenabled\">Allows you to run Java applications in %PRODUCTNAME.</ahelp> When a Java application attempts to access your hard drive, a prompt opens."
msgstr "<ahelp hid=\"cui/ui/optadvancedpage/javaenabled\">Déxa-y executar aplicaciones de Java en %PRODUCTNAME.</ahelp> Cuando una aplicación de Java intenta aportar al so discu ríxidu, solicítase-y una confirmación."
+#. JLKwC
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id881614855922649\n"
+"help.text"
+msgid "Make sure to install a JRE compatible with the %PRODUCTNAME architecture: 64-bit JRE for 64-bit %PRODUCTNAME and 32-bit JRE for 32-bit %PRODUCTNAME."
+msgstr ""
+
#. BBqDy
#: java.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/simpress.po b/source/ast/helpcontent2/source/text/simpress.po
index 7b8c1699300..bd71d39727f 100644
--- a/source/ast/helpcontent2/source/text/simpress.po
+++ b/source/ast/helpcontent2/source/text/simpress.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2020-02-10 17:44+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress/ast/>\n"
@@ -1555,6 +1555,24 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr ""
+#. vmbqC
+#: main_format.xhp
+msgctxt ""
+"main_format.xhp\n"
+"hd_id451615217475502\n"
+"help.text"
+msgid "Styles"
+msgstr ""
+
+#. bpU6u
+#: main_format.xhp
+msgctxt ""
+"main_format.xhp\n"
+"par_id41615217505414\n"
+"help.text"
+msgid "Shows commands to edit, update, create, and manage styles."
+msgstr ""
+
#. CJJ22
#: main_format.xhp
msgctxt ""
@@ -1582,58 +1600,40 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numberación/viñetes\">Numberación y viñetes</link>"
-#. TVJ8F
+#. LnFgm
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149499\n"
+"hd_id801615217485302\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Object and Shape</link>"
+msgid "Table"
msgstr ""
-#. XrW2e
-#: main_format.xhp
-msgctxt ""
-"main_format.xhp\n"
-"hd_id3154510\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Llinia\">Llinia</link>"
-
-#. wt8hF
+#. ZH8Cz
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149021\n"
+"par_id61615217563797\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
+msgid "Shows commands to format, edit, and delete a table and its elements."
msgstr ""
-#. VkWBC
+#. iZgpC
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3155961\n"
+"hd_id401615217493429\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Testu\">Testu</link>"
-
-#. nGRHD
-#: main_format.xhp
-msgctxt ""
-"main_format.xhp\n"
-"hd_id3156286\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
+msgid "Image"
msgstr ""
-#. MwAqP
+#. RNZjn
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3163827\n"
+"par_id901615217674598\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
+msgid "Shows commands to crop, edit, and manage images."
msgstr ""
#. F98f9
@@ -1663,22 +1663,391 @@ msgctxt ""
msgid "This menu provides slide management and navigation commands."
msgstr ""
-#. qN8UF
+#. XaqGZ
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id611615489755701\n"
+"help.text"
+msgid "Duplicate Slide"
+msgstr ""
+
+#. uJcAM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id71615490370664\n"
+"help.text"
+msgid "Creates a copy of the currently selected slide."
+msgstr ""
+
+#. Jtf2o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id631615489785082\n"
+"help.text"
+msgid "Delete Slide"
+msgstr ""
+
+#. FAJJ6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491193340\n"
+"help.text"
+msgid "Deletes the selected slide(s)."
+msgstr ""
+
+#. iZWVK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id721615489786162\n"
+"help.text"
+msgid "Save Background Image"
+msgstr ""
+
+#. 8ydAh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491449943\n"
+"help.text"
+msgid "If the slide has a background image, this option allows the user to save the corresponding background image file."
+msgstr ""
+
+#. Bhh37
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id161615489786339\n"
+"help.text"
+msgid "Set Background Image"
+msgstr ""
+
+#. ekbFN
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id3145801\n"
+"par_id781615491497404\n"
"help.text"
-msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
+msgid "Opens a File Picker to choose an image file to be set as the background of the current slide."
msgstr ""
-#. BkUdP
+#. 92Pku
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id551556824896520\n"
+"hd_id921615489787123\n"
"help.text"
-msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
+msgid "New Master"
+msgstr ""
+
+#. kPJER
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id131615493790751\n"
+"help.text"
+msgid "Creates a new Master Slide. This function is only available in <emph>Master View</emph>."
+msgstr ""
+
+#. Vwom7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id491615494190854\n"
+"help.text"
+msgid "To enter the Master View, go to <emph>View - Master Slide</emph>. To exit the Master View, go to <emph>View - Normal</emph>."
+msgstr ""
+
+#. HQQHh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id421615489787299\n"
+"help.text"
+msgid "Delete Master"
+msgstr ""
+
+#. EBxxM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id661615494028415\n"
+"help.text"
+msgid "Deletes the currently selected Master Slide. This function is only available in <emph>Master View</emph>"
+msgstr ""
+
+#. hXNB7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id841615489787538\n"
+"help.text"
+msgid "Master Background"
+msgstr ""
+
+#. Kf3CF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id921615494351365\n"
+"help.text"
+msgid "This option allows to show or hide the background image defined in the master slide."
+msgstr ""
+
+#. 9GSWp
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id621615489788132\n"
+"help.text"
+msgid "Master Objects"
+msgstr ""
+
+#. wjDcS
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id541615494644223\n"
+"help.text"
+msgid "This option allows to show or hide objects defined in the master slide."
+msgstr ""
+
+#. BVTEY
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id51615489788356\n"
+"help.text"
+msgid "Master Elements"
+msgstr ""
+
+#. GaTGo
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id111615494747246\n"
+"help.text"
+msgid "Displays a dialog box where the following elements from the master slide can be enabled or disabled:"
+msgstr ""
+
+#. fvE2V
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id41615494861841\n"
+"help.text"
+msgid "Header"
+msgstr ""
+
+#. xcmiq
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615494881187\n"
+"help.text"
+msgid "Date/Time"
+msgstr ""
+
+#. kfNdX
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id721615494891164\n"
+"help.text"
+msgid "Footer"
+msgstr ""
+
+#. LLGmD
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id401615494904662\n"
+"help.text"
+msgid "Slide Number"
+msgstr ""
+
+#. sYXNP
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id851615489788586\n"
+"help.text"
+msgid "Show Slide"
+msgstr ""
+
+#. 6hQEB
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495037553\n"
+"help.text"
+msgid "If a slide is hidden, this function makes it visible again."
+msgstr ""
+
+#. FFLV4
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id201615489788874\n"
+"help.text"
+msgid "Hide Slide"
+msgstr ""
+
+#. jdiSK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id961615495104794\n"
+"help.text"
+msgid "If a slide is visible, this function hides it."
+msgstr ""
+
+#. nV23n
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id121615489789140\n"
+"help.text"
+msgid "Rename Slide"
+msgstr ""
+
+#. GpHBE
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id901615495187958\n"
+"help.text"
+msgid "Opens a dialog box where a name can be set for the current slide."
+msgstr ""
+
+#. D6GtH
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id551615489789347\n"
+"help.text"
+msgid "Jump to Last Edited Slide"
+msgstr ""
+
+#. Snoa6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id741615495336473\n"
+"help.text"
+msgid "Navigates to the last edited slide in the document."
+msgstr ""
+
+#. FA3Ra
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id641615489789548\n"
+"help.text"
+msgid "Move"
+msgstr ""
+
+#. GBPvF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id371615495363225\n"
+"help.text"
+msgid "Shows a list of move operations that can be applied to the current slide:"
+msgstr ""
+
+#. TF4iz
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id711615495448201\n"
+"help.text"
+msgid "<emph>Slide to Start:</emph> Moves the current slide to the first position."
+msgstr ""
+
+#. uAt25
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id101615495452464\n"
+"help.text"
+msgid "<emph>Slide Up:</emph> Moves the current slide one position up in the presentation."
+msgstr ""
+
+#. PdEMy
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id761615495456499\n"
+"help.text"
+msgid "<emph>Slide Down:</emph> Moves the current slide one position down in the presentation."
+msgstr ""
+
+#. ESDFM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495459372\n"
+"help.text"
+msgid "<emph>Slide to End:</emph> Moves the current slide to the last position."
+msgstr ""
+
+#. AsscG
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id301615489789755\n"
+"help.text"
+msgid "Navigate"
+msgstr ""
+
+#. 62VZA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558050553\n"
+"help.text"
+msgid "Shows a list of functions that can be used to navigate through the slides:"
+msgstr ""
+
+#. Mdi6Y
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id381615558169403\n"
+"help.text"
+msgid "<emph>To First Slide:</emph> Selects the first slide in the presentation."
+msgstr ""
+
+#. bYEak
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id131615558173437\n"
+"help.text"
+msgid "<emph>To Previous Slide:</emph> Navigates to the previous slide with respect to the currently selected slide."
+msgstr ""
+
+#. YXD3o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558176178\n"
+"help.text"
+msgid "<emph>To Next Slide:</emph> Navigates to the next slide with respect to the currently selected slide."
+msgstr ""
+
+#. dspAA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id91615558179041\n"
+"help.text"
+msgid "<emph>To Last Slide:</emph> Selects the last slide in the presentation."
msgstr ""
#. rCA2e
@@ -1734,3 +2103,30 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
+
+#. oAFfK
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object and Shape (Impress)"
+msgstr ""
+
+#. RHunz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"hd_id231615117568430\n"
+"help.text"
+msgid "<link href=\"text/simpress/submenu_object_shape.xhp\" name=\"Object and Shape\">Object and Shape</link>"
+msgstr ""
+
+#. HZBpz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"par_id111615131426235\n"
+"help.text"
+msgid "Opens a submenu to edit the properties of the selected object or shape."
+msgstr ""
diff --git a/source/ast/helpcontent2/source/text/simpress/00.po b/source/ast/helpcontent2/source/text/simpress/00.po
index 36dfd28470a..aa412b2d43f 100644
--- a/source/ast/helpcontent2/source/text/simpress/00.po
+++ b/source/ast/helpcontent2/source/text/simpress/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-03 12:43+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2020-08-15 14:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress00/ast/>\n"
@@ -1420,13 +1420,13 @@ msgctxt ""
msgid "<variable id=\"frtiteh\">Choose <menuitem>Slide - Slide Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
msgstr ""
-#. y5oEX
+#. fuqnR
#: slide_menu.xhp
msgctxt ""
"slide_menu.xhp\n"
"par_id3155266\n"
"help.text"
-msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Slide Layout</menuitem> </variable>"
+msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Layout</menuitem> </variable>"
msgstr ""
#. j5KeJ
diff --git a/source/ast/helpcontent2/source/text/simpress/01.po b/source/ast/helpcontent2/source/text/simpress/01.po
index 36ab773cd2b..da60edb1746 100644
--- a/source/ast/helpcontent2/source/text/simpress/01.po
+++ b/source/ast/helpcontent2/source/text/simpress/01.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: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2020-08-15 14:35+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-23 11:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress01/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1535978252.000000\n"
#. mu9aV
@@ -3220,14 +3220,14 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Summary Slide</link>"
msgstr "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Páxina resumen</link>"
-#. zGg5h
+#. sYR47
#: 04140000.xhp
msgctxt ""
"04140000.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains a bulleted list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
-msgstr "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Crea una diapositiva nueva que contién una llista con viñetes construyida a partir de los títulos de les diapositives siguientes a la escoyida. La páxina resumen inxertar de siguío de la última diapositiva.</ahelp>"
+msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains an unordered list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
+msgstr ""
#. jvuJN
#: 04990000.xhp
@@ -4147,14 +4147,14 @@ msgctxt ""
msgid "Delete Column"
msgstr "Desaniciar Columna"
-#. qrDGC
+#. Luyeg
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"tit\n"
"help.text"
-msgid "Slide Layout"
-msgstr "Diseñu de diapositiva"
+msgid "Layout"
+msgstr ""
#. HJ8Jm
#: 05130000.xhp
@@ -4165,22 +4165,22 @@ msgctxt ""
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
msgstr ""
-#. REe2P
+#. 4dvDP
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "Slide Layout"
-msgstr "Diseñu de diapositiva"
+msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Layout\">Layout</link>"
+msgstr ""
-#. dmgco
+#. dZ3GJ
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"par_id3149126\n"
"help.text"
-msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp> </variable>"
+msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp></variable>"
msgstr ""
#. CFkTY
@@ -9007,23 +9007,23 @@ msgctxt ""
msgid "Click <emph>Remove Client Authorization</emph>."
msgstr ""
-#. 7oZpm
+#. hTau2
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"tit\n"
"help.text"
-msgid "Slide"
-msgstr "Diapositiva"
+msgid "Slide Properties"
+msgstr "Propiedaes de la diapositiva"
-#. baLrD
+#. PGY7f
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"hd_id3149379\n"
"help.text"
-msgid "Slide"
-msgstr "Diapositiva"
+msgid "Slide Properties"
+msgstr "Propiedaes de la diapositiva"
#. YMWN6
#: slide_properties.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/guide.po b/source/ast/helpcontent2/source/text/simpress/guide.po
index 3b4ab3a8848..fdf39bd90d5 100644
--- a/source/ast/helpcontent2/source/text/simpress/guide.po
+++ b/source/ast/helpcontent2/source/text/simpress/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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2020-10-14 20:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpressguide/ast/>\n"
@@ -2761,13 +2761,31 @@ msgctxt ""
msgid "During a Slide Show"
msgstr "Amosar una presentación"
-#. DaXcL
+#. aonrJ
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id941616435513490\n"
+"help.text"
+msgid "To start a Slide Show"
+msgstr ""
+
+#. 3vhZG
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150650\n"
"help.text"
-msgid "To start a slide show, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F2</keycode> or <keycode>F5</keycode>."
+msgid "To start a slide show from the begining, press <keycode>F5</keycode>."
+msgstr ""
+
+#. WaqYV
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id911616435506012\n"
+"help.text"
+msgid "To start a slide show from the current slide, press <keycode>Shift+F5</keycode>."
msgstr ""
#. K3r3c
@@ -4165,32 +4183,32 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Puntu d'adhesión</link>"
-#. GhgSf
+#. 3LhEr
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"tit\n"
"help.text"
-msgid "Copying Slides From Other Presentations"
-msgstr "Copiar diapositives d'otres presentaciones"
+msgid "Insert Slide from File"
+msgstr ""
-#. BEQux
+#. 34kPB
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"bm_id3146971\n"
"help.text"
-msgid "<bookmark_value>copying; slides</bookmark_value><bookmark_value>slides; copying between documents</bookmark_value><bookmark_value>pages; copying</bookmark_value><bookmark_value>inserting; slides from files</bookmark_value><bookmark_value>pasting;slides from other presentations</bookmark_value>"
-msgstr "<bookmark_value>copiar;diapositives</bookmark_value><bookmark_value>diapositives;copiar ente documentos</bookmark_value><bookmark_value>páxines;copiar</bookmark_value><bookmark_value>inxertar;diapositives dende ficheros</bookmark_value><bookmark_value>pegar;diapositives d'otres presentaciones</bookmark_value>"
+msgid "<bookmark_value>copying; slides</bookmark_value> <bookmark_value>slides; copying between documents</bookmark_value> <bookmark_value>pages; copying</bookmark_value> <bookmark_value>inserting; slides from files</bookmark_value> <bookmark_value>pasting;slides from other presentations</bookmark_value>"
+msgstr ""
-#. paiDj
+#. BCJDc
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"hd_id3146971\n"
"help.text"
-msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Copying Slides From Other Presentations</link></variable>"
-msgstr "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Copiar diapositives d'otres presentaciones</link></variable>"
+msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Insert Slide from File</link></variable>"
+msgstr ""
#. BNyAE
#: page_copy.xhp
diff --git a/source/ast/helpcontent2/source/text/smath/01.po b/source/ast/helpcontent2/source/text/smath/01.po
index 34fc10d7066..4adfe7c0811 100644
--- a/source/ast/helpcontent2/source/text/smath/01.po
+++ b/source/ast/helpcontent2/source/text/smath/01.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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-13 11:35+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-02-25 09:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -205,14 +205,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03040000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr "<link href=\"text/smath/01/03040000.xhp\" name=\"Aumentar escala\">Aumentar escala</link>"
-#. oeXhg
+#. 4GCbo
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
"par_id3154490\n"
"help.text"
-msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">Aumenta la escala de visualización de la fórmula nun 25%.</ahelp> La escala activa amuésase na barra d'estáu. Tamién pue camudar la escala nel <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menú contestual\">menú contestual</link> de la barra d'estáu. El menú contestual del espaciu de trabayu tamién contién opciones d'escala."
+msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgstr ""
#. EyasV
#: 03050000.xhp
@@ -241,14 +241,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03050000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr "<link href=\"text/smath/01/03050000.xhp\" name=\"Reducir escala\">Amenorgar escala</link>"
-#. Q2ZAD
+#. yxSWi
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">Amenorga la escala de visualización de les fórmules nun 25%.</ahelp> La escala activa amuésase na barra d'estáu. Tamién pue camudar la escala nel <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menú contestual\">menú contestual</link> de la barra d'estáu. El menú contestual del espaciu de trabayu tamién tien opciones d'escala."
+msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgstr ""
#. xSbDA
#: 03060000.xhp
@@ -277,13 +277,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03060000.xhp\" name=\"Show All\">Show All</link>"
msgstr "<link href=\"text/smath/01/03060000.xhp\" name=\"Amosar too\">Amosar too</link>"
-#. cMH92
+#. HGtyh
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id3148571\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
+msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
msgstr ""
#. WGriM
@@ -457,13 +457,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090100.xhp\" name=\"Unary/Binary Operators\">Unary/Binary Operators</link>"
msgstr "<link href=\"text/smath/01/03090100.xhp\" name=\"Operadores unarios/binarios\">Operadores unarios/binarios</link>"
-#. JBpRR
+#. T3SNE
#: 03090100.xhp
msgctxt ""
"03090100.xhp\n"
"par_id3151241\n"
"help.text"
-msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
+msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
msgstr ""
#. 86s5i
@@ -1933,13 +1933,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">Operators</link>"
msgstr "<link href=\"text/smath/01/03090300.xhp\" name=\"Operadores\">Operadores</link>"
-#. 9GqEF
+#. fJzeE
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"par_id3149755\n"
"help.text"
-msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. hDyQo
@@ -2392,13 +2392,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090400.xhp\" name=\"Functions\">Functions</link>"
msgstr "<link href=\"text/smath/01/03090400.xhp\" name=\"Funciones\">Funciones</link>"
-#. ELsLc
+#. Q9Kv7
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
"par_id3155374\n"
"help.text"
-msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
+msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
msgstr ""
#. 35FEB
@@ -3139,13 +3139,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090500.xhp\" name=\"Brackets\">Brackets</link>"
msgstr "<link href=\"text/smath/01/03090500.xhp\" name=\"Paréntesis\">Paréntesis</link>"
-#. uHWGz
+#. EhUo8
#: 03090500.xhp
msgctxt ""
"03090500.xhp\n"
"par_id3147258\n"
"help.text"
-msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. zusZw
@@ -3850,13 +3850,13 @@ msgctxt ""
msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">Attributes</link> </variable>"
msgstr ""
-#. Q2dMs
+#. mFqph
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145802\n"
"help.text"
-msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
msgstr ""
#. LGFaf
@@ -4651,13 +4651,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090700.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/smath/01/03090700.xhp\" name=\"Formatos\">Formatos</link>"
-#. dcihp
+#. ZG9A4
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"par_id3147262\n"
"help.text"
-msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
+msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
msgstr ""
#. oGTCQ
@@ -5254,13 +5254,13 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090800.xhp\" name=\"Set Operations\">Set Operations</link>"
msgstr "<link href=\"text/smath/01/03090800.xhp\" name=\"Operadores de conxuntos\">Operadores de conxuntos</link>"
-#. QzFc8
+#. X4op9
#: 03090800.xhp
msgctxt ""
"03090800.xhp\n"
"par_id3154641\n"
"help.text"
-msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
+msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
msgstr ""
#. CJVPF
@@ -6692,7 +6692,7 @@ msgctxt ""
"par_id3151173\n"
"help.text"
msgid "Unlike other formula editors where \"<emph>_</emph>\" and \" <emph>^</emph> \" only refer to the next character (\"a_24\" refers only to the \"2\"), $[officename] Math refers to the entire number(s)/name(s)/text. If you want to put superscripts and subscripts in sequence, the expression can be written as follows: a_2{}^3 or a^3{}_2"
-msgstr "Al contrariu qu'otros editores de fórmules, nos que \"<emph>_</emph>\" y \" <emph>^</emph> \" refiérense namái al caráuter siguiente (esto ye, nel casu de \"a_24\" namái se refier a 2), $[officename] Math refierse al númberu/nome/testu completos. Sicasí, si deseya de forma espresa qu'el subíndiz y el superíndiz tean unu detrás del otru, tendrá d'escribise lo siguiente: a_2{}^3 o a^3{}_2"
+msgstr "Al contrariu qu'otros editores de fórmules, nos que «<emph>_</emph>» y «<emph>^</emph>» refiérense namái al caráuter siguiente (esto ye, nel casu de «a_24» namái se refier a «2»), $[officename] Math refierse al númberu/nome/testu completos. Sicasí, si deseyes de forma espresa que'l subíndiz y el superíndiz tean unu detrás del otru, tendrá d'escribise lo siguiente: a_2{}^3 o a^3{}_2"
#. Y9Pte
#: 03091200.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter.po b/source/ast/helpcontent2/source/text/swriter.po
index 9690a52989a..298f434f55a 100644
--- a/source/ast/helpcontent2/source/text/swriter.po
+++ b/source/ast/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2020-05-27 09:52+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/ast/>\n"
@@ -1060,13 +1060,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr "<ahelp hid=\".uno:FormatMenu\">Contién comandos pa dar formatu al diseñu y al conteníu del documentu.</ahelp>"
-#. dWAnk
+#. zjGX9
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id551602974854459\n"
"help.text"
-msgid "Align"
+msgid "Align Text"
msgstr ""
#. 7FD3V
@@ -1078,41 +1078,41 @@ msgctxt ""
msgid "Opens a submenu where you can align text and objects."
msgstr ""
-#. 7iyia
+#. 5EJHh
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id951602975070826\n"
+"hd_id3147261\n"
"help.text"
-msgid "Lists"
-msgstr ""
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caráuter\">Caracter</link>"
-#. SkZuS
+#. y8Ux2
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"par_id461602975083850\n"
+"hd_id3147286\n"
"help.text"
-msgid "Opens a submenu where you can modify the structure of numbered and bulleted paragraphs."
-msgstr ""
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Párrafo\">Párrafu</link>"
-#. 5EJHh
+#. 7iyia
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147261\n"
+"hd_id951602975070826\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caráuter\">Caracter</link>"
+msgid "Lists"
+msgstr ""
-#. y8Ux2
+#. MKjWR
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147286\n"
+"par_id461602975083850\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Párrafo\">Párrafu</link>"
+msgid "Opens a submenu where you can modify the formatting of list paragraphs."
+msgstr ""
#. gYqLC
#: main0105.xhp
@@ -1132,13 +1132,13 @@ msgctxt ""
msgid "Title Page"
msgstr ""
-#. DyKLQ
+#. crAFH
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"par_id471602976213270\n"
"help.text"
-msgid "Opens submenu where you can design a title page."
+msgid "Opens a dialog where you can design a title page."
msgstr ""
#. QKypm
@@ -1168,13 +1168,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columnes\">Columnes</link>"
-#. JThwL
+#. HtHdy
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id11602979335965\n"
"help.text"
-msgid "Watermark"
+msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Watermark</link>"
msgstr ""
#. QSMBC
@@ -1195,24 +1195,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Image</link>"
msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"Páxina\">Páxina</link>"
-#. fqUFz
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id881602977324204\n"
-"help.text"
-msgid "Text Box and Shape"
-msgstr ""
-
-#. 5XtDF
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"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 ""
-
#. FUiBn
#: main0105.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter/00.po b/source/ast/helpcontent2/source/text/swriter/00.po
index 482f7740c23..67af9f0b300 100644
--- a/source/ast/helpcontent2/source/text/swriter/00.po
+++ b/source/ast/helpcontent2/source/text/swriter/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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+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/textswriter00/ast/>\n"
@@ -1564,31 +1564,49 @@ msgctxt ""
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 ""
-#. JW9yE
+#. 4fpCB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "Choose <menuitem>Format - Paragraph - Outline & Numbering</menuitem> tab."
+msgid "Choose <menuitem>Format - Paragraph - Outline & List</menuitem> tab."
msgstr ""
-#. qWCzG
+#. q583F
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id231616224233651\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Paragraph - Outline & List</menuitem> tab."
+msgstr ""
+
+#. ExS89
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id41616224423602\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Edit Style - Outline & List</menuitem> tab."
+msgstr ""
+
+#. n5kFM
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154413\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Outline & Numbering</menuitem> tab (Paragraph Styles)."
+msgid "Choose <menuitem>Styles - Edit Style - Outline & List</menuitem> tab (Paragraph Styles)."
msgstr ""
-#. 7GJUj
+#. oVPyS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - Outline & Numbering</menuitem> tab (Paragraph Styles)."
+msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - List & Numbering</menuitem> tab (Paragraph Styles)."
msgstr ""
#. Rp3Q3
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index bcfce29f351..5dc02609af4 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-02 17:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-13 13:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ast/>\n"
"Language: ast\n"
@@ -896,7 +896,7 @@ msgctxt ""
"par_id911603287134620\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Categoría"
#. Ja23j
#: 02110000.xhp
@@ -905,7 +905,7 @@ msgctxt ""
"par_id31603287134620\n"
"help.text"
msgid "Context Menu"
-msgstr ""
+msgstr "Menú contestual"
#. JiJpY
#: 02110000.xhp
@@ -5380,13 +5380,13 @@ msgctxt ""
msgid "Name"
msgstr "Nome"
-#. 3FwA8
+#. wsww3
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then press <emph>Insert</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then, click <emph>Insert</emph>.</ahelp>"
msgstr ""
#. s7rfA
@@ -12058,14 +12058,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromheadings\">Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index.</ahelp>"
msgstr ""
-#. XavFH
+#. RfKn4
#: 04120211.xhp
msgctxt ""
"04120211.xhp\n"
"par_id1209200804373840\n"
"help.text"
-msgid "You can also assign the outline levels in the <link href=\"text/swriter/01/05030800.xhp\">Outline & Numbering</link> tab page of the Format - Paragraph dialog."
-msgstr "Pue asignar el nivel d'esquema na llingüeta páxina <link href=\"text/swriter/01/05030800.xhp\">Numberación de Capítulos</link> nel diálogu Formatu - Párrafu."
+msgid "You can also assign outline levels to paragraphs in the <link href=\"text/swriter/01/05030800.xhp\">Outline & List</link> tab page of the Format - Paragraph dialog."
+msgstr ""
#. y5UNJ
#: 04120211.xhp
@@ -16081,31 +16081,31 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">Select the formatting style that you want to apply to the drop caps.</ahelp> To use the formatting style of the current paragraph, select [None]."
msgstr "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">Escueya l'estilu de formateáu que deseya aplicar a les iniciales.</ahelp> Pa usar l'estilu de formatu del párrafu actual, escueya [Nengunu]."
-#. 24MpG
+#. nWCDv
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"tit\n"
"help.text"
-msgid "Outline & Numbering"
-msgstr "Numberación de capítulos"
+msgid "Outline & List"
+msgstr ""
-#. muqGR
+#. Nprja
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3151173\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & Numbering</link>"
+msgid "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & List</link></variable>"
msgstr ""
-#. Zue75
+#. x3BNB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, numbering, or bullets from the paragraph. You can also select the style of numbering to use, and reset the numbering in a numbered list.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, list style, and line numbering from the paragraph or paragraph style. You can also restart or modify the start number for numbered lists and line numbering.</ahelp>"
msgstr ""
#. qNyVD
@@ -16162,22 +16162,22 @@ msgctxt ""
msgid "Numbering"
msgstr "Numberación"
-#. UmpGx
+#. fFAFo
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3154188\n"
"help.text"
-msgid "Numbering Style"
-msgstr "Estilu de numberación"
+msgid "List Style"
+msgstr ""
-#. WGB2B
+#. T2yMF
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> if you click the <emph>List Styles</emph> icon."
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">List Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) if you click the <emph>List Styles</emph> icon."
msgstr ""
#. MycJD
@@ -16198,22 +16198,22 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected numbering style.</ahelp> These properties will apply to all paragraphs formatted with the given numbering style."
msgstr ""
-#. dXFVa
+#. dxBEA
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3149195\n"
"help.text"
-msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering...</emph> to edit the outline level and numbering style."
+msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering</emph> to edit the outline level and numbering format."
msgstr ""
-#. GR3YW
+#. zBagB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3151117\n"
"help.text"
-msgid "Outline level and Numbering Style are independent of each other. Use <emph>Tools - Chapter Numbering...</emph> to assign numbering styles to paragraph styles."
+msgid "Outline level and List style are independent of each other. Use <emph>Tools - Chapter Numbering</emph> to assign a numbering format to paragraph styles used as headings in a document outline structure."
msgstr ""
#. 3KS2Y
@@ -22561,13 +22561,22 @@ msgctxt ""
msgid "Here you can create a List Style. The List Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window."
msgstr ""
-#. FZ2HA
+#. hVmyj
+#: 05130004.xhp
+msgctxt ""
+"05130004.xhp\n"
+"par_id317365356036\n"
+"help.text"
+msgid "When a List Style is created, a name is assigned to the style. The list style can be applied to paragraphs or assigned to a paragraph style in the Apply List Style section of the <link href=\"text/swriter/01/05030800.xhp\" name=\"ApplyListStyle\">Outline & List</link> tab."
+msgstr ""
+
+#. MU724
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"par_id3151390\n"
"help.text"
-msgid "When a List Style is created, a name is assigned to the style. Ordered lists use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>, and can be created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the icons of the <link href=\"text/swriter/main0206.xhp\" name=\"object bar\">object bar</link>."
+msgid "Ordered lists and unordered lists created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> and <link href=\"text/shared/02/06120000.xhp\" name=\"Toggle Unordered List\">Toggle Unordered List</link> icons of the <link href=\"text/swriter/main0202.xhp\" name=\"object bar\">Formatting</link> bar use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>. They are not list styles."
msgstr ""
#. UgisA
@@ -24604,49 +24613,40 @@ msgctxt ""
msgid "Chapter Numbering"
msgstr ""
-#. 483kg
+#. EWVsz
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Chapter Numbering"
+msgid "<variable id=\"ChapNumh1\"><link href=\"text/swriter/01/06060000.xhp\">Chapter Numbering</link></variable>"
msgstr ""
-#. XxAe3
+#. bAdVd
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3145246\n"
"help.text"
-msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the number format and the hierarchy for chapter numbering in the current document.</ahelp></variable>"
-msgstr "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Especifica'l formatu del númberu y la xerarquía de la numberación de capítulos del documentu.</ahelp></variable>"
+msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the numbering scheme and outline format for chapter numbering in the current document.</ahelp></variable>"
+msgstr ""
-#. FqzZs
+#. PKJax
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
+msgid "Chapter numbering is achieved by assigning paragraph styles to outline levels, and a numbering scheme for each outline level. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline levels (1-10). You can use the dialog to assign a different paragraph style to an outline level."
msgstr ""
-#. uuEEQ
+#. DpAKZ
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr ""
-
-#. GBEmb
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3147567\n"
-"help.text"
-msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View - Field Shadings</emph>."
+msgid "<variable id=\"chapter_numbering_tip\">If you want numbered headings, choose <menuitem>Tools - </menuitem><link name=\"chapternumbering\" href=\"text/swriter/01/06060000.xhp#ChapNumh1\"><menuitem>Chapter Numbering</menuitem></link>. This command opens a dialog where numbering schemes can be assigned to paragraph styles used for headings. Do not use the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> icon on the <link href=\"text/swriter/main0202.xhp\" name=\"FormattingBar\">Formatting Bar</link> or the <menuitem>Format - </menuitem><link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><menuitem>Bullets and Numbering</menuitem></link> dialog.</variable>"
msgstr ""
#. DFbiG
@@ -24658,22 +24658,22 @@ msgctxt ""
msgid "Load/Save"
msgstr ""
-#. YUER3
+#. 4jFGn
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to all text documents.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to load into other text documents.</ahelp>"
msgstr ""
-#. Eoxwy
+#. DkYUj
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Load/Save</emph> button is only available for chapter numbering. For numbered or bulleted list styles, modify the numbering styles of the paragraphs."
+msgid "The <widget>Load/Save</widget> button is only available for chapter numbering. Use List styles to save formatting for ordered or unordered lists."
msgstr ""
#. EV2DT
@@ -24685,14 +24685,14 @@ msgctxt ""
msgid "Untitled 1 - 9"
msgstr "Ensin nome 1 - 9"
-#. tbyhC
+#. GEBee
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150350\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select the predefined numbering style that you want to assign to the selected outline level.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Escueya l'estilu de numberación predetermináu que deseye asignar al nivel de numberación escoyíu.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select a predefined numbering format.</ahelp> Save your own predefined numbering formats using <emph>Save As</emph>."
+msgstr ""
#. NoHGV
#: 06060000.xhp
@@ -24703,33 +24703,15 @@ msgctxt ""
msgid "Save As"
msgstr "Guardar como"
-#. LsqXh
+#. bwJgP
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current numbering and position settings for all levels. Saved settings are available to load into other documents.</ahelp>"
msgstr ""
-#. G6SB9
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"hd_id3149689\n"
-"help.text"
-msgid "Save As"
-msgstr "Guardar como"
-
-#. Uq3CL
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3154200\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numberingnamedialog/form\">Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/numberingnamedialog/form\">Calque sobre un estilu de numberación de la llista y escriba un nome pal estilu. Los númberos corresponder col nivel de numberación al que s'asignen los estilos.</ahelp>"
-
#. G9Fz2
#: 06060100.xhp
msgctxt ""
@@ -24766,13 +24748,13 @@ msgctxt ""
msgid "Level"
msgstr "Nivel"
-#. EBZSv
+#. kFsmA
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
msgstr ""
#. s4LDs
@@ -24802,13 +24784,13 @@ msgctxt ""
msgid "Paragraph Style"
msgstr "Estilu de párrafu"
-#. EXNSB
+#. KQMUB
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
msgstr ""
#. 2Ko3X
@@ -24820,14 +24802,14 @@ msgctxt ""
msgid "Number"
msgstr "Númberu"
-#. sayxC
+#. Ve6Gs
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3156319\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering style that you want to apply to the selected outline level.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\" visibility=\"visible\">Escueya l'estilu de numberación que deseye aplicar al nivel d'esquema escoyíu.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering scheme that you want to apply to the selected outline level.</ahelp>"
+msgstr ""
#. uCj2F
#: 06060100.xhp
@@ -24847,6 +24829,24 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Función</emph>"
+#. AoxBN
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3155899\n"
+"help.text"
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
+
+#. rDEQw
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154191\n"
+"help.text"
+msgid "Arabic numerals"
+msgstr "Cifres árabes"
+
#. aMCaW
#: 06060100.xhp
msgctxt ""
@@ -24919,24 +24919,6 @@ msgctxt ""
msgid "Roman numerals (lower)"
msgstr "Cifres romanes en minúscula"
-#. AoxBN
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3155899\n"
-"help.text"
-msgid "1, 2, 3, ..."
-msgstr "1, 2, 3, ..."
-
-#. rDEQw
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154191\n"
-"help.text"
-msgid "Arabic numerals"
-msgstr "Cifres árabes"
-
#. cihkt
#: 06060100.xhp
msgctxt ""
@@ -25000,14 +24982,14 @@ msgctxt ""
msgid "Character Style"
msgstr "Estilu de caráuter"
-#. xjBZC
+#. h5uaa
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3147224\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the format of the numbering character.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\" visibility=\"visible\">Escueya'l formatu del caráuter de numberación.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the character style of the numbering character.</ahelp>"
+msgstr ""
#. bkGnf
#: 06060100.xhp
@@ -26611,14 +26593,14 @@ msgctxt ""
msgid "Line Numbering"
msgstr "Numberación de llinies"
-#. ca98d
+#. ZDVZ9
#: 06180000.xhp
msgctxt ""
"06180000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <emph>Format - Paragraph</emph>, click the <emph>Numbering </emph>tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
-msgstr "<variable id=\"zeinum\">Amiesta o desanicia y formatea los númberos de les llinies nel documentu actual. Pa escluyir un párrafu de la numberación de llinies, calque sobre'l párrafu, escueya <emph>Formatu - Párrafu</emph>, dempués la llingüeta <emph>Numberación</emph> y, de siguío, dexe en blancu'l caxellu de verificación <emph>Cuntar les llinies d'esti párrafu</emph>.</variable> pue escluyir un estilu de párrafu dende la numberación de llinies."
+msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <menuitem>Format - Paragraph</menuitem>, click the <emph>Outline & List</emph> tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
+msgstr ""
#. GcdFF
#: 06180000.xhp
@@ -27088,50 +27070,32 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
msgstr ""
-#. 4qVPZ
+#. YwkE4
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"tit\n"
"help.text"
-msgid "Object"
-msgstr "Oxetu"
+msgid "Text Box and Shape"
+msgstr ""
-#. 2vkco
+#. 5XTkz
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/swriter/01/format_object.xhp\">Object</link>"
-msgstr "<link href=\"text/swriter/01/format_object.xhp\">Oxetu</link>"
+msgid "<link href=\"text/swriter/01/format_object.xhp\">Text Box and Shape</link>"
+msgstr ""
-#. ev5DK
+#. RfLw2
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre un submenú pa editar les propiedaes del oxetu escoyíu.</ahelp>"
-
-#. QNeGm
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"hd_id1863460\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Text Attributes</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\">Atributos de testu</link>"
-
-#. vqJQ9
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"par_id3542588\n"
-"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "Define'l diseñu y les propiedaes de anclaxe del testu nel dibuxu o oxetu de testu escoyíu."
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected textbox or shape.</ahelp>"
+msgstr ""
#. UWnvc
#: format_object.xhp
@@ -31037,7 +31001,7 @@ msgctxt ""
"par_id531516900343270\n"
"help.text"
msgid "<ahelp hid=\".\">Select the rotation angle for the watermark. The text will be rotated by this angle in counterclockwise direction.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleiciona l'ángulu de xiru de la marca d'agua. El testu xiraráse en sen antihorariu.</ahelp>"
#. SZmr7
#: watermark.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/02.po b/source/ast/helpcontent2/source/text/swriter/02.po
index 07991595c40..27f107d6767 100644
--- a/source/ast/helpcontent2/source/text/swriter/02.po
+++ b/source/ast/helpcontent2/source/text/swriter/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-04 20:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-23 11:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/ast/>\n"
"Language: ast\n"
@@ -16,23 +16,23 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511359350.000000\n"
-#. SGjBV
+#. sqxGb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering on/off"
-msgstr "Activar o desactivar numberación"
+msgid "Toggle Ordered List"
+msgstr ""
-#. ACieD
+#. z8hCm
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150220\n"
"help.text"
-msgid "<link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Numbering On/Off</link>"
-msgstr "<link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Activar o desactivar numberación</link>"
+msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Toggle Ordered List</link></variable>"
+msgstr ""
#. 7QYre
#: 02110000.xhp
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">Web Layout</link>."
msgstr "Dalgunes de les opciones de numberación y viñetes nun tán disponibles cuando se trabaya nel mou <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">Diseñu web</link>."
-#. dARXh
+#. dwn77
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150502\n"
"help.text"
-msgid "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150508\" src=\"cmd/lc_defaultnumbering.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150508\">Toggle Ordered List Icon</alt></image>"
+msgstr ""
-#. Xfqcn
+#. yYfzC
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Numbering On/Off"
-msgstr "Activar o desactivar numberación"
+msgid "Toggle Ordered List"
+msgstr ""
#. fVWig
#: 02110000.xhp
@@ -502,50 +502,59 @@ msgctxt ""
msgid "Sum"
msgstr "Suma"
-#. 4a76q
+#. GqFYN
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering Off"
-msgstr "Desactivar numberación"
+msgid "No List"
+msgstr ""
-#. hAqDK
+#. wCBAJ
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"hd_id3145822\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">Numbering Off</link>"
-msgstr "<link href=\"text/swriter/02/06040000.xhp\" name=\"Desactivar numberación\">Desactivar numberación</link>"
+msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">No List</link>"
+msgstr ""
-#. i8F2B
+#. MPBzT
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3154505\n"
"help.text"
-msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Turns off numbering or bullets in the current paragraph or selected paragraphs.</ahelp>"
-msgstr "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Desactiva la numberación o les viñetes nel párrafu actual o nos escoyíos.</ahelp>"
+msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Removes numbering or bullets and list indenting for the current paragraph or selected paragraphs.</ahelp>"
+msgstr ""
-#. p6pTC
+#. LDHCy
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3151177\n"
"help.text"
-msgid "<image src=\"cmd/sc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon Numbering Off</alt></image>"
+msgid "<image src=\"cmd/lc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon No List</alt></image>"
msgstr ""
-#. tfm6a
+#. iNFhx
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "Numbering Off"
-msgstr "Desactivar numberación"
+msgid "No List"
+msgstr ""
+
+#. 5FX23
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id811614270889392\n"
+"help.text"
+msgid "To preserve indenting, but remove bullet or number, place cursor at the beginning of the paragraph and press <keycode>Backspace</keycode>."
+msgstr ""
#. MZn4T
#: 06070000.xhp
@@ -790,14 +799,41 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06140000.xhp\" name=\"Restart Numbering\">Restart Numbering</link>"
msgstr "<link href=\"text/swriter/02/06140000.xhp\" name=\"Reiniciar numberación\">Reiniciar numberación</link>"
-#. tRqAn
+#. iwJHH
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id3145249\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts the text numbering.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Reinicia la numberación de testu.</ahelp> Namái ye visible si'l cursor asitiar nel testu numberáu o con viñetes."
+msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts list numbering from 1.</ahelp> This command is only active when the cursor is positioned within a list."
+msgstr ""
+
+#. 89Xm9
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id631616370838434\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Restart Numbering</menuitem>."
+msgstr ""
+
+#. fh5aw
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id31616370717930\n"
+"help.text"
+msgid "Place cursor in a list paragraph, right-click and choose <menuitem>List - Restart Numbering</menuitem>."
+msgstr ""
+
+#. RgibL
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id351616370727010\n"
+"help.text"
+msgid "On <link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><emph>Bullets and Numbering</emph></link> bar, click"
+msgstr ""
#. SLjuC
#: 06140000.xhp
@@ -817,6 +853,24 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Reiniciar numberación"
+#. DmEY6
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id761616370463787\n"
+"help.text"
+msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
+msgstr ""
+
+#. bEE4F
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id261616371203225\n"
+"help.text"
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - </menuitem><embedvar href=\"textswriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgstr ""
+
#. qCdhk
#: 08010000.xhp
msgctxt ""
@@ -2516,7 +2570,7 @@ msgctxt ""
"par_id591599557963519\n"
"help.text"
msgid "Sign"
-msgstr ""
+msgstr "Signu"
#. 8Y984
#: 14020000.xhp
@@ -2570,7 +2624,7 @@ msgctxt ""
"par_id741599524662589\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. Mehmy
#: 14020000.xhp
@@ -2651,7 +2705,7 @@ msgctxt ""
"par_id981599524696609\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. gnbPF
#: 14020000.xhp
@@ -3814,6 +3868,213 @@ msgctxt ""
msgid "Text Animation"
msgstr "Animación de testu"
+#. RajEo
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. mjGvU
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"bm_id1001616018043189\n"
+"help.text"
+msgid "<bookmark_value>Add to List</bookmark_value><bookmark_value>Lists;merging</bookmark_value>"
+msgstr ""
+
+#. X8yaz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id711614068729277\n"
+"help.text"
+msgid "<variable id=\"addtolisth1\"><link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\">Add to List</link></variable>"
+msgstr ""
+
+#. kM6AJ
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id231614069215429\n"
+"help.text"
+msgid "Include selected paragraphs, whether a list item or not, as part of a list."
+msgstr ""
+
+#. pxcFF
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151614079148636\n"
+"help.text"
+msgid "<variable id=\"howtogetaddtolist\">Choose <menuitem>Format - Lists - Add to List</menuitem></variable>."
+msgstr ""
+
+#. PUsxs
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631614079159620\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Add to List</menuitem>."
+msgstr ""
+
+#. Zb43J
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151615752168785\n"
+"help.text"
+msgid "<variable id=\"toolbar\">On <menuitem>Bullets and Numbering</menuitem> bar, click <emph>Add to List</emph> icon.</variable>"
+msgstr ""
+
+#. ViA36
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id651615752040364\n"
+"help.text"
+msgid "<image src=\"cmd/lc_continuenumbering.png\" id=\"img_id981615752040364\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761615752040364\">Add to List Icon</alt></image>"
+msgstr ""
+
+#. hxMDa
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id51615752040365\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. 6kruw
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id711616001147778\n"
+"help.text"
+msgid "The list labeling and indent formatting are applied to the selected paragraphs. The position of the paragraphs in the document does not change."
+msgstr ""
+
+#. pADj5
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id851614072896370\n"
+"help.text"
+msgid "Add Selected Paragraphs to a List"
+msgstr ""
+
+#. FGi4A
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id491615988072533\n"
+"help.text"
+msgid "Select paragraphs, whether in a list or not, to be added to a list."
+msgstr ""
+
+#. smjtz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id271615998908234\n"
+"help.text"
+msgid "For multiple selections, press and hold the <keycode> Ctrl</keycode> key after the first selection. The <keycode>Ctrl</keycode> key can be released without losing the selections, but must be pressed when clicking in the document."
+msgstr ""
+
+#. gwgyD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id551615985719902\n"
+"help.text"
+msgid "Press and hold the <keycode>Ctrl</keycode> key, then place cursor in the list."
+msgstr ""
+
+#. 3VT7j
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id901615999151001\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. qPKKN
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id141615979735757\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#howtogetaddtolist\"/>"
+msgstr ""
+
+#. FADNr
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id961614073544958\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#toolbar\"/>"
+msgstr ""
+
+#. D98D9
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id161615999749854\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click, choose <menuitem>List - Add to List</menuitem>.</variable> To preserve the selection, at least one character must be selected in the list."
+msgstr ""
+
+#. qFmgS
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id861614074931979\n"
+"help.text"
+msgid "This procedure works for ordered and unordered lists."
+msgstr ""
+
+#. L9RdM
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id441616017998739\n"
+"help.text"
+msgid "Add Consecutive List Entries to an Immediately Prior List"
+msgstr ""
+
+#. GJuBD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631616018294373\n"
+"help.text"
+msgid "Select one or more consecutive list entries, starting from the first entry, that you want to add to the immediately prior list."
+msgstr ""
+
+#. g9LRR
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id621616018340980\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#rightclick\"/>"
+msgstr ""
+
+#. p9hUv
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id811616018796902\n"
+"help.text"
+msgid "Use this procedure to combine two lists."
+msgstr ""
+
#. JsrhA
#: word_count_stb.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/swriter/04.po b/source/ast/helpcontent2/source/text/swriter/04.po
index f1f595c2cf0..6d71990c52f 100644
--- a/source/ast/helpcontent2/source/text/swriter/04.po
+++ b/source/ast/helpcontent2/source/text/swriter/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-03-13 12:06+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2021-02-04 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter04/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1507112028.000000\n"
#. brcGC
@@ -529,14 +529,14 @@ msgctxt ""
msgid "F12"
msgstr "(F12)"
-#. S2S9J
+#. jiXFc
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3148959\n"
"help.text"
-msgid "Numbering on"
-msgstr "Activar numberación"
+msgid "Toggle Ordered List"
+msgstr ""
#. wAUBd
#: 01020000.xhp
@@ -565,14 +565,14 @@ msgctxt ""
msgid "Shift+F12"
msgstr "(Mayús)(F12)"
-#. iuAiR
+#. fkbSD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3152763\n"
"help.text"
-msgid "Bullets on"
-msgstr "Activar viñeta"
+msgid "Toggle Unordered List"
+msgstr ""
#. pneN5
#: 01020000.xhp
@@ -583,14 +583,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Comandu</caseinline><defaultinline>Control</defaultinline></switchinline> + Mayús + F12"
-#. dGgoN
+#. E9pG5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153901\n"
"help.text"
-msgid "Numbering / Bullets off"
-msgstr "Desactivar Numberación / Viñeta"
+msgid "Ordered / Unordered List off"
+msgstr ""
#. HyF9c
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 0cdbdfbbf6b..49da80fef26 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+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"
@@ -3031,14 +3031,14 @@ msgctxt ""
msgid "<bookmark_value>captions; adding chapter numbers</bookmark_value> <bookmark_value>objects; captioning automatically</bookmark_value> <bookmark_value>numbering; captions</bookmark_value> <bookmark_value>automatic numbering;of objects</bookmark_value> <bookmark_value>chapter numbers in captions</bookmark_value> <bookmark_value>inserting;chapter numbers in captions</bookmark_value>"
msgstr "<bookmark_value>etiquetes;amestar númberos de capítulu</bookmark_value> <bookmark_value>oxetos;etiquetar automáticamente</bookmark_value> <bookmark_value>numberación;etiquetes</bookmark_value> <bookmark_value>numberación automática;d'oxetos</bookmark_value> <bookmark_value>númberos de capítulu n'etiquetes</bookmark_value> <bookmark_value>inxertar;númberos de capítulu n'etiquetes</bookmark_value>"
-#. GfPV7
+#. xAnbA
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"hd_id3147684\n"
"help.text"
-msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link> </variable>"
-msgstr "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Amestar númberos de capítulos a los títulos</link> </variable>"
+msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link></variable>"
+msgstr ""
#. 5efvj
#: captions_numbers.xhp
@@ -3076,13 +3076,13 @@ msgctxt ""
msgid "Choose <emph>Insert - Caption</emph>."
msgstr "Active'l comandu <emph>Inxertar - Etiqueta</emph>."
-#. UpjLH
+#. 4Js6V
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "Select a caption title from the <item type=\"menuitem\">Category</item> box, and select a numbering style in the <item type=\"menuitem\">Numbering</item> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <item type=\"menuitem\">Caption</item> box."
+msgid "Select a caption title from the <menuitem>Category</menuitem> box, and select a numbering scheme in the <menuitem>Numbering</menuitem> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <menuitem>Caption</menuitem> box."
msgstr ""
#. H329F
@@ -3319,32 +3319,32 @@ msgctxt ""
msgid "To Add Automatic Numbering to a Heading Style"
msgstr "P'amestar numberación automática a un estilu de testera"
-#. Dxqw8
+#. Q2Dq4
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
+msgid "Choose <menuitem>Tools - Chapter Numbering</menuitem>, and then click the <menuitem>Numbering</menuitem> tab."
msgstr ""
-#. 8RDya
+#. UuWGT
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155891\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Paragraph Style</item> box, select the heading style that you want to add chapter numbers to."
-msgstr "Nel cuadru <item type=\"menuitem\">Estilu de párrafu</item>, escueya l'estilu de testera al que desee amestar númberos de capítulu."
+msgid "In the <menuitem>Paragraph style</menuitem> box, select the heading style that you want to add chapter numbers to."
+msgstr ""
-#. dGoy7
+#. EZW6q
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3150513\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Numbers</item> box, select the numbering style that you want to use, and then click <item type=\"menuitem\">OK</item>."
-msgstr "Nel cuadru <item type=\"menuitem\">Númberos</item>, escueya l'estilu de numberación que desea utilizar y, de siguío, faiga clic en <item type=\"menuitem\">Aceutar</item>."
+msgid "In the <menuitem>Number</menuitem> box, select the numbering scheme that you want to use, and then click <menuitem>OK</menuitem>."
+msgstr ""
#. EChDL
#: chapter_numbering.xhp
@@ -3364,13 +3364,22 @@ msgctxt ""
msgid "Click at the beginning of the text in the heading paragraph, after the number."
msgstr "Faiga clic nel empiezu del testu del párrafu de testera, dempués del númberu."
-#. ZbJV9
+#. ABejd
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107D9\n"
"help.text"
-msgid "Press the Backspace key to delete the number."
+msgid "Press the <keycode>Backspace</keycode> key to delete the number."
+msgstr ""
+
+#. ycK3V
+#: chapter_numbering.xhp
+msgctxt ""
+"chapter_numbering.xhp\n"
+"par_id441614161571912\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> with the cursor at the beginning of the heading to return the number."
msgstr ""
#. itdUu
@@ -5470,14 +5479,14 @@ msgctxt ""
msgid "Click 'Page' in the <emph>Type</emph> list and 'Next page' in the <emph>Select</emph> list."
msgstr "Calque 'Páxina' na llista <emph>Tipu de campu</emph> y 'Páxina siguiente' na llista <emph>Seleición</emph>."
-#. 4Y7oL
+#. gWQDr
#: footer_nextpage.xhp
msgctxt ""
"footer_nextpage.xhp\n"
"par_id3150517\n"
"help.text"
-msgid "Click a numbering style in the <item type=\"menuitem\">Format</item> list."
-msgstr "Faiga clic nun estilu de numberación na llista <item type=\"menuitem\">Formatu</item>."
+msgid "Click a numbering scheme in the <menuitem>Format</menuitem> list."
+msgstr ""
#. 9YJwh
#: footer_nextpage.xhp
@@ -6937,13 +6946,13 @@ msgctxt ""
msgid "To Create a Paragraph Style for Chapter Titles"
msgstr "Pa crear un estilu de párrafu pa títulos de capítulos"
-#. 8ScLd
+#. caxXE
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
+msgid "Choose <menuitem>Tools - Chapter Numbering.</menuitem>"
msgstr ""
#. B8P3C
@@ -6955,14 +6964,14 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">Style</item> box, select the paragraph style that you want to use for chapter titles, for example, \"Heading 1\"."
msgstr "Nel cuadru <item type=\"menuitem\">Estilu</item>, escueya l'estilu de párrafu que desea usar pa los títulos de capítulos, por exemplu, \"Testera 1\"."
-#. u3oNh
+#. LoZJ2
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3147124\n"
"help.text"
-msgid "Select the numbering style for the chapter titles in the <item type=\"menuitem\">Number</item> box, for example, \"1,2,3...\"."
-msgstr "Escueya l'estilu de numberación pa los títulos de capítulu nel cuadru <item type=\"menuitem\">Númberu</item>, por exemplu, \"1,2,3...\"."
+msgid "Select the numbering scheme for the chapter titles in the <menuitem>Number</menuitem> box, for example, \"1,2,3...\"."
+msgstr ""
#. AHCua
#: header_with_chapter.xhp
@@ -7774,14 +7783,14 @@ msgctxt ""
msgid "Position the cursor at the place where no hyphenation should occur."
msgstr "Coloque'l cursor nel llugar onde nun se debe producir la división de pallabres."
-#. pciJs
+#. eFYEG
#: hyphen_prevent.xhp
msgctxt ""
"hyphen_prevent.xhp\n"
"par_id0302200910262867\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Formatting Mark - No-width no break</item>."
-msgstr "Escueya <item type=\"menuitem\">Inxertar - Marca de formatu - Ligadura</item>."
+msgid "Choose <menuitem>Insert - Formatting Mark - Word Joiner</menuitem>."
+msgstr ""
#. 6u4r9
#: hyphen_prevent.xhp
@@ -8926,22 +8935,22 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Calque <emph>Aceutar</emph>."
-#. A74Fc
+#. FiGft
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <menuitem>Additional Styles</menuitem> check box in the <menuitem>Create from</menuitem> area, and then click the <menuitem>Assign styles</menuitem> button next to the check box. In the <menuitem>Assign Styles</menuitem> dialog, click the style in the list, and then click the <menuitem>>></menuitem> or the <menuitem><<</menuitem> button to define the outline level for the paragraph style."
msgstr ""
-#. a7Nyb
+#. mXE4E
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id1001574720273772\n"
"help.text"
-msgid "%PRODUCTNAME creates the table of contents entries based on the chapter level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
+msgid "%PRODUCTNAME creates the table of contents entries based on the outline level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
msgstr ""
#. Fdoe5
@@ -9619,32 +9628,32 @@ msgctxt ""
msgid "<bookmark_value>numbering; combining</bookmark_value> <bookmark_value>merging;numbered lists</bookmark_value> <bookmark_value>joining;numbered lists</bookmark_value> <bookmark_value>lists;combining numbered lists</bookmark_value> <bookmark_value>paragraphs;numbering non-consecutive</bookmark_value>"
msgstr "<bookmark_value>numberación;combinar</bookmark_value> <bookmark_value>combinar;llistes numberaes</bookmark_value> <bookmark_value>xunir;llistes numberaes</bookmark_value> <bookmark_value>llistes;combinar llistes numberaes</bookmark_value> <bookmark_value>párrafos;numberar non consecutivos</bookmark_value>"
-#. aUM78
+#. uwK2S
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3150495\n"
"help.text"
-msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Numbered Lists</link></variable>"
-msgstr "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combinar llistes numberaes\">Combinar llistes numberaes</link></variable>"
+msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Ordered Lists</link></variable>"
+msgstr ""
-#. ygDg8
+#. kFGF5
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3149692\n"
"help.text"
-msgid "You can combine numbered lists into a single consecutively numbered list."
-msgstr "Pue combinar llistes numberaes nuna única llista numberada consecutivamente."
+msgid "You can combine two ordered lists into a single list."
+msgstr ""
-#. G4bPG
+#. 2mCAG
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3149452\n"
"help.text"
-msgid "To Combine Consecutive Numbered Lists"
-msgstr "Pa combinar llistes numberaes consecutives"
+msgid "To Combine Two Ordered Lists"
+msgstr ""
#. e25XR
#: join_numbered_lists.xhp
@@ -9655,23 +9664,23 @@ msgctxt ""
msgid "Select all of the paragraphs in the lists."
msgstr "Escueya tolos párrafos nes llistes."
-#. FnnAw
+#. wTYyb
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3155911\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "Na barra <item type=\"menuitem\">Formatu</item>, faiga doble clic nel iconu <item type=\"menuitem\">Activar/desactivar numberación</item>."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
+msgstr ""
-#. huoiN
+#. yCERR
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3155870\n"
"help.text"
-msgid "To Create a Numbered List From Non-consecutive Paragraphs:"
-msgstr "Pa crear una llista numberada dende párrafos non consecutivos:"
+msgid "To Create a Ordered List From Non-consecutive Paragraphs"
+msgstr ""
#. 3fmSg
#: join_numbered_lists.xhp
@@ -9691,14 +9700,23 @@ msgctxt ""
msgid "Continue to hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and drag a selection in each numbered paragraph of the lists you want to combine."
msgstr ""
-#. mLFjo
+#. RaZCA
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3145102\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "Na barra <item type=\"menuitem\">Formatu</item>, faiga doble clic nel iconu <item type=\"menuitem\">Activar/desactivar numberación</item>."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
+msgstr ""
+
+#. RNYoM
+#: join_numbered_lists.xhp
+msgctxt ""
+"join_numbered_lists.xhp\n"
+"par_id751615828987862\n"
+"help.text"
+msgid "To add selected paragraphs to an existing list, use <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
+msgstr ""
#. rDMRb
#: jump2statusbar.xhp
@@ -10654,13 +10672,13 @@ msgctxt ""
msgid "All paragraph styles are based on the \"Default\" style."
msgstr "Tolos estilos de párrafu basar nel estilu \"Predetermináu\"."
-#. zxroA
+#. 6Bnc6
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150931\n"
"help.text"
-msgid "Click the <emph>Outline & Numbering</emph> tab."
+msgid "Click the <emph>Outline & List</emph> tab."
msgstr ""
#. kfFgy
@@ -10744,13 +10762,13 @@ msgctxt ""
msgid "Click in a paragraph."
msgstr "Calque nun párrafu."
-#. En2MK
+#. pvF59
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150721\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Outline & Numbering</item> tab."
+msgid "Choose <menuitem>Format - Paragraph</menuitem>, and then click the <menuitem>Outline & List</menuitem> tab."
msgstr ""
#. DB5Bp
@@ -10798,14 +10816,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">Tools - Line Numbering</link>"
msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Ferramientes - Numberación de llinies\">Ferramientes - Numberación de llinies</link>"
-#. y2EtS
+#. PG4ys
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Format - Paragraph - Numbering\">Format - Paragraph - Numbering</link>"
-msgstr "<link href=\"text/swriter/01/05030800.xhp\" name=\"Formatu - Párrafo - Numberación\">Formatu - Párrafu - Numberación</link>"
+msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
+msgstr ""
#. foq8S
#: numbering_lines.xhp
@@ -10816,14 +10834,14 @@ msgctxt ""
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
msgstr ""
-#. PngCd
+#. EQANu
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"tit\n"
"help.text"
-msgid "Modifying Numbering in a Numbered List"
-msgstr "Modificar la numberación nuna llista numberada"
+msgid "Modifying Numbering in an Ordered List"
+msgstr ""
#. CZCFE
#: numbering_paras.xhp
@@ -10834,41 +10852,32 @@ msgctxt ""
msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</bookmark_value>"
msgstr ""
-#. vsLZ8
+#. wER6G
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3149637\n"
"help.text"
-msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in a Numbered List</link></variable>"
-msgstr "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modificar la numberación nuna llista numberada\">Modificar la numberación nuna llista numberada</link></variable>"
+msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in an Ordered List</link></variable>"
+msgstr ""
-#. UkDzC
+#. eP9Ei
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3145092\n"
"help.text"
-msgid "You can remove the numbering from a paragraph in a numbered list or change the number that a numbered list starts with."
-msgstr "Pue quitar la numberación d'un párrafu nuna llista numberada o camudar el númberu col que tenga d'empezar una llista numberada."
-
-#. 4arAA
-#: numbering_paras.xhp
-msgctxt ""
-"numbering_paras.xhp\n"
-"par_id2172612\n"
-"help.text"
-msgid "If you want numbered headings, use the <menuitem>Tools - Chapter Numbering</menuitem> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
+msgid "You can remove the numbering from a paragraph in an ordered list or change the number that an ordered list starts with."
msgstr ""
-#. XdFDM
+#. o2d3C
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3145107\n"
"help.text"
-msgid "To Remove the Number From a Paragraph in a Numbered List"
-msgstr "Pa desaniciar el númberu d'un párrafu nuna llista numberada"
+msgid "To Remove the Number From a Paragraph in an Ordered List"
+msgstr ""
#. Bdddz
#: numbering_paras.xhp
@@ -10897,32 +10906,32 @@ msgctxt ""
msgid "To remove the number while preserving the indent of the paragraph, press the Backspace key."
msgstr "Pa desaniciar el númberu mientres se caltién la identación del parrafo, prima la tecla de retrocesu."
-#. vpCsg
+#. cszDd
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "To remove the number and the indent of the paragraph, click the <emph>Numbering on/off</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
-msgstr "Pa desaniciar el númberu de identación de párrafos, faiga clic nel iconu<emph>Numberación activada/desactivada</emph> na barra de <emph>Formatu</emph>. Si guarda'l documentu en formatu HTML, crearáse una llista de numberación pa los párrafos numberaos nel párrafu que sigui al actual."
+msgid "To remove the number and the indent of the paragraph, click the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
+msgstr ""
-#. dHiFt
+#. 4sN9H
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3154856\n"
"help.text"
-msgid "To Change the Number That a Numbered List Starts With"
-msgstr "Pa camudar el númberu pol qu'empieza una llista numberada"
+msgid "To Change the Number That an Ordered List Starts With"
+msgstr ""
-#. s3SHA
+#. rgBxU
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3155877\n"
"help.text"
-msgid "Click anywhere in the numbered list."
-msgstr "Calque en cualquier llugar de la llista numberada."
+msgid "Click anywhere in the ordered list."
+msgstr ""
#. Nkqj8
#: numbering_paras.xhp
@@ -12085,14 +12094,14 @@ msgctxt ""
msgid "Creating and Applying Page Styles"
msgstr "Crear y aplicar estilos de páxina"
-#. BFGvL
+#. fPbBS
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"bm_id7071138\n"
"help.text"
-msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value>"
-msgstr "<bookmark_value>estilos de páxina;crear y aplicar</bookmark_value> <bookmark_value>definir;estilos de páxina</bookmark_value> <bookmark_value>estilos;pa páxines</bookmark_value>"
+msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value> <bookmark_value>overriding next style;for pages</bookmark_value>"
+msgstr ""
#. MM4EQ
#: pagestyles.xhp
@@ -12211,6 +12220,15 @@ msgctxt ""
msgid "Click in the page that you want to apply the page style to."
msgstr "Calque la páxina a la que deseye aplicar l'estilu."
+#. vF8n9
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id471615462517274\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
#. GC7eD
#: pagestyles.xhp
msgctxt ""
@@ -12229,6 +12247,78 @@ msgctxt ""
msgid "Double-click a name in the list."
msgstr "Calque dos vegaes sobre un nome de la llista."
+#. wAew8
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615460923756\n"
+"help.text"
+msgid "Right-click the page style displayed in the <link href=\"text/shared/01/03060000\" name=\"Status Bar\">Status Bar</link>. Select another page style."
+msgstr ""
+
+#. ombta
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"hd_id181615419889677\n"
+"help.text"
+msgid "To Manually Override the “Next style” of a Page Style"
+msgstr ""
+
+#. mX6AF
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615419994433\n"
+"help.text"
+msgid "Place cursor between the page with the page style and the page with the style specified in <emph>Next style</emph>."
+msgstr ""
+
+#. V4dVd
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id301615420000676\n"
+"help.text"
+msgid "Right-click and choose <menuitem>Edit Page Break</menuitem>."
+msgstr ""
+
+#. rsZHm
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id271615420006519\n"
+"help.text"
+msgid "Select the <emph>With page style</emph> checkbox."
+msgstr ""
+
+#. wdCZW
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615420013170\n"
+"help.text"
+msgid "Enter the page style to be applied."
+msgstr ""
+
+#. Fcn83
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id231615420303511\n"
+"help.text"
+msgid "See <link href=\"text/swriter/guide/pageorientation.xhp#scope\" name=\"Next Style\">Manually Defined Range of a Page style</link>."
+msgstr ""
+
+#. 2BGUb
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615463137607\n"
+"help.text"
+msgid "A special situation arises when a <emph>Next style</emph> is different than the page style itself, and you want to apply that page style to two consecutive pages. For example, if you have applied <emph>First Page</emph> style to a page, and want to apply First Page style again to the immediately following page, then you must manually override First Page style, because it is configured to be followed by <emph>Default Page Style</emph>."
+msgstr ""
+
#. enqf2
#: pagestyles.xhp
msgctxt ""
@@ -18322,14 +18412,14 @@ msgctxt ""
msgid "Adding Bullets"
msgstr "Amestar viñetes"
-#. npXYA
+#. 6sLBy
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"bm_id3155186\n"
"help.text"
-msgid "<bookmark_value>bullet lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</bookmark_value>"
-msgstr "<bookmark_value>llistes con viñetes;activar y desactivar</bookmark_value> <bookmark_value>párrafos; con viñetes</bookmark_value> <bookmark_value>viñetes;amestar y editar</bookmark_value> <bookmark_value>dar formatu;viñetes</bookmark_value> <bookmark_value>quitar;viñetes en documentos de testu</bookmark_value> <bookmark_value>camudar;símbolos de viñeta</bookmark_value>"
+msgid "<bookmark_value>unordered lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</bookmark_value>"
+msgstr ""
#. fHxYh
#: using_numbered_lists.xhp
@@ -18358,23 +18448,23 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add bullets to."
msgstr "Escueya los párrafos a los que se deseyen amestar viñetes."
-#. SjDdr
+#. qaN2Z
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3149635\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Bullets On/Off</item> icon <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">Icon</alt></image> (Shift-F12)."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Unordered List</menuitem> icon (<keycode>Shift+F12</keycode>)."
msgstr ""
-#. fd4ap
+#. nQCke
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3145403\n"
"help.text"
-msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Bullets On/Off</emph> icon on the <emph>Formatting</emph> Bar."
-msgstr "Pa desaniciar viñetes, escueya los párrafos con viñetes y faiga clic nel iconu <emph>Activar/desactivar viñetes</emph> de la barra <emph>Formatu</emph>."
+msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Toggle Unordered List</emph> icon on the <emph>Formatting</emph> Bar."
+msgstr ""
#. HpLDk
#: using_numbered_lists.xhp
@@ -18385,22 +18475,22 @@ msgctxt ""
msgid "To Format Bullets"
msgstr "Pa dar formatu a viñetes"
-#. eLxDt
+#. gUFZk
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3154416\n"
"help.text"
-msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>."
-msgstr "Pa camudar el formatu d'una llista con viñetes, escueya <item type=\"menuitem\">Formatu - Numberación y viñetes</item>."
+msgid "To change the formatting of an unordered list, choose <menuitem>Format - Bullets and Numbering</menuitem>."
+msgstr ""
-#. wyMSC
+#. qZ6Zu
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3153390\n"
"help.text"
-msgid "Click on the <item type=\"menuitem\">Bullet</item> tab or the <item type=\"menuitem\">Image</item> tab, and then select a symbol style in the <item type=\"menuitem\">Selection</item> area."
+msgid "Click on the <menuitem>Unordered</menuitem> tab or the <menuitem>Image</menuitem> tab, and then select a symbol style in the <menuitem>Selection</menuitem> area."
msgstr ""
#. XtKb5
@@ -18421,14 +18511,14 @@ msgctxt ""
msgid "Adding Numbering"
msgstr "Amestar numberación"
-#. UTBpr
+#. pGetS
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"bm_id3147418\n"
"help.text"
-msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs; numbering on/off</bookmark_value> <bookmark_value>formatting;numbered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
-msgstr "<bookmark_value>numberación;párrafos, activar y desactivar</bookmark_value> <bookmark_value>párrafos;activar y desactivar numberación</bookmark_value> <bookmark_value>dar formatu;llistes numberaes</bookmark_value> <bookmark_value>inxertar; numberación</bookmark_value>"
+msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs;toggle ordered list</bookmark_value> <bookmark_value>formatting;ordered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
+msgstr ""
#. ZPrUH
#: using_numbered_lists2.xhp
@@ -18457,76 +18547,112 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add numbering to."
msgstr "Escueya los párrafos a los que deseye amestar numberación."
-#. TZrEV
+#. PAGDn
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id181615764064889\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. B2NZk
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3149968\n"
"help.text"
-msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Numbered List</emph> icon (<keycode>F12</keycode>)."
+msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Ordered List</emph> icon (<keycode>F12</keycode>)"
msgstr ""
-#. seYCG
+#. dpmx5
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id3149573\n"
+"par_id211615764184529\n"
"help.text"
-msgid "To change the formatting and the hierarchy of a numbered list, click in the list, and then open the <emph>Bullets and Numbering</emph> toolbar."
-msgstr "Pa camudar el formatu y la xerarquía d'una llista numberada, faiga clic na llista y abra la barra de ferramientes <emph>Numberación y viñetes</emph>."
+msgid "Right-click, choose <menuitem>Lists</menuitem>, then select a list style."
+msgstr ""
-#. cBsKj
+#. dQ6VP
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id91611756820703\n"
+"par_id941615766439690\n"
"help.text"
-msgid "<image src=\"cmd/lc_defaultnumbering.png\" id=\"img_id531611756820703\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id961611756820703\">Toggle Numbered List Icon</alt></image>"
+msgid "A <link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Paragraph Style\">paragraph style</link> can be configured to add numbering."
msgstr ""
-#. 8rCsx
+#. 96JB9
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id141611756820703\n"
+"hd_id861615765870820\n"
"help.text"
-msgid "Toggle Numbered List"
+msgid "To Remove Paragraphs from an Ordered List"
msgstr ""
-#. 4KDug
+#. PwFjK
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3153365\n"
"help.text"
-msgid "To remove numbering, select the numbered paragraphs, and then click the <emph>Toggle Numbered List</emph> icon on the <emph>Formatting</emph> Bar."
+msgid "To remove numbering, select the numbered paragraphs, then click the <emph>Toggle Ordered List</emph> icon or the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar."
msgstr ""
-#. SWoqA
+#. iFCsz
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"hd_id3154233\n"
"help.text"
-msgid "To Format a Numbered List"
-msgstr "Pa dar formatu a una llista numberada"
+msgid "To Format an Ordered List"
+msgstr ""
-#. AXMM3
+#. XpCAC
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3154246\n"
"help.text"
-msgid "To change the formatting of a numbered list, click in the list, then choose <emph>Format - Bullets and Numbering</emph>."
-msgstr "Pa camudar el formatu d'una llista numberada, faiga clic na llista y escueya <emph>Formatu - Numberación y viñetes</emph>."
+msgid "To change the formatting of a numbered list, do one of the following:"
+msgstr ""
+
+#. ctBEK
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id801615765243022\n"
+"help.text"
+msgid "Click in the list, then choose <menuitem>Format - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. ThdUE
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id161615765280165\n"
+"help.text"
+msgid "Right-click in the list, then choose <menuitem>Lists - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. xgmVR
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id3149573\n"
+"help.text"
+msgid "To change the hierarchy of an ordered list, click in the list, then use the icons in the <emph>Bullets and Numbering</emph> toolbar."
+msgstr ""
-#. 9MZVK
+#. y2KEo
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id21611757614734\n"
"help.text"
-msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Numbered List</emph> twice."
+msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Ordered List</emph> twice. Any formatting on the pasted item is reset to default."
msgstr ""
#. MAprK
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office.po b/source/ast/officecfg/registry/data/org/openoffice/Office.po
index 0591dda602c..cc70d37be98 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2020-11-02 14:42+0000\n"
+"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022490.000000\n"
#. HhMVS
@@ -285,7 +285,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Address Data Source..."
-msgstr "Orixe de datos de direiciones..."
+msgstr "Orixe de datos de señes..."
#. W8KTU
#: DataAccess.xcu
@@ -305,7 +305,7 @@ msgctxt ""
"HisDescription\n"
"value.text"
msgid "Collected Addresses"
-msgstr "Señes Collechaes"
+msgstr "Señes collechaes"
#. LoQgV
#: DataAccess.xcu
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 00e9a21c3ba..56eb153bb7f 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-08 11:26+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022492.000000\n"
#. W5ukN
@@ -1311,14 +1311,24 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "Dir a la siguiente caxella non protexida"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
+msgid "Select Visible Rows Only"
+msgstr ""
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
msgstr ""
#. LEvrC
@@ -3217,15 +3227,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "~Formatu de páxina..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "~Páxina..."
+msgid "~Page Style..."
+msgstr ""
#. C83UC
#: CalcCommands.xcu
@@ -9561,6 +9571,26 @@ msgctxt ""
msgid "Layout"
msgstr "Diseñu"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -16068,7 +16098,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Numbering"
-msgstr "Numberando"
+msgstr "Numberación"
#. HcsCB
#: GenericCategories.xcu
@@ -20253,14 +20283,13 @@ msgstr "Xubir un nivel"
#. 3WakF
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DesignerDialog\n"
"Label\n"
"value.text"
msgid "Styles"
-msgstr "~Estilos"
+msgstr "Estilos"
#. iMBEm
#: GenericCommands.xcu
@@ -20290,7 +20319,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Styles"
-msgstr ""
+msgstr "Estilos"
#. ptyRB
#: GenericCommands.xcu
@@ -20675,7 +20704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pattern Field"
-msgstr "Campu de patrón"
+msgstr "Campu mazcaritáu"
#. 6xPxf
#: GenericCommands.xcu
@@ -20685,7 +20714,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "File Selection"
-msgstr "Escoyeta de ficheru"
+msgstr "Esbilla de ficheros"
#. 58dms
#: GenericCommands.xcu
@@ -20846,36 +20875,26 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Background Color"
-msgstr "Color de Fondu"
+msgstr "Color de fondu"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -20896,7 +20915,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Hyperlink"
-msgstr "Abrir hiperenllaz"
+msgstr "Abrir l'hiperenllaz"
#. 5SC3G
#: GenericCommands.xcu
@@ -20916,7 +20935,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Edit Hyperlink..."
-msgstr ""
+msgstr "Editar l'hiperenllaz..."
#. a7D2m
#: GenericCommands.xcu
@@ -23642,15 +23661,15 @@ msgctxt ""
msgid "~Export As"
msgstr ""
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export as PDF"
+msgstr ""
#. YsFV2
#: GenericCommands.xcu
@@ -23674,15 +23693,15 @@ msgctxt ""
msgid "Export as PDF"
msgstr "Esportar como P~DF..."
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export Directly as PDF"
+msgstr ""
#. 8eSWp
#: GenericCommands.xcu
@@ -24347,7 +24366,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "File Selection"
-msgstr "Escoyeta de ficheru"
+msgstr "Esbilla de ficheros"
#. AAWcZ
#: GenericCommands.xcu
@@ -24438,7 +24457,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Record"
-msgstr "Desaniciar Rexistru"
+msgstr "Desaniciar el rexistru"
#. crfxK
#: GenericCommands.xcu
@@ -24448,7 +24467,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Absolute Record"
-msgstr "Númberu de rexistru"
+msgstr "Rexistru absolutu"
#. fZy3X
#: GenericCommands.xcu
@@ -24488,7 +24507,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Total No. of Records"
-msgstr "Númberu de Rexistru de datos"
+msgstr "Nᵘ total de rexistros"
#. 8Z6Sz
#: GenericCommands.xcu
@@ -24518,7 +24537,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Design Mode"
-msgstr ""
+msgstr "Mou diseñu"
#. QESE8
#: GenericCommands.xcu
@@ -24750,7 +24769,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pattern Field"
-msgstr "Campu de patrón"
+msgstr "Campu mazcaritáu"
#. FBkUx
#: GenericCommands.xcu
@@ -25773,15 +25792,15 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
-msgstr ""
+msgid "Development Tools"
+msgstr "Ferramientes de desendolcu"
#. jLF5j
#: GenericCommands.xcu
@@ -26376,14 +26395,14 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr ""
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
+msgid "Word ~Joiner"
msgstr ""
#. UvwGS
@@ -28595,7 +28614,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. rUSaA
#: ReportCommands.xcu
@@ -28812,14 +28831,13 @@ msgstr "Restolador"
#. 77x3J
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.StyleListDeck\n"
"Title\n"
"value.text"
msgid "Styles"
-msgstr "~Estilos"
+msgstr "Estilos"
#. f29Vc
#: Sidebar.xcu
@@ -29127,7 +29145,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. HGfbS
#: Sidebar.xcu
@@ -33741,6 +33759,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Reentamar numberación"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33972,6 +34000,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "Escoyer párrafu"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -34253,16 +34291,6 @@ msgctxt ""
msgid "Fields"
msgstr "Campos"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "Fondu de caráuter"
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34715,15 +34743,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "Mou d'escoyeta"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "Continuar numberación anterior"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr ""
#. oCEjg
#: WriterCommands.xcu
diff --git a/source/ast/oox/messages.po b/source/ast/oox/messages.po
index 78e22f67b5c..24454e54eda 100644
--- a/source/ast/oox/messages.po
+++ b/source/ast/oox/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/ooxmessages/ast/>\n"
"Language: ast\n"
@@ -90,4 +90,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/reportdesign/messages.po b/source/ast/reportdesign/messages.po
index 62473f3d791..b015dc9f91d 100644
--- a/source/ast/reportdesign/messages.po
+++ b/source/ast/reportdesign/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:56+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1516047320.000000\n"
#. FBVr9
@@ -252,7 +252,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. NaDFE
#: reportdesign/inc/strings.hrc:25
@@ -588,7 +588,7 @@ msgstr "Ensin nengún control marcáu"
#: reportdesign/inc/strings.hrc:82
msgctxt "RID_STR_BRWTITLE_MULTISELECT"
msgid "Multiselection"
-msgstr "Seleición múltiple"
+msgstr "Esbilla múltiple"
#. qT2Ed
#: reportdesign/inc/strings.hrc:83
@@ -1170,10 +1170,9 @@ msgstr "Fondu"
#. g9KPD
#: reportdesign/uiconfig/dbreport/ui/chardialog.ui:377
-#, fuzzy
msgctxt "chardialog|alignment"
msgid "Alignment"
-msgstr "_Alliniación:"
+msgstr "Alliniamientu"
#. 62SER
#: reportdesign/uiconfig/dbreport/ui/condformatdialog.ui:10
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index ae65258c756..8c5a9a19eb0 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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
"Language: ast\n"
@@ -147,7 +147,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. BDDVk
#. * This file is reserved for string IDs of permanently loaded resident string
@@ -1030,7 +1030,7 @@ msgstr "Rellenar fueyes"
#: sc/inc/globstr.hrc:180
msgctxt "STR_UPDATE_SCENARIO"
msgid "Add selected ranges to current scenario?"
-msgstr "¿Amestar los rangos seleicionaos al escenariu actual?"
+msgstr "¿Amestar los intervalos seleicionaos al escenariu actual?"
#. D6qcp
#: sc/inc/globstr.hrc:181
@@ -16757,10 +16757,9 @@ msgstr ""
#. pDDme
#: sc/inc/scstyles.hrc:29
-#, fuzzy
msgctxt "RID_CELLSTYLEFAMILY"
msgid "All Styles"
-msgstr "Estilos de caxella"
+msgstr "Tolos estilos"
#. fRpve
#: sc/inc/scstyles.hrc:30
@@ -16784,10 +16783,9 @@ msgstr "Estilos personalizaos"
#. ADhCx
#: sc/inc/scstyles.hrc:38
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
-msgstr "Estilos de caxella"
+msgstr "Tolos estilos"
#. kGzjB
#: sc/inc/scstyles.hrc:39
@@ -19129,10 +19127,9 @@ msgstr "Resultaos a"
#. APZAw
#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:186
-#, fuzzy
msgctxt "analysisofvariancedialog|label4"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. xA3Mm
#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:218
@@ -19315,7 +19312,7 @@ msgstr "La opción marcada especifica que se deseya caltener el modelu del forma
#: sc/uiconfig/scalc/ui/autoformattable.ui:371
msgctxt "autoformattable|alignmentcb"
msgid "Alignment"
-msgstr ""
+msgstr "Alliniamientu"
#. nKX4E
#: sc/uiconfig/scalc/ui/autoformattable.ui:379
@@ -19516,7 +19513,7 @@ msgstr "Allugamientu"
#: sc/uiconfig/scalc/ui/chardialog.ui:279
msgctxt "chardialog|background"
msgid "Highlighting"
-msgstr ""
+msgstr "Resalte"
#. CCjUa
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:11
@@ -19558,10 +19555,9 @@ msgstr "Resultaos a"
#. frEZB
#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:179
-#, fuzzy
msgctxt "chisquaretestdialog|label1"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. BJDYD
#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:211
@@ -20773,10 +20769,9 @@ msgstr "Resultaos a"
#. jJst7
#: sc/uiconfig/scalc/ui/correlationdialog.ui:178
-#, fuzzy
msgctxt "correlationdialog|label4"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. wpJTi
#: sc/uiconfig/scalc/ui/correlationdialog.ui:210
@@ -20824,10 +20819,9 @@ msgstr "Resultaos a"
#. nry3Q
#: sc/uiconfig/scalc/ui/covariancedialog.ui:178
-#, fuzzy
msgctxt "covariancedialog|label1"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. GhcBB
#: sc/uiconfig/scalc/ui/covariancedialog.ui:210
@@ -21084,10 +21078,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "_Fórmules"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -22434,10 +22428,9 @@ msgstr "Resultaos a"
#. Z83k7
#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:179
-#, fuzzy
msgctxt "descriptivestatisticsdialog|label1"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. ABEPC
#: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:211
@@ -22684,10 +22677,9 @@ msgstr "Resultaos a"
#. nq9yR
#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:185
-#, fuzzy
msgctxt "exponentialsmoothingdialog|label5"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. 5bpGm
#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:217
@@ -23199,7 +23191,7 @@ msgstr "Efeutos de fonte"
#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:281
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. MfFdu
#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:329
@@ -23327,7 +23319,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:204
msgctxt "fourieranalysisdialog|label1"
msgid "Data"
-msgstr ""
+msgstr "Datos"
#. zDdDi
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:236
@@ -23369,7 +23361,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:368
msgctxt "fourieranalysisdialog|label3"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#. CAw2k
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:405
@@ -24741,10 +24733,9 @@ msgstr ""
#. eTxm6
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:204
-#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. jsyGd
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:236
@@ -25168,231 +25159,231 @@ msgid "No solution was found."
msgstr ""
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Ficheru"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheru"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
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:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alliniación d'oxetos"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Oxetu"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprentar"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -27401,7 +27392,7 @@ msgstr "Sangríes y espaciáu"
#: sc/uiconfig/scalc/ui/paradialog.ui:183
msgctxt "paradialog|labelTP_PARA_ALIGN"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. EB5A9
#: sc/uiconfig/scalc/ui/paradialog.ui:232
@@ -27450,7 +27441,7 @@ msgstr "Efeutos de fonte"
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:343
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. 2YK98
#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:391
@@ -27803,7 +27794,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#. ypkML
#: sc/uiconfig/scalc/ui/pastespecial.ui:772
@@ -28580,10 +28571,9 @@ msgstr "Xenerador de númberos al debalu"
#. EG6VJ
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:133
-#, fuzzy
msgctxt "randomnumbergenerator|cell-range-label"
msgid "Cell range:"
-msgstr "Rangu de caxelles"
+msgstr "Intervalu de caxelles:"
#. L25fm
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:155
@@ -28593,17 +28583,15 @@ msgstr ""
#. Jy5mE
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:183
-#, fuzzy
msgctxt "randomnumbergenerator|label1"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. fHkms
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:217
-#, fuzzy
msgctxt "randomnumbergenerator|distribution-label"
msgid "Distribution:"
-msgstr "Distribución"
+msgstr "Distribución:"
#. A75xG
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:234
@@ -28785,10 +28773,9 @@ msgstr "Resultaos a"
#. ngLrg
#: sc/uiconfig/scalc/ui/regressiondialog.ui:239
-#, fuzzy
msgctxt "regressiondialog|label1"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. vTmkj
#: sc/uiconfig/scalc/ui/regressiondialog.ui:271
@@ -28855,7 +28842,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/regressiondialog.ui:485
msgctxt "regressiondialog|label4"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#. LU6He
#: sc/uiconfig/scalc/ui/regressiondialog.ui:523
@@ -28903,7 +28890,6 @@ msgstr "El documentu que tas a piques d'esportar tien un elementu o más protex
#. DGfRA
#: sc/uiconfig/scalc/ui/retypepassdialog.ui:124
-#, fuzzy
msgctxt "retypepassdialog|docStatusLabel"
msgid "Status unknown"
msgstr "Estáu desconocíu"
@@ -28919,24 +28905,22 @@ msgstr "Reescribi"
#: sc/uiconfig/scalc/ui/retypepassdialog.ui:152
msgctxt "retypepassdialog|label2"
msgid "Document Protection"
-msgstr ""
+msgstr "Proteición del documentu"
#. TriyK
#: sc/uiconfig/scalc/ui/retypepassdialog.ui:207
msgctxt "retypepassdialog|label3"
msgid "Sheet Protection"
-msgstr ""
+msgstr "Proteición de la fueya"
#. eGMrC
#: sc/uiconfig/scalc/ui/retypepassworddialog.ui:8
-#, fuzzy
msgctxt "retypepassworddialog|RetypePasswordDialog"
msgid "Re-type Password"
msgstr "Reescribi la contraseña"
#. ZvhnQ
#: sc/uiconfig/scalc/ui/retypepassworddialog.ui:87
-#, fuzzy
msgctxt "retypepassworddialog|retypepassword"
msgid "Re-type password"
msgstr "Reescribi la contraseña"
@@ -29119,7 +29103,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/scenariodialog.ui:113
msgctxt "scenariodialog|label1"
msgid "Name of Scenario"
-msgstr ""
+msgstr "Nome del escenariu"
#. GBB6Y
#: sc/uiconfig/scalc/ui/scenariodialog.ui:157
@@ -32827,10 +32811,9 @@ msgstr "Resultaos a"
#. FzCYq
#: sc/uiconfig/scalc/ui/ttestdialog.ui:217
-#, fuzzy
msgctxt "ttestdialog|label1"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. STA6h
#: sc/uiconfig/scalc/ui/ttestdialog.ui:249
@@ -33261,10 +33244,9 @@ msgstr "Resultaos a"
#. k62LL
#: sc/uiconfig/scalc/ui/ztestdialog.ui:217
-#, fuzzy
msgctxt "ztestdialog|label1"
msgid "Data"
-msgstr "Data"
+msgstr "Datos"
#. SnazD
#: sc/uiconfig/scalc/ui/ztestdialog.ui:249
diff --git a/source/ast/scaddins/messages.po b/source/ast/scaddins/messages.po
index 044156abdf3..05dd758bb45 100644
--- a/source/ast/scaddins/messages.po
+++ b/source/ast/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: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/ast/>\n"
"Language: ast\n"
@@ -4122,7 +4122,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. VGRBw
#: scaddins/inc/datefunc.hrc:27
diff --git a/source/ast/sccomp/messages.po b/source/ast/sccomp/messages.po
index 1c8464a04c8..2904d316705 100644
--- a/source/ast/sccomp/messages.po
+++ b/source/ast/sccomp/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sccompmessages/ast/>\n"
"Language: ast\n"
@@ -164,4 +164,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index 43b6d931c97..7e32dd64f02 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022496.000000\n"
#. WDjkB
@@ -283,7 +283,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. uvDNG
#: sd/inc/errhdl.hrc:31
@@ -906,158 +906,164 @@ msgid ""
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "Crear diapositives"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "Camudar el formatu de páxina"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "Camudar márxenes de páxina"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "E~ditar"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Desaniciar diapositives"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "Nun se pudo establecer el formatu de documentu na imprentadora."
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Nun se pue abrir el ficheru d'imaxe"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Nun se pue lleer el ficheru d'imaxe"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Formatu d'imaxe desconocíu"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Esta versión del ficheru d'imaxe nun tien sofitu"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Nun s'alcontró el filtru d'imaxe"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "Nun hai memoria bastante pa importar la imaxe"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Oxetos"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "Se completó la igua ortográfica del documentu."
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "Se completó la igua ortográfica de los oxetos esbillaos."
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "¿Tresformar en curva l'oxetu escoyíu?"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "Camudar oxetu de presentación «$»"
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "Diseñu de diapositiva"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr ""
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "Inxertar ficheru"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "Inxertar caráuter especial"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "Aplicar diseñu de presentación"
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "Re~producir"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "~Detener"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "Tamañu Orixinal"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1067,128 +1073,128 @@ msgstr ""
"Quies especificar una nueva?"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "Denguna aición"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "Dir a la páxina anterior"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "Dir a la páxina siguiente"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "Dir a la primera páxina"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "Dir a la cabera páxina"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "Dir a páxina o oxetu"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "Dir al documentu"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr ""
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr "Arrancar l'aición del oxetu"
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "Executar programa"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "Executar macro"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "Colar d'una presentación"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "Oxetivu"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "Aic~ión"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr ""
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "Páxina / oxetu"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "Documentu"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "Programa"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "Macro"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr ""
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1197,254 +1203,254 @@ msgstr[1] "%1 diapositives"
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "Inxertar testu"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr ""
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "Intelixente"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "Manzorga"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "Mandrecha"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "Cimero"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "Cabero"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "¿Arriba a la izquierda?"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "¿Abaxo a la izquierda?"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "¿Arriba a la drecha?"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "¿Abaxo a la drecha?"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "Horizontal"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "Vertical"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "¿Toos?"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr "Esta aición nun se pue executar nel mou en vivo."
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "Volver"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "Siguir"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "Vista xeneral"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "Trocador de colores"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr "Transición gradual"
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "Ampliar páxina"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "Diapositiva de tabla de conteníos"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr "Nesti momentu nun hai denguna fonte SANE disponible."
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr "Nesti momentu nun hai denguna fonte TWAIN disponible."
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "Fixu"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "Variable"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "Estándar"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "Estándar (cortu)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "Estándar (llargu)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "Nome ficheru"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "Nome Camín/Ficheru"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "Camín"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "Nome ficheru ensin extensión"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr "Nueva presentación personalizada de diapositives"
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "Copiar "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr ""
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr ""
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr "Desagrupar metaficheru(os)..."
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr "Nun se fue a desagrupar tolos oxetos de dibuxu."
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr ""
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr ""
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1454,158 +1460,158 @@ msgstr ""
"¿Quies sobroscribilu?"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "Testu"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "Hiperenllaz"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "Enllaz visitáu"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "Enllaz activu"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "Notes"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "Tabla de conteníu"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr "Calca equí pa entamar"
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "Autor"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr "Corréu"
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "Páxina d'entamu"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr "Más información"
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "Descargar fonte de presentación"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr "El to restolador nun tien sofitu pa los marcos flotantes."
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "Primer páxina"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "Cabera páxina"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "Testu"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Imaxe"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "Con conteníu"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "Ensin conteníos"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "A la páxina indicada"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "Convertir bitmap en polígonu"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr "Calca pa terminar la presentación..."
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "Pausa..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr "Asignar favoritu 3D"
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
#, fuzzy
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "Filtru d'imaxes"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
#, fuzzy
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
@@ -1616,830 +1622,830 @@ msgstr ""
"nun ye un ficheru de soníu válidu!"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "Convertir a metaficheru"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "Convertir en bitmap"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "Nun se pudo crear el ficheru $(URL1)."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "Nun se pudo abrir el ficheru $(URL1)."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr "Nun se pudo copiar el ficheru $(URL1) a $(URL2)"
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr ""
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "Camudar nome a diapositiva"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr ""
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr ""
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "Nome"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr ""
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr "Estaya de títulu p'autodiseños"
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr "Área del oxetu pa diseños automáticos"
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "Estaya de pie de páxina"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "Estaya de Testera"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "Estaya de data"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "Estaya de númberu de diapositiva"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "Estaya de númberu de páxina"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<testera>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<pie de páxina>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<data/tiempu>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<númberu>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<cuntar>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr ""
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr ""
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "Estaya de notes"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "Conversión d'Hangul/Hanja"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "Diapositives"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "Páxines"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "Vista previa non disponible"
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "Preparando vista previa"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "Distribuciones"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr ""
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
#, fuzzy
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "Opciones de presentación"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "Estilos de caxelles"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
-msgstr "Formes %1"
+msgstr "Forma %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr "Afitar imaxe de fondu"
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "Comentarios"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "Reaniciar conteníu de diapositives"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "Inxertar tabla"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "Inxertar diagrama"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "Inxertar una imaxe"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "Insertar soníu o videu"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "Arrastra y suelta páxines"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "Arrastra y suelta diapositives"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "Amieste imaxes al álbum."
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "Diapositiva de testu"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr "El direutoriu de destín llocal «%FILENAME» nun ta baleru. Pue ser que se sobrescriban dellos ficheros. ¿Quies siguir?"
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "Fondu"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "Oxetos de fondu"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "Diseñu"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr "Controles"
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr "Llinies de cota"
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "Diapositiva"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "Páxina"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "Diapositiva"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr "Diapositiva maestra"
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr "Diapositiva maestra:"
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Páxina maestra"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr "Páxina maestra:"
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Notes)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Folletu"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Calca pa editar el formatu del testu del títulu"
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Calca pa editar el formatu del testu del esquema"
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr ""
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr ""
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Nivel segundu del esquema"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Nivel terceru del esquema"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Nivel cuartu del esquema"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Nivel quintu del esquema"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Nivel sestu del esquema"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Nivel sétimu del esquema"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Calca pa mover la diapositiva"
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Calca pa editar el formatu de les notes"
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr ""
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr ""
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "Calca p'amestar un títulu"
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Calca p'amestar testu"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Calca p'amestar testu"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "Calca p'amestar notes"
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr ""
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr ""
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr ""
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "Faiga doble clic p'amestar una imaxe"
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "Faiga doble clic p'amestar un oxetu"
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "Faiga doble clic p'amestar una gráfica"
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "Faiga doble clic p'amestar un organigrama"
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "Faiga doble clic p'amestar una fueya de cálculu"
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Predetermináu"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Títulu"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr "Estilu de dibuxu predetermináu"
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Mover diapositives"
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr ""
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr ""
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr "Propiedaes de la diapositiva"
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Oxetu ensin rellenu"
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "Oxetu ensin rellenu nin llinia"
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Testu"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr "A4"
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr ""
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr ""
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr ""
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr "A0"
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr ""
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr ""
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr ""
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr ""
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
-msgstr ""
+msgstr "Formes"
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
-msgstr ""
+msgstr "Llinies"
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr ""
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr ""
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr ""
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr ""
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr ""
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr ""
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr ""
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr ""
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr ""
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr ""
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr ""
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr ""
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Títulu"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Sotítulu"
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Esquema"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Oxetos de fondu"
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Fondu"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Notes"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "Importación de PowerPoint"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Guardar documentu"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Cuadrilla de la caxella"
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Encabezáu"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Filera de total"
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Primer columna"
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Cabera columna"
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
@@ -2447,659 +2453,659 @@ msgstr ""
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Mou Dibuxu"
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Mou Dibuxu"
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Ver esquema"
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Vista de diapositives"
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Equí ye onde ordenes les diapositives."
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Ver notes"
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Vista de papeleta"
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Presentación"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Presentación"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Presentación"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Documentu"
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "Mou presentación"
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Presentación"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "Presentación de %PRODUCTNAME"
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Títulu"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Fuera de llinia"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Sotítulu"
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Páxina"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Notes"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Documentu"
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "_Pie"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Encabezáu"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Data"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Númberu"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(namái llectura)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "dengún"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "Hasta'l siguiente clic"
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "Hasta'l final de la diapositiva"
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "_Direición:"
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Ampliación"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "Radios"
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Primer columna"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "Segundu color"
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "Primer columna"
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Estilu:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Tipografía"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Primer columna"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Estilu:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Tipu de lletra"
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Color de la llinia"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Tamañu de fonte"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Tamañu"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Importe"
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Color"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(Ensin soníu)"
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(Parar soníu anterior)"
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Otru soníu..."
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Exemplu"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Activar"
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "Camín del usuariu"
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "Caminos de movimientu"
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr ""
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "dengún"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Güéi,"
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Ayeri,"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(ensin autor)"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress aportó al final de la presentación. Quies continuar fasta l'entamu?"
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress aportó al entamu de la presentación. Quies continuar fasta'l final?"
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw aportó al final del documentu. Quies continuar fasta l'entamu?"
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw aportó al entamu del documentu. Quies continuar fasta'l final?"
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Inxertar Comentariu"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Desaniciar comentariu(os)"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Mover Comentariu"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Editar Comentariu"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Retrucar a %1"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Reproducción de ficheros multimedia"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Tabla"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Documentu"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr ""
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr ""
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Conteníu"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Nome de la diapositiva"
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Nome de páxina"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Data y tiempu"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Páxines anubríes"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Color"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Tamañu"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "_Folletu"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Cares de la páxina"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Incluir"
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "~Usa namái la bandexa de papel de les preferencies d'impresora"
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr "Páxines:"
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr "Diapositives:"
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress guetó al final de la presentación. Quies siguir fasta l'entamu?"
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress guetó al entamu de la presentación. Quies siguir fasta'l final?"
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw guetó al final de la presentación. Quies siguir fasta l'entamu?"
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw guetó al entamu de la presentación. Quies siguir fasta'l final?"
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr "Animación"
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Enllaz"
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -3497,7 +3503,7 @@ msgstr "Allugamientu"
#: sd/uiconfig/sdraw/ui/drawchardialog.ui:279
msgctxt "drawchardialog|RID_SVXPAGE_BKG"
msgid "Highlighting"
-msgstr ""
+msgstr "Resalte"
#. 7FuBt
#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8
@@ -3551,7 +3557,7 @@ msgstr "Tabuladores"
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:279
msgctxt "drawparadialog|labelTP_PARA_ALIGN"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. 7Ccny
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:328
@@ -3713,7 +3719,7 @@ msgstr "Personalizar"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:713
msgctxt "drawprtldialog|RID_SVXPAGE_ALIGN_PARAGRAPH"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. 9DBTB
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:761
@@ -3731,7 +3737,7 @@ msgstr "Tabuladores"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:857
msgctxt "drawprtldialog|RID_SVXPAGE_BKG"
msgid "Highlighting"
-msgstr ""
+msgstr "Resalte"
#. w9EdD
#: sd/uiconfig/sdraw/ui/insertlayer.ui:8
@@ -5774,7 +5780,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/dockinganimation.ui:358
msgctxt "dockinganimation|alignmentft"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. Njtua
#: sd/uiconfig/simpress/ui/dockinganimation.ui:371
@@ -9720,146 +9726,145 @@ msgid "Sound:"
msgstr "Soníu:"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
#, fuzzy
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "Sin soníu"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
#, fuzzy
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "Detener el soníu anterior"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "Otru soníu..."
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr ""
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "Repetir fasta'l siguiente soníu"
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr "Escueya pa reproducir el soníu repetidamente hasta qu'empiece otru soníu."
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
#, fuzzy
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "Varianza"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr ""
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
#, fuzzy
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "Camudar la transición"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "Al facer clic col mur"
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr "Escueya pa pasar a la siguiente diapositiva con un clic del mur."
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
-#, fuzzy
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
-msgstr "_Automáticamente tres:"
+msgid "After:"
+msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "Escoyer p'avanzar a la próxima diapositiva dempués d'un númberu de segundos. Introduza los segundos nel campu numbérico al llau del botón de xirar, o faiga clic nel botón de seleición."
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "Escoyer p'avanzar a la próxima diapositiva dempués d'un númberu de segundos. Introduza los segundos nel campu numbérico al llau del botón de xirar, o faiga clic nel botón de seleición."
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
#, fuzzy
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "Avanzar diapositiva"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr ""
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr "Aplica la transición de diapositiva escoyida a toles diapositives de la presentación actual."
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
#, fuzzy
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Vista previa automática"
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr "Escueya pa ver les transiciones de diapositives del documentu de forma automática."
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Reproducir"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr "Amuesa una vista previa de la transición de diapositiva actual."
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr ""
@@ -9996,7 +10001,7 @@ msgstr "Coneutor"
#: sd/uiconfig/simpress/ui/templatedialog.ui:727
msgctxt "templatedialog|alignment"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. CdaX3
#: sd/uiconfig/simpress/ui/templatedialog.ui:775
@@ -10012,7 +10017,6 @@ msgstr "Tabuladores"
#. WtrUB
#: sd/uiconfig/simpress/ui/templatedialog.ui:871
-#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
-msgstr "Fondu de caráuter"
+msgstr "Resalte"
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 58c90ba6313..8b6a45d4942 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
+"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -847,9 +847,9 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Denguna"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
msgstr "Imaxe"
@@ -1014,7 +1014,7 @@ msgstr "Testu"
#: include/sfx2/strings.hrc:186
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
-msgstr ""
+msgstr "Espresión regular"
#. TaDCG
#: include/sfx2/strings.hrc:187
@@ -1637,11 +1637,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1662,16 +1662,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1692,10 +1692,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1710,10 +1710,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1758,10 +1758,10 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
+msgid "Sunset"
msgstr ""
#. 73Y2e
@@ -1972,7 +1972,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. F5rSU
#: sfx2/inc/dinfdlg.hrc:27
@@ -2283,6 +2283,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "Etiquetes"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr "Párrafu %1"
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr "Forma %1"
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr "Páxina %1"
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr "Diapositiva %1"
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr "Fueya %1"
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr "Formes"
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr "Tables dinámiques"
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr "Documentu"
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr "Fueyes"
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr "Estilos"
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr "Diapositives"
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr "Páxines"
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr "Párrafos"
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr "Tables"
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr "<Oxetu@%1>"
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2317,7 +2617,7 @@ msgstr "Testu"
#: sfx2/uiconfig/ui/addtargetdialog.ui:170
msgctxt "addtargetdialog|type"
msgid "Regular expression"
-msgstr ""
+msgstr "Espresión regular"
#. wgzA4
#: sfx2/uiconfig/ui/addtargetdialog.ui:171
@@ -2335,13 +2635,13 @@ msgstr "Conteníu:"
#: sfx2/uiconfig/ui/addtargetdialog.ui:204
msgctxt "addtargetdialog|content_predef"
msgid "Credit card numbers"
-msgstr ""
+msgstr "Númberos de tarxetes de creitu"
#. jze4C
#: sfx2/uiconfig/ui/addtargetdialog.ui:205
msgctxt "addtargetdialog|content_predef"
msgid "Email addresses"
-msgstr ""
+msgstr "Direiciones de corréu electrónicu"
#. wDQAu
#: sfx2/uiconfig/ui/addtargetdialog.ui:206
@@ -2637,9 +2937,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2666,10 +2966,9 @@ msgstr "_Pallabres clave"
#. Nayo4
#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
-#, fuzzy
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
-msgstr "_Comentarios"
+msgstr "_Comentarios:"
#. qw238
#: sfx2/uiconfig/ui/descriptioninfopage.ui:79
@@ -2702,90 +3001,156 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
-msgstr ""
+msgstr "Oxetu"
+
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr "Esbilla actual nel documentu"
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
+msgstr "Esbilla actual"
+
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr "Inspeicionar"
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr "Inspeicionar"
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
-msgstr ""
+msgstr "Nome de la clase:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
-msgstr ""
+msgstr "Nome"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
-msgstr ""
+msgstr "Servicios"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
-msgstr ""
+msgstr "Triba"
+
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr "Información"
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
-msgstr ""
+msgstr "Propiedaes"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
-msgstr ""
+msgstr "Métodu"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
-msgstr ""
+msgstr "Métodos"
+
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr "Inspeicionar"
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
@@ -3959,11 +4324,11 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr "Especifica les opciones de configuración d'impresión."
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
-msgstr ""
+msgstr "Más opciones"
#. QrtGb
#: sfx2/uiconfig/ui/password.ui:8
@@ -3993,7 +4358,7 @@ msgstr "Confirmar:"
#: sfx2/uiconfig/ui/password.ui:164
msgctxt "password|pass1ed-atkobject"
msgid "Password"
-msgstr "Contraseña"
+msgstr "Clave"
#. yVorz
#: sfx2/uiconfig/ui/password.ui:165
@@ -4011,7 +4376,7 @@ msgstr ""
#: sfx2/uiconfig/ui/password.ui:200
msgctxt "password|label1"
msgid "Password"
-msgstr "Contraseña"
+msgstr "Clave"
#. zDBUt
#: sfx2/uiconfig/ui/password.ui:232
diff --git a/source/ast/shell/messages.po b/source/ast/shell/messages.po
index 4fd3e301da9..4250186f2d9 100644
--- a/source/ast/shell/messages.po
+++ b/source/ast/shell/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/shellmessages/ast/>\n"
"Language: ast\n"
@@ -118,4 +118,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/starmath/messages.po b/source/ast/starmath/messages.po
index 5738bb0af93..8e35c74578e 100644
--- a/source/ast/starmath/messages.po
+++ b/source/ast/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/ast/>\n"
"Language: ast\n"
@@ -487,2219 +487,2219 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Signu +"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Signu -"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Signu +-"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Signu -+"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "NON booleanu"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Suma +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Restes -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Multiplicación (Puntu)"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Multiplicación (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Multiplicación (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Dixebra (barra oblicua)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "División (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Dixebra (fraición)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr "Fraición"
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Y booleanu"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "O booleanu"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Ye igual a"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Nun ye igual a"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Ye menor que"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Ye mayor que"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Ye menor o igual que"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Ye mayor o igual que"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Ye menor o igual que"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Ye mayor o igual que"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Ye muncho menor que"
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Ye muncho mayor que"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Ye congruente con"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Ye aproximadamente igual a"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Ye asemeyáu a"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Ye asemeyáu o igual"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Ye proporcional a"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Ye ortogonal a"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Ye paralelu a"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Tiende a"
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Ta en"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Nun ta en"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Contién"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Xunión"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Interseición"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Diferencia"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Conxuntu parcial"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Conxuntu parcial o igual"
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Conxuntu superior"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Conxuntu superior o igual"
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Conxuntu non parcial"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Conxuntu non parcial o igual"
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Conxuntu non superior"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Conxuntu non superior o igual"
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Valor absolutu"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Factorial"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Raíz cuadrada"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Raíz n"
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Función esponencial"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Función esponencial"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Llogaritmu natural"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Llogaritmu"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Senu"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Cosenu"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Tanxente"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Cotanxente"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Senu d'arcu"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Arcucosenu"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Arcutanxente"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Arcucotanxente"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Senu hiperbólicu"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Cosenu hiperbólicu"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Tanxente hiperbólica"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Cotanxente hiperbólica"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Senu hiperbólicu d'área"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Cosenu hiperbólicu d'área"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Tanxente hiperbólica d'área"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Cotanxente hiperbólica d'área"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Suma"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Suma con subíndiz inferior"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Suma con superíndiz superior"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Suma con subíndiz y superíndiz"
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Productu"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Productu con subíndiz inferior"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Productu con superíndiz superior"
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Productu con subíndiz y superíndiz"
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Coproductu"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Coproductu con subíndiz inferior"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Coproductu con superíndiz superior"
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Coproductu con subíndiz y superíndiz"
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Llendes"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Llímite con subíndiz inferior"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Llímite con superíndiz superior"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Llímite con subíndiz y superíndiz"
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Esiste"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Nun esiste"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Pa toos"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Integral"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Integral con subíndiz inferior"
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Integral con superíndiz superior"
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Integral con subíndiz y superíndiz"
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Integral doble"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Integral doble con subíndiz inferior"
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Integral doble con superíndiz superior"
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Integral doble con subíndiz y superíndiz"
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Integral triple"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Integral triple con subíndiz inferior"
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Integral triple con superíndiz superior"
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Integral triple con subíndiz y superíndiz"
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Integral curvillinia"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Integral de curva con subíndiz inferior"
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Integral de curva con superíndiz superior"
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Integral de curva con subíndiz y superíndiz"
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Doble integral curvillinia"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Integral de curva doble con subíndiz inferior"
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Integral de curva doble con superíndiz superior"
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Integral de curva doble con subíndiz y superíndiz"
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Triple integral curvillinia"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Integral de curva triple con subíndiz inferior"
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Integral de curva triple con superíndiz superior"
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Integral de curva triple con subíndiz/superíndiz"
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Acentu p'arriba a la drecha"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Llende cimera"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Breve"
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Circunflexu inversu"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Círculu"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Puntu"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Puntu doble"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Puntu triple"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Acentu p'arriba a la izquierda"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Circunflexu"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Tilde"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Flecha vectorial"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Farpón"
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Llinia debaxo"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Llinia sobre"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Llinia per"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Tresparente"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Negrina"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Cursiva"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Redimensionar"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Cambear la fonte"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Color prieto"
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Color azul"
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Color verde"
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Color bermeyo"
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
#, fuzzy
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Seleición de color"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
#, fuzzy
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Llingüeta con color"
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Color mariello"
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Color RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Paréntesis d'aconceyamientu"
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Paréntesis"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Corchetes"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Corchetes dobles"
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Llaves"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Paréntesis angulares"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Techu superior"
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Suelu"
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Llinies cencielles"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Llinies dobles"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Paréntesis d'operador"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Paréntesis (graduables)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Corchetes (graduables)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Corchetes dobles (graduables)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Llaves (graduables)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Paréntesis angulares (graduables)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Techu (Escalable)"
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Suelu (Escalable)"
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Llinies cencielles (graduables)"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Llinies dobles (graduables)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Paréntesis d'operador (graduables)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Llaves enriba (graduables)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Llaves abaxo (graduables)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Subíndiz drecha"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Potencia"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Subíndiz izquierda"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Superíndiz a la izquierda"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Subíndiz abaxo"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Superíndiz enriba"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Espaciu pequeñu"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Balero"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Llinia nueva"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Pila vertical (2 elementos)"
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Disposición vertical"
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Disposición matriz"
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Alliñar a la esquierda"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Alliniar al centru"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Alliñar a la drecha"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Aleph"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Conxuntu Baleru"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Parte real"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Parte maxinaria"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Infinitu"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Parcial"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Nabla"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p de Weierstrass"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Puntos nel mediu"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Puntos p'arriba"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Puntos haza abaxo"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Puntos abaxo"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Puntos verticalmente"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Encadenamientu"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "División (barra inclinada)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "División (barra inclinada inversa)"
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Divide"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Nun Divide"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Flecha doble hacia la izquierda"
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Flecha doble hacia la izquierda y la drecha"
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Flecha doble hacia la drecha"
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Conxuntu de númberos naturales"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Conxuntu de númberos enteros"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Conxuntu de númberos racionales"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Conxuntu de númberos reales"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Conxuntu de númberos complexos"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Circunflexu ancho"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Tilde ancha"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Flecha vectorial ancha"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h Barra"
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Lambda Barra"
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Flecha izquierda"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Flecha drecha"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Flecha arriba"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Flecha abaxo"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Ensin espaciu"
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Precede"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Precede o ye igual a"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Precede o ye equivalente a"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Tien éxitu"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Tien éxitu o ye igual a"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Tien éxitu o ye equivalente a"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Nun precede"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Nun tien éxitu"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Operadores unarios/binarios"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Rellaciones"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Operaciones de conxuntos"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Funciones"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Operadores"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Atributos"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Paréntesis"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Formatos"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Otros"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Exemplos"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr "Identidá d'Euler"
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr "Relatividá xeneral"
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr "Relatividá especial"
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negrina"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "prieto"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "bermeyo"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Buxu"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "llima"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrón"
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azulmarín|marín"
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliva"
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "púrpura"
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "xade"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "mariello"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr "hex"
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "anubrir"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamañu"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "tipografía"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "izquierda"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centru"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "drecha"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandos"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Guardando'l documentu..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula de %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR: "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caráuter non esperáu"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Esperábase «{»"
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Esperábase «}»"
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Esperábase «(»"
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Esperábase «)»"
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Nun concasen los símbolos izquierdu y derechu"
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Esperábase «fixed», «sans» o «serif»"
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr "Esperábase un númberu"
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Esperábase «#»"
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Necesítase un color"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Esperábase «RIGHT»"
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteníu"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Títulu"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testu de la ~fórmula"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Bordes"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamañu"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamañu orixinal"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Axustar a la páxina"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2709,13 +2709,13 @@ msgstr "E_scaláu"
#: starmath/uiconfig/smath/ui/alignmentdialog.ui:8
msgctxt "alignmentdialog|AlignmentDialog"
msgid "Alignment"
-msgstr "Alliniación"
+msgstr "Alliniamientu"
#. Zseo6
#: starmath/uiconfig/smath/ui/alignmentdialog.ui:23
msgctxt "alignmentdialog|default"
msgid "_Default"
-msgstr "Pre_determinada"
+msgstr "Pre_determináu"
#. RK3fb
#: starmath/uiconfig/smath/ui/alignmentdialog.ui:30
diff --git a/source/ast/svl/messages.po b/source/ast/svl/messages.po
index 9dab7a82c13..41bc29fbf90 100644
--- a/source/ast/svl/messages.po
+++ b/source/ast/svl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svlmessages/ast/>\n"
"Language: ast\n"
@@ -92,4 +92,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index cda59c8fa0d..a19e6de0914 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. fLdeV
@@ -1796,7 +1796,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. tBGDJ
#: svtools/inc/borderline.hrc:17
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 174a720863b..3f975a4a885 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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2021-02-16 16:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022499.000000\n"
#. 3GkZj
@@ -819,2271 +819,2277 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Orde inversu de %1"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Mover %1"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Redimensionar %1"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Rotación %1"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Reflexar %1 horizontalmente"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "Reflexar %1 verticalmente"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Reflexar %1 diagonalmente"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "Reflexar %1 llibremente"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "Deformar %1 (inclinar)"
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "Colocar en cículu %1"
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "Curvar %1 en círculu"
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "Distorsionar %1"
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Desfacer %1"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Camudar les propiedaes bézier de %1"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Camudar les propiedaes bézier de %1"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "Afitar la direición de salida de %1"
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "Afitar atributu relativu en %1"
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "Afitar puntu de referencia de %1"
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Axuntar %1"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "Desaxuntar %1"
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Aplicar atributos a %1"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Aplica-y estilos a %1"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Quitar estilu de %1"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "Convertir %1 en polígonu"
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "Convertir %1 en polígonos"
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "Convertir %1 en curva"
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "Convertir %1 en curves"
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "Convertir %1 en contornu"
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "Convertir %1 en contornos"
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Alliniar %1"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "Alliniar %1 no cimero"
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "Alliniar %1 nel pie de páxina"
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "Centrar %1 horizontalmente"
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "Alliniar %1 a la esquierda"
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "Alliniar %1 a la drecha"
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "Centrar %1 verticalmente"
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "Centrar %1"
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "Tresformar %1"
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Combinar %1"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Mecer %1"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Restar %1"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "Interseición de %1"
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Repartir los oxetos escoyíos"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr ""
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Combinar %1"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Frañir %1"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Frañir %1"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Frañir %1"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Inxertar oxetu(os)"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Inxerta-y puntu a %1"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr "Inxertar puntu d'apegáu en %1"
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "Mover puntu de referencia"
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Cambear xeométricamente %1"
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Mover %1"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Redimensionar %1"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Rotación %1"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Reflexar %1 horizontalmente"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "Reflexar %1 verticalmente"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Reflexar %1 diagonalmente"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "Reflexar %1 llibremente"
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Gradiente interactivu pa %1"
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Tresparencia interactiva pa %1"
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "Deformar %1 (inclinar)"
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "Colocar en cículu %1"
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "Curvar %1 en círculu"
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "Distorsionar %1"
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Axuntar %1"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Camudar radiu d'ángulu en %1"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Camudar %1"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Redimensionar %1"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Mover %1"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "Mover el puntu final de %1"
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "Camudar ángulu de %1"
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Camudar %1"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "TextEdit : Párrafu %1, Filera %2, Columna %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 escoyíu"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Puntu de %1"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 puntos de %1"
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr "Puntu d'apegáu de %1"
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr "%2 puntos d'apegáu de %1"
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Marcar oxetos"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "Escoyer oxetos suplementarios"
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Marcar puntos"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "Escoyer puntos suplementarios"
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr "Marcar los puntos d'apegáu"
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr "Marcar los puntos d'apegáu suplementarios"
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Crear %1"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Inxertar %1"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Copiar %1"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "Camudar l'orde d'oxetu de %1"
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Editar testu de %1"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Inxertar páxina"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Desaniciar páxina"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Copiar páxina"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Camudar l'orde de les páxines"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "Quitar los atributos de la páxina del fondu"
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "Camudar los atributos de la páxina d'atrás"
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Inxertar documentu"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Inxertar capa"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Desaniciar capa"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Camudar nome d'oxetu de %1 a"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Camudar el títulu d'oxetu de %1"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "Camudar descripción d'oxetu de %1"
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "activáu"
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "desactiváu"
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "sí"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "Non"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Triba 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Triba 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Triba 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Triba 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Horizontal"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Vertical"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Automáticu"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Desactiváu"
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Proporcional"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Adautar al tamañu (toles fileres por separtao) "
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "Usar atributos fixos"
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Cimero"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "Centru"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Fondero"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "Usar l'altor enteru"
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Terriu"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Izquierda"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "Centru"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Drecha"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "Usar el llargor enteru"
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Terriu"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "desactiváu"
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "intermitente"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "Continuu"
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "alternando"
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "Entrar"
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "izquierda"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "arriba"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "drecha"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "abaxo"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Coneutor estándar"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Coneutor llinial"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Conector reutu"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Conector curvu"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Estándar"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Radiu"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "automáticu"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr "izquierda fuera"
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "dientro (centráu)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr "drecha fuera"
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "automáticu"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "na llinia"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "llinia cortada"
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "baxo la llinia"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "centráu"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "círculu completu"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Seutor de círculu"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Segmentu de círculu"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "Arcu"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Atributu desconocíu"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Estilu de llinia"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "Diseñu de llinia"
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Espesor del trazu"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Color de la llinia"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Entamu de llinia"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Fin de la llinia"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Anchor d'entamu de llinia"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Anchor de fin de llinia"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "Entamu de llinia, centráu"
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "Fin de llinia, centráu"
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Tresparencia de llinia"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Xunta de llinies"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Atributos de llinia"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Estilu de rellenu"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Color de rellenu"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Dilíu"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "Trama"
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Bitmap de rellenu"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Tresparencia"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Incrementu"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Rellenu de mosaicu"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Posición bitmap de rellenu"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Anchor bitmap de rellenu"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Altor de bitmap de rellenu"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Dilíu tresparente"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "Rellenu reserva 2"
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Tamañu de mosaicu en %"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "Desplazamientu del mosaicu en %"
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "Desplazamientu del mosaicu Y en %"
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Redimensionamientu de bitmap"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "Posición del mosaicu X en %"
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "Posición del mosaicu Y en %"
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Rellenu de fondu"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Atributos de rellenu"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Estilu de Fontwork"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Alliniamientu Fontwork"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "Espaciu de Fontwork"
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Entamu de fonte Fontwork"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "Espeyu Fontwork"
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Contornu Fontwork"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Solombra Fontwork"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Color de solombra Fontwork"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "Desplazamientu solombra de Fontwork X"
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "Desplazamientu solombra de Fontwork Y"
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "Tapecer contornu de fontwork"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "Tresparencia de solombra de fontwork"
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "Solombra"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Color solombra"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Distancia de solombra X"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Distancia de solombra Y"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Tresparencia de la solombra"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr "Desenfoque de solombra"
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "Solombra 3D"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "Solombra en perspeutiva"
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Triba de lleenda"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "Fixación ángulu de lleenda"
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Ángulu de lleenda"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Distancia llinia de lleenda"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "Direición salida de lleenda"
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "Salida relativa de lleenda"
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "Salida relativa de lleenda"
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "Salida dafechu de lleenda"
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Llargor de llinia de lleenda"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "Llargor de llinia de lleenda, automáticu"
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "Radiu d'ángulu"
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Altor de marcu mínimu"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "Axuste d'altor automáticu"
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "Axustar testu al marcu"
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "Distancia izquierda al marcu de testu"
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "Distancia drecha al marcu de testu"
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "Distancia cimera al marcu de testu"
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "Distancia baxera al marcu de testu"
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "Anchor vertical del testu"
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Altor de marcu máximu"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Altor de marcu mínimu"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Altor de marcu máximu"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "Axuste automáticu d'anchor"
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "Anchor horizontal del testu"
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "Indicador"
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "Direición de l'animación de testu"
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "Entamu de l'animación en"
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "Parada d'animación en"
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "Cantidá d'animaciones"
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "Incrementu d'animación"
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "Retardu de l'animación"
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Fluxu de tetu de contornu"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Atributos definíos pol usuariu"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "Usar espaciáu entre llinies independientemente de la fonte"
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "Axuste de llinia na forma"
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Triba de coneutor"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "Distancia horz. oxetu 1"
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "Distancia vert. oxetu 1"
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "Distancia hor. oxetu 2"
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "Distancia vert. oxetu 2"
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "Distancia apegáu oxetu 1"
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "Distancia apegáu oxetu 2"
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "Númb. llinies movibles"
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "Desplazamientu llinia 1"
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "Desplazamientu llinia 2"
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "Desplazamientu llinia 3"
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Triba de dimensionamientu"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "Valor de la dimensión - posición horizontal"
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "Valor de la dimensión - posición vertical"
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "Distancia llinies de dimensión"
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "Guíes sobresalientes"
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "Distancia entre guíes"
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "Atrasu de llinia de cota aux. 1"
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "Atrasu de llinia de cota aux. 2"
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "Dimensiones borde baxeru"
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "Dimens. de testu peles llinies"
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "Xirar valor de dimensión 180 graos"
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "Resalta llinies de dimensión"
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Unidá de midida"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "Factor adicional d'escala"
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Vista unidaes de midida"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Formatu de testu dimensionáu"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "Allugamientu automáticu del testu d'ángulu"
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "Ángulu de posicionamentu automáticu del valor de la dimensión"
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "Definición del ángulu de testu dimensionáu"
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "Ángulu de testu dimensionáu"
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Decimales"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Triba de círculu"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "Ángulu d'aniciu"
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "Ángulu final"
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Allugamientu del oxetu protexida"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Tamañu del oxetu protexíu"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "Oxetu, imprentable"
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Oxetu visible"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "ID del nivel"
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Capa"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Nome d'oxetu"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "Posición X, too"
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "Posición Y, too"
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "Anchor, too"
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "Altor, too"
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "Posición X, individual"
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "Posición Y, individual"
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "Anchor, individual"
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "Altor, individual"
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Anchor, lóxicu"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Altor, lóxicu"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "Ángulu de rotación, individual"
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "Ángulu de desviación, individual"
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "Mover horizontalmente"
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "Mover verticalmente"
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Redimensión X, individual"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Redimensión Y, individual"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Rotación, individual"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "Cortar horiz., individual"
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "Cortar vert., individual"
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Redimensión X, too"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Redimensión Y, too"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Rodar, too"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "Cortar horiz., too"
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "Cortar vert., too"
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "Puntu de referencia 1 X"
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "Puntu de referencia 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "Puntu de referencia 2 X"
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "Puntu de referencia 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Separtación silábica"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Amosar viñeta"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "Sangría en enumberación"
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Nivel de enumberación"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Viñeta"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Sangríes"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Espacios ente párrafos"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Espaciáu ente llinies"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Alliniamientu de párrafu"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Tabuladores"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Collor fonte"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Xuegu de caráuteres"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Tamañu de fonte"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Anchor de fonte"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "Negrina (gruesu)"
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Solliñáu"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Sobrellinia"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Tacháu"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Cursiva"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Contornu"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Solombra"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "Super/subíndiz"
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Axuste ente caráuteres"
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Axuste ente caráuteres, manual"
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Non sorrayar espacios baleros"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Tabulador"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "Saltu de ringlera opcional"
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Caráuter non convertible"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Campos"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Bermeyu"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Verde"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Azul"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Rellumu"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Tresparencia"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Invertir"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
#, fuzzy
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Mou d'imaxe"
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "Recortar"
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Oxetu de medios"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Oxetos de medios"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Inxertar columna"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Inxertar filera"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Desaniciar columna"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Desaniciar filera"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Dixebrar caxelles"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Xunir caxelles"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formatu de caxella"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "Distribuyir fileres"
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "Distribuyir columnes"
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
#, fuzzy
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Desaniciar conteníu"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Estilu de tabla"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Axustes d'estilu de tabla"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Tabla"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Tablas"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
#, fuzzy
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
@@ -3091,257 +3097,257 @@ msgstr "trabayu orixinal"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "Continuu"
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Gradiente"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Mapa de bits"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "Patrón"
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Estilu de llinia"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Denguna"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Color"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "Trama"
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Puntes de flecha"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Flecha"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Cuadráu"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Círculu"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- dengún -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Tresparencia"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Centráu"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Non centráu"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Predetermináu"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "Escala de buxos"
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Prietu/Blancu"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "Marca d'agua"
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Prietu"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Buxu"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Blancu"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Mariellu"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Oru"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Naranxa"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Coloráu"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Maxenta"
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Púrpura"
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Azul"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "xade"
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Verde"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
@@ -3349,2838 +3355,2838 @@ msgstr "Llinia"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Buxu claru"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Bermeyu claru"
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Azul claru"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Verde claru"
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Colloráu buxu"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "Violeta"
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "Cian"
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr "Marrón A"
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr "Marrón"
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "Azul clásicu"
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "Azul verdín"
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Burdeos"
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "Mariellu pálidu"
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "Verde pálidu"
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "Violeta escuru"
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Salmón"
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "Azul marín"
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Gráficu"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "Azul celeste"
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "Mariellu verdosu"
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Rosa"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Turquesa"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3D"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Prietu 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Prietu 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Azul"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Marrón"
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Moneda"
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Moneda 3D"
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Moneda gris"
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Moneda llavanda"
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Moneda Turca"
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Buxu"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Verde"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Espliegu"
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Coloráu"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Turquesa"
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Mariellu"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "Elegante"
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Finances"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Xuntes de llinia media"
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Xuntes de llinia xunida"
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Xuntes de llinia cortada"
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Xuntes de llinia redonda"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "Fin de llinia planu"
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "Fin de llinia redondu"
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "Fin de llinia cuadráu"
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Gradiente"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Llinial azul/blancu"
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Llinial maxenta/verde"
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Llinial mariellu/marrón"
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Radial verde/prietu"
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Radial bermeyu/mariellu"
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Rectangular bermeyu/blancu"
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Cuadráu mariellu/blancu"
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Elipsoide azul gris/azul dilíu"
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Axal bermeyu dilíu/blancu"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Diagonal 1i"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Diagonal 1d"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Diagonal 2i"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Diagonal 2d"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Diagonal 3i"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Diagonal 3d"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Diagonal 4i"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Diagonal 4d"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Diagonal Azul"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Diagonal Verde"
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Diagonal Naranxa"
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Diagonal Bermeya"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Diagonal Turquesa"
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Diagonal Viola"
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "D'una esquina"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "D'una esquina, Azul"
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "D'una esquina, Verde"
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "D'una esquina, Naranxa"
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "D'una esquina, Bermeya"
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "D'una esquina, Turquesa"
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "D'una esquina, Viola"
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "Dende'l mediu"
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "Dende'l mediu, Azul"
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "Dende'l mediu, Verde"
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "Dende'l mediu, Naranxa"
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "Dende'l mediu, Bermeya"
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "Dende'l mediu, Turquesa"
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "Dende'l mediu, Viola"
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Horizontal"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Horizontal Azul"
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Horizontal Verde"
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Horizontal Naranxa"
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Horizontal Bermeya"
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Horizontal Turquesa"
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Horizontal Viola"
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Radial"
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Radial Azul"
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Radial Verde"
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "Radial Naranxa"
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Radial Bermeya"
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Radial Turquesa"
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Radial Viola"
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Vertical"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Vertical Azul"
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Vertical Verde"
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Vertical Naranxa"
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Vertical Bermeya"
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Vertical Turquesa"
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Vertical Viola"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "Gradiente de buxu"
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "Gradiente de mariellu"
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "Gradiente de naranxa"
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "Gradiente de bermeyu"
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "Gradiente de rosa"
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Cielu"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "Gradiente de cian"
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "Gradiente d'azul"
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "Tubu púrpura"
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Nueche"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "Gradiente de verde"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Baleru"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "Pergamín"
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "Piscina"
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Mapa de bits"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
#, fuzzy
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "Porcentaxe"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
#, fuzzy
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "Inclinar horizontalmente"
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
#, fuzzy
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "Inclinar horizontalmente"
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Onda"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
#, fuzzy
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "llinia horizontal"
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
#, fuzzy
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "Onda"
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
#, fuzzy
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "Planu"
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
#, fuzzy
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "Simple"
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
#, fuzzy
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "esfera"
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
#, fuzzy
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "_Vertical:"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
#, fuzzy
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "H_orizontal:"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Cruce"
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr "Estilu de llinia"
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "Tolos formatos"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Cuadráu 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "Llinies de cota"
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Flecha doble"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "Llinia de cota"
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Círculu"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Cuadráu"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Flecha"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "Triángulu ensin rellenu"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "Diamante ensin rellenu"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Diamante"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Círculu ensin rellenu"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Cuadráu 45 ensin rellenu"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "Cuadráu ensin rellenu"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Tresparencia"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "Acentu verde"
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "Acentu azul"
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "Acentu naranxa"
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Púrpura"
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "Acentu púrpura"
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "Acentu mariellu"
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Tema de la Galería"
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Recuperáu dafechu"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Documentu orixinal recuperáu"
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Recuperación incorreuta"
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Recuperación en cursu"
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Entá nun se recuperó"
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
#, fuzzy
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION entama'l procesu de recuperación de documentos. Según el tamañu de los documentos, el procesu puede durar más o menos tiempu."
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "Finó la recuperación de documentos. Calca «Finar» pa ver los documentos."
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~Finar"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
#, fuzzy
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Últimos valores personalizaos"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "pt"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Esportación d'imaxe"
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Inxertar oxetu(os)"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Rotar un oxetu 3D"
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Crear un oxetu d'estrusión"
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Crear cuerpu de rotación"
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Dixebrar oxetu 3D"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Too]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Peñera d'imaxe"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Tema nuevu"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "Efeutos 3D"
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Animaciones"
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Viñetes"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Oficina"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Banderes"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Diagrames de fluxu"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Fustaxes"
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Imaxes"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Fondos"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Páxina principal"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Interaición"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Mapes"
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Persones"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Superficies"
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Ordenador"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Diagrames"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "Entornu"
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Finances"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "Tresporte"
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Formes de testu"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Soníos"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Símbolos"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "El mio tema"
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Fleches"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Llamaes"
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Tecláu"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Tiempu"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Calendariu"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Navegación"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Comunicación"
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Finances"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Ordenador"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Clima"
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Escuela y universidá"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Soluciones de problemes"
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans"
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Imprentación de la escoyeta"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "¿Quies imprentar la seleición o'l documentu ensembre?"
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~Too"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "E~sbilla"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Estrusión haza'l noroeste"
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Estrusión haza'l norte"
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Estrusión haza'l noreste"
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Estrusión haza l'oeste"
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Estrusión haza atrás"
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Estrusión haza l'este"
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Estrusión haza'l sudoeste"
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Estrusión haza'l sur"
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Estrusión haza'l sudeste"
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 cm"
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 cm"
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2,5 cm"
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 cm"
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~cm"
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 pulgaes"
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0,~5 pulgaes"
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 pulgada"
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 pulgaes"
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 pulgaes"
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
#, fuzzy
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "Ensin rellenu"
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
#, fuzzy
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "Tresparencia"
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Predetermináu"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Borde"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Estilu de berbesu"
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
#, fuzzy
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "Numberación de ~llinies..."
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
#, fuzzy
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "Por autor"
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Páxines"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Desaniciar formatu"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
#, fuzzy
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
@@ -6188,394 +6194,394 @@ msgstr "Más opciones"
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Nome de fonte"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "Nome de la fonte. La fonte actual nun ta disponible y sustituiráse."
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "personalizáu"
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Estrusión"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Activar o desactivar estrusión"
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Enclinar haza abaxo"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Enclinar haza arriba"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Enclinar haza la esquierda"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Enclinar haza la drecha"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Cambiar profundidá d'estrusión"
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Cambiar orientación"
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Cambiar triba de proyeición"
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Cambiar illuminación"
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Cambiar brillu"
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Cambiar superficie d'estrusión"
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Cambiar color d'estrusión"
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "Favoritu"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "B:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "V:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "A:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fontwork"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Aplicar forma de Fontwork"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Aplicar mesmu altor de lletres de Fontwork"
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Aplicar alliniación de Fontwork"
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Aplicar espaciu ente caráuteres de Fontwork"
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "con"
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Estilu"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "y"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Control d'esquines"
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Seleición d'un puntu de la esquina."
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Arriba a la esquierda"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Centráu enriba"
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Arriba a la drecha"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Centráu a la esquierda"
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Centráu"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Centráu a la drecha"
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Abaxo a la esquierda"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Centráu abaxo"
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Abaxo a la drecha"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Elementu de control del contornu"
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Equí ye onde pues editar el contornu."
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Escoyeta de símbolos"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Esbilla los caráuteres especiales nesti área."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Códigu de caráuter "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Ye obligatoria una entrada nel campu «#». Escribi un valor."
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Formularios"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Dengún control escoyíu"
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Propiedaes: "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Propiedaes del formulariu"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Restolador de formulariu"
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Formulariu"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "Anubríu"
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Formulariu"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Control anubríu"
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Elementu de control"
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Rexistru"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "de"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Amestar campu:"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Fallu al rexistrar datos na base de datos"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Hebo un fallu al analizar la espresión de la consulta"
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "Quies desaniciar 1 rexistru de datos."
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# rexistros se desaniciarán."
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6585,331 +6591,337 @@ msgstr ""
"¿Quier siguir de toles maneres?"
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Barra de navegación"
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Columna"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Afitar propiedá «#»"
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Inxertar nel contenedor"
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Desaniciar #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Desaniciar # oxetos"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Camudar un elementu contenedor"
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Camudar campu de control"
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "Botón pa calcar"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr "Campu d'opción"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Campu de testu"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Caxella de verificación"
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "Campu d'etiqueta"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "Marcu de grupu"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "Campu de testu"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "Campu formatiáu"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "Campu combináu"
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Llistáu"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr "Campu combináu"
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "Botón gráficu"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "Control d'imaxe"
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "Escoyeta de ficheru"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Campu de data"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Campu de tiempu"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Campu numbéricu"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Campu de moneda"
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Campu mazcaritáu"
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Campu formatiáu"
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Botón pa calcar"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "Campu d'opción"
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Campu d'etiqueta"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Marcu de grupu"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Botón gráficu"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Control d'imaxe"
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Esbilla de ficheros"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Control de tables "
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Barra de desplazamientu"
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Botón de Escoyeta"
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Barra de navegación"
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
-msgstr "Escoyeta múltiple"
+msgstr "Esbilla múltiple"
+
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "¡Nel formulariu actual nun existen controles asociaos con datos!"
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Data)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
-msgstr " (Tiempu)"
+msgstr " (Hora)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Restolador de peñeres"
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Peñerar por"
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "O"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "El formulariu actual nun caltién controles válidos que se puedan usar na vista de tabla."
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<Campu automáticu>"
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Fallu de sintaxis na espresión SQL"
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
-msgstr "El valor #1 no se puede usar con LIKE."
+msgstr "El valor #1 nun se pue usar con LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
-msgstr "COMO nun se pue usar con esti campu."
+msgstr "LIKE nun se pue usar con esti campu."
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "El valor especificáu nun ye una data válida. Pon una data con un formatu válidu, por exemplu, MM/DD/AA."
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "El campu nun puede comparase con un enteru."
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "La base datos nun contién una tabla denomada «#»."
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "La base de datos nun contién una tabla nin una consulta denomada «#»."
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "La base datos yá contién una tabla o vista denomada «#»."
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "La base datos yá caltién una consulta denomada «#»."
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "La columna «#1» nun se reconoz na tabla «#2»."
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "El campu nun se pue comparar con un númberu de coma flotante."
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "El criteriu indicáu nun se pue comparar con esti campu."
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Restolador de datos"
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (namái llectura)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "El ficheru yá existe. ¿Quies reemplazalu?"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "etiqueta #object#"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
@@ -6920,7 +6932,7 @@ msgstr ""
"¿De verdá quies desaniciar esti modelu?"
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
@@ -6931,7 +6943,7 @@ msgstr ""
"¿De verdá quies desaniciar esta instancia?"
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6941,13 +6953,13 @@ msgstr ""
"¿Bramente quies desaniciar esti elementu?"
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "¿De verdá quies desaniciar l'atributu «$ATTRIBUTENAME»?"
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
@@ -6960,7 +6972,7 @@ msgstr ""
"¿Quies bramente desaniciar esti unviu?"
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
@@ -6973,1014 +6985,1010 @@ msgstr ""
"¿Quies bramente desaniciar esti enllaz?"
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "El nome «%1» nun val en XML. Escribi un nome distintu."
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "El prefixu «%1» nun val en XML. Escribi un prefixu distintu."
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Yá esiste'l nome «%1». Escribi un nome nuevu."
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "L'unvíu tien de tener asignáu un nome."
#. xcAaD
-#: include/svx/strings.hrc:1246
-#, fuzzy
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
-msgstr "Artículu"
+msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
-msgstr ""
+msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1248
-#, fuzzy
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
-msgstr "Garrar"
+msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
#, fuzzy
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Denguna"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
#, fuzzy
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "~Instancies"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Documentu"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Enllaz: "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Referencia: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Actuación: "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Métodu: "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
-msgstr "Camudar: "
+msgstr "Trocar: "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Amestar elementu"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Editar elementu"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Desaniciar elementu"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Amestar atributu"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Editar atributu"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Desaniciar atributu"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Amestar enllaz"
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Editar enllaz"
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Desaniciar enllaz"
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Amestar unviu"
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Editar unviu"
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Desaniciar unviu"
#. qvvD7
-#: include/svx/strings.hrc:1269
-#, fuzzy
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
-msgstr "Elementos"
+msgstr "Elementu"
#. U4Btb
-#: include/svx/strings.hrc:1270
-#, fuzzy
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
-msgstr "Atributos"
+msgstr "Atributu"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
#, fuzzy
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Enllaces"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Espresión d'enllaz"
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
#, fuzzy
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "¿Seguro que quier encaboxar la recuperación de documentos de %PRODUCTNAME?"
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Esquierda"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Mandrecha"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Centrar"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Decimal"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Sobrescribir"
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Inxertar"
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Robla dixital: La robla del documentu ye correuta."
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Robla dixital: La robla del documentu ye correuta, pero nun se pudieron validar los certificaos."
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Robla Dixital: El documentu nun tien robla."
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Robla dixital: La robla del documentu y el certificáu son correutos, pero nun tan roblaes toles partes del documentu."
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
#, fuzzy
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "El documentu camudó. Fai doble click pa guardalu."
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "El documentu nun camudó dende'l caberu guardáu."
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Cargando'l documentu..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Nun pudieron cargase tolos oxetos de SmartArt. Guardar en Microsoft Office 2010 o posterior va evitar esti problema."
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Agrandar"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Amenorgar"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Tola páxina"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Anchor de páxina"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Meyor vista"
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Incluyendo estilos"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
#, fuzzy
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Estilos de párrafu"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
#, fuzzy
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Estilos de caxella"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Clave de busca non atopada"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Nun s'alcontró l'elementu de navegación"
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Paleta de colores"
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Trocador de colores"
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "Efeutos 3D"
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Contraseña incorreuta"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Les contraseñes nun concasen"
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Viñetes pequeñes sólides circulares"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Viñetes grandes sólides circulares"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Viñetes sólides con forma de rombu"
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Viñetes grandes sólides cuadraes"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Viñetes en forma de flecha a la drecha"
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Viñetes en forma de flecha a la drecha"
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
#, fuzzy
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Númberu (1) (2) (3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Númberu 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Númberu (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Númberu romanu en mayúscules I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Lletra mayúscula A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Lletra minúscula a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Lletra minúscula (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Númberu romanu en minúscules i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numbéricu, numbéricu, lletres minúscules, viñetes pequeñes sólides circulares"
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numbéricu, lletres minúscules, viñetes pequeñes sólides circulares"
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numbéricu, lletres minúscules, númberos romanos en minúscules, lletres mayúscules, viñeta pequeña sólida circular"
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numbéricu"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Lletres llatines mayúscules, lletres mayúscules, lletres llatines minúscules, lletres minúscules, viñetes pequeñes sólides circulares"
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Lletres mayúscules, lletres llatines mayúscules, lletres minúscules, lletres llatines minúscules, viñetes pequeñes sólides circulares"
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numbéricu con tolos subniveles"
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Viñeta hacia la drecha, viñeta en forma de flecha a la drecha, viñeta sólida en forma de rombu, viñeta pequeña sólida circular"
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
#, fuzzy
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Nun pudo crease'l ficheru."
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Estilos de diseñu de tables"
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Aiciones que desfacer: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Aiciones que desfacer: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Aiciones que refacer: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Aiciones que refacer: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Guetar"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Distinguir mayúscules y minúscules"
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) × $(HEIGHT) a $(DPI) PPP"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kiB"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Desconocíu"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Conmutar"
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Mou d'imaxe"
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Proporción de colloráu"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Proporción de verde"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Proporción d'azul"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Brillu"
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Tresparencia"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Recortar"
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Orientación predeterminada"
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "D'arriba haza abaxo"
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "D'abaxo haza arriba"
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Apiláu"
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Marxe esquierdu: "
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Marxe superior: "
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Marxe drechu: "
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Marxe inferior: "
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Descripción de la páxina: "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Mayúscules"
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Minúscules"
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Mayúscules romanes"
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Minúscules romanes"
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Árabe"
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Dengún"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Apaisáu"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Retratu"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Esquierda"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Drecha"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Too"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Espeyau"
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Autor: "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Data: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Testu: "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Fondu de caráuter"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Paleta de colores"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7988,1942 +7996,2045 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Llatín básicu"
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Llatín-1"
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Llatín Estendíu A"
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Llatín Estendíu B"
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "Estensiones IPA"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Lletres modificadores d'espaciáu"
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Combinación de caráuteres diacríticos"
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Griegu básicu"
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Símbolos Griegos y Coptu"
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cirílicu"
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armeniu"
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Hebréu básicu"
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebréu estendíu"
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Árabe Básicu"
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabe Estendíu"
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengalí"
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Guyarati"
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Telugu"
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malayalam"
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Tailandés"
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Laosianu"
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Xorxanu básicu"
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Xorxanu Estendíu"
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangul Jamo"
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Llatín estendíu adicional"
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Griegu estendíu"
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Puntuación xeneral"
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Superíndices y subíndices"
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Símbolos monetarios"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Combinación de símbolos diacríticos"
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Símbolos asemeyaos a lletres"
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Símbolos numbéricos"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Fleches"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Operadores matemáticos"
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Dellos caráuteres téunicos"
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Imaxes de control"
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Reconocimientu ópticu de caráuteres"
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Alfanumbéricos axuntos"
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Dibuxos de marcu"
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Elementos de bloque"
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Formes xeométriques"
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Dellos símbolos"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "Símbolos y puntuación CJK"
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofu"
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Jamo con compatibilidá Hangul"
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "Dellos caráuteres CJK"
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "Caráuteres y meses incluyíos en CJK"
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK Compatibilidá"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangul"
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "Ideografíes unificaes CJK"
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "Ideogrames CJK unificaos estensión A"
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Área d'usu priváu"
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "Ideogrames de compatibilidá CJK"
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Formes de presentación alfabética"
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Formes de presentación árabes A"
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Marques intermedies combinantes"
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "Formes de compatibilidá CJK"
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Variantes de formes pequeñes"
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Formes de presentación árabes B"
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Formes anches y mediu anches"
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Especiales"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Sílabes Yi"
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Radicales yi"
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Itálicu antiguu"
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Góticu"
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret"
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Símbolos musicales bizantinos"
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Símbolos musicales"
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Símbolos matemáticos alfanuméricos"
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "Estensiones ideográfiques unificaes CJK B"
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "Estensiones ideográfiques unificaes CJK C"
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "Estensiones ideográfiques unificaes CJK D"
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "Suplementu de compatibilidá ideográfica CJK"
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Etiquetes"
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Suplementu cirílicu"
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Selectores de variación"
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Área d'usu priváu suplementaria A"
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Área d'usu priváu suplementaria B"
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Tai Le"
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Símbolos ḥemeres"
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Estensiones fonétiques"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Símbolos y fleches diversos"
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Símbolos d'hexagrama Yijing"
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Sílabariu llinial B"
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Ideogrames lliniales B"
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Númberos exeos"
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugaríticu"
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavianu"
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmanya"
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Singalés"
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetanu"
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Birmanu"
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Ḥemer"
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Rúnicu"
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Siriu"
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Etíope"
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cheroki"
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Sílabes aboríxenes canadienses"
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongol"
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Dellos símbolos matemáticos A"
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Fleches suplementaries A"
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Patrones Braille"
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Fleches suplementaries B"
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Dellos símbolos matemáticos B"
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "Radicales suplementarios de CJK"
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Radicales Kangxi"
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Caráuteres de descripción d'ideogrames"
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalu"
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofu estendíu"
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Fonética de Katakana"
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "Trazos CJK"
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Silabariu chipriota"
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Símbolos Tai Xuan Jing"
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Suplementu de selectores de variación"
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Escritura musical griega antigua"
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Númberos griegos antiguos"
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Suplementu del árabe"
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buxinés"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Suplementu de signos diacríticos pa combinar"
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Cópticu"
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Etíope estendíu"
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Suplementu etíope"
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Suplementu xeorxanu"
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagolíticu"
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Lletres que camuden la entonación"
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Tai Lue nuevu"
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Persa antiguu"
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Suplementu d'estensiones fonétiques"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Puntuación suplementaria"
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Formes verticales"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Nko"
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinés"
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Llatín estendíu-C"
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Llatín estendíu-D"
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phags-Pa"
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Feniciu"
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Cuneiforme"
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Númberos y puntuación cuneiformes"
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Numberales de contéu Rod"
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Sundanés"
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cirílicu estendíu A"
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cirílicu estendíu B"
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Símbolos antiguos"
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Discu de Festos"
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Liciu"
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carianu"
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lidiu"
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Fiches de Mahjong"
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Fiches de dominó"
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritanu"
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Sílabes aboríxenes canadienses estendíes"
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Estensiones védiques"
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamum"
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Formes numbériques comúnes del índicu"
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari estendíu"
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo estendíu-A"
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Xavanés"
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Myanmar estendíu-A"
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo estendíu-B"
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Araméu imperial"
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Árabe antiguu del sur"
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avestanu"
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Partu inscripcional"
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Pahlavi inscripcional"
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Turcu antiguu"
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Símbolos numbéricos rumi"
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Xeroglíficos exipcios"
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Suplementu alfa-numbéricu axuntu"
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Suplementu ideográficu axuntu"
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaicu"
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Etíope estendíu A"
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Suplementu Bamum"
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Suplementu Kana"
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Xuegu de cartes"
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Símbolos y pictogrames variaos"
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Fustaxes"
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Símbolos de tresporte y mapes"
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Símbolos d'alquimia"
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Árabe estendíu A"
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Símbolos alfabéticos matemáticos árabes"
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Estensiones Meitei Mayek"
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Cursives meroítiques"
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Xeroglíficos meroíticos"
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sora Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Suplementu de sundanés"
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Suplementu de signos diacríticos pa combinar"
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Llatín Estendíu A"
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Llinial"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Mou"
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Myanmar estendíu-A"
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Árabe antiguu del sur"
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Fleches suplementaries A"
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "Ideogrames CJK unificaos estensión A"
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cirílicu estendíu A"
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Suplementu xeorxanu"
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Nuevu"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Utilización"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "Ideogrames CJK unificaos estensión A"
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Myanmar estendíu-A"
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Suplementu cirílicu"
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Fontwork"
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr "Roblólu dixitalmente:"
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr "Data: %1"
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Tresparencia:"
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -9987,7 +10098,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. oFcMf
#: include/svx/svxitems.hrc:33
@@ -10676,7 +10787,7 @@ msgstr ""
#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
-msgstr ""
+msgstr "Barra de navegación"
#. d7vkX
#: svx/inc/frmsel.hrc:30
@@ -10786,7 +10897,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Llinia de borde diagonal dende embaxo a la esquierda hasta enriba a la drecha"
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10794,11 +10905,29 @@ msgstr "Llinia de borde diagonal dende embaxo a la esquierda hasta enriba a la d
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr ""
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr ""
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr ""
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr ""
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr ""
@@ -13752,181 +13881,49 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "Inxertar columna"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "Campu de testu"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr "Caxella de verificación"
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr "Campu combináu"
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "Llistáu"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "Campu de data"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "Campu de tiempu"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "Campu numbéricu"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr "Campu de moneda"
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr "Campu mazcaritáu"
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr "Campu formatiáu"
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr ""
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
#, fuzzy
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "Reem_plazar por"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "Campu de testu"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr "Caxella de verificación"
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr "Campu combináu"
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "Llistáu"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "Campu de data"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "Campu de tiempu"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "Campu numbéricu"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr "Campu de moneda"
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr "Campu mazcaritáu"
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr "Campu formatiáu"
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr ""
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "Desaniciar columna"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
#, fuzzy
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr "~Anubrir columnes"
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
#, fuzzy
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr "~Amosar columnes"
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
#, fuzzy
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "Más..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
#, fuzzy
msgctxt "colsmenu|all"
msgid "_All"
msgstr "Too"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
#, fuzzy
msgctxt "colsmenu|column"
msgid "Column..."
@@ -14086,144 +14083,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "Información de la imaxe"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-#, fuzzy
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "Campu de testu"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-#, fuzzy
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "Botón"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-#, fuzzy
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "Campu d'etiqueta"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-#, fuzzy
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "Marcu de grupu"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-#, fuzzy
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "Llistáu"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-#, fuzzy
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr "Caxella de verificación"
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-#, fuzzy
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr "~Campu d'opción"
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-#, fuzzy
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr "Campu combináu"
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-#, fuzzy
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "Botón gráficu"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-#, fuzzy
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "Escoyeta de ficheru"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-#, fuzzy
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "Campu de data"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-#, fuzzy
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "Campu de tiempu"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-#, fuzzy
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "Campu numbéricu"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-#, fuzzy
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr "Campu de moneda"
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-#, fuzzy
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr "Campu mazcaritáu"
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-#, fuzzy
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr "Control d'imaxe"
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-#, fuzzy
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr "Campu formatiáu"
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-#, fuzzy
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr "Barra de desplazamientu"
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr "Botón de Escoyeta"
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr "Barra de navegación"
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
@@ -15083,31 +14942,27 @@ msgstr "Illuminación"
#. BrBDG
#: svx/uiconfig/ui/docking3deffects.ui:1667
-#, fuzzy
msgctxt "docking3deffects|label20"
msgid "_Type"
-msgstr "_Tipu"
+msgstr "_Triba"
#. txLj4
#: svx/uiconfig/ui/docking3deffects.ui:1684
-#, fuzzy
msgctxt "docking3deffects|label22"
msgid "_Mode"
-msgstr "Mou"
+msgstr "_Mou"
#. pPQLp
#: svx/uiconfig/ui/docking3deffects.ui:1701
-#, fuzzy
msgctxt "docking3deffects|label23"
msgid "_Projection X"
-msgstr "~Proyeición X"
+msgstr "_Proyeición X"
#. xcs3h
#: svx/uiconfig/ui/docking3deffects.ui:1719
-#, fuzzy
msgctxt "docking3deffects|label24"
msgid "P_rojection Y"
-msgstr "P~royeición Y"
+msgstr "P_royeición Y"
#. bxSBA
#: svx/uiconfig/ui/docking3deffects.ui:1737
@@ -15131,10 +14986,9 @@ msgstr ""
#. rfdVf
#: svx/uiconfig/ui/docking3deffects.ui:1776
-#, fuzzy
msgctxt "docking3deffects|texcolor|tooltip_text"
msgid "Color"
-msgstr "_Color:"
+msgstr "Color"
#. dkTiY
#: svx/uiconfig/ui/docking3deffects.ui:1784
@@ -15144,7 +14998,6 @@ msgstr ""
#. aqP2z
#: svx/uiconfig/ui/docking3deffects.ui:1798
-#, fuzzy
msgctxt "docking3deffects|texreplace|tooltip_text"
msgid "Only Texture"
msgstr "Namái testura"
@@ -15157,7 +15010,6 @@ msgstr ""
#. HCKdG
#: svx/uiconfig/ui/docking3deffects.ui:1820
-#, fuzzy
msgctxt "docking3deffects|texmodulate|tooltip_text"
msgid "Texture and Shading"
msgstr "Testura y solombres"
@@ -20185,14 +20037,12 @@ msgstr "Sangríes y espaciáu"
#. EGGHM
#: svx/uiconfig/ui/textcontrolparadialog.ui:183
-#, fuzzy
msgctxt "textcontrolparadialog|labelTP_PARA_ALIGN"
msgid "Alignment"
-msgstr "Alliniamientu "
+msgstr "Alliniamientu"
#. mwKiB
#: svx/uiconfig/ui/textcontrolparadialog.ui:232
-#, fuzzy
msgctxt "textcontrolparadialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr "Tipografía asiática"
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index a4ce4987163..f97d8e939ee 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:18+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ast/>\n"
"Language: ast\n"
@@ -187,7 +187,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. DdjvG
#: sw/inc/app.hrc:29
@@ -259,7 +259,7 @@ msgstr "Estilos de HTML"
#: sw/inc/app.hrc:40
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
-msgstr "Estilu _condicional"
+msgstr "Estilos condicionales"
#. EBcnz
#: sw/inc/app.hrc:46
@@ -289,7 +289,7 @@ msgstr "Estilos personalizaos"
#: sw/inc/app.hrc:55
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
-msgstr ""
+msgstr "Tolos estilos"
#. NPGpT
#: sw/inc/app.hrc:56
@@ -315,7 +315,7 @@ msgstr "Estilos personalizaos"
#: sw/inc/app.hrc:64
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
-msgstr ""
+msgstr "Tolos estilos"
#. kGzjB
#: sw/inc/app.hrc:65
@@ -341,7 +341,7 @@ msgstr "Estilos personalizaos"
#: sw/inc/app.hrc:73
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
-msgstr ""
+msgstr "Tolos estilos"
#. DCRLB
#: sw/inc/app.hrc:74
@@ -367,7 +367,7 @@ msgstr "Estilos personalizaos"
#: sw/inc/app.hrc:82
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
-msgstr ""
+msgstr "Tolos estilos"
#. TPRKY
#: sw/inc/app.hrc:83
@@ -499,7 +499,7 @@ msgstr "Teléfonu de la empresa"
#: sw/inc/dbui.hrc:57
msgctxt "SA_ADDRESS_HEADER"
msgid "Email Address"
-msgstr ""
+msgstr "Direición de corréu electrónicu"
#. XdigY
#: sw/inc/dbui.hrc:58
@@ -1587,10 +1587,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2291,1512 +2291,1567 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "Caráuteres Nota al Pie"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "Númberu Páxina"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "Caráuteres d'etiqueta"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "Quitar mayúscules"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "Símbolos Numberación"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr ""
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "Enllaz d'Internet"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "Enllaz d'Internet Visitáu"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "Marcador de posición"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "Enllaz del índiz"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "Caráuteres de Nota final"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "Numberación de llinies"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "Entrada d'índiz principal"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "Ancla de nota al pie"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "Ancla de nota final"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr "Rubíes"
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "Símbolos Numberación Vertical"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "Énfasis"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "Mui destacáu"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "Testu Fonte"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "Exemplu"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "Entrada Usuariu"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "Variable"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "Definición"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "Teletipu"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "Marcu"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "Gráficos"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "Fórmula"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "Nota al marxe"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "Marca d'agua"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "Etiquetes"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr ""
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "Cuerpu del testu"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "Sangría de primera llinia"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "Sangría negativa de la primera llinia"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "Sangría del cuerpu de testu"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr "Fras de despidida"
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "Robla"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "Encabezamientu"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr "Llista"
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "Índiz"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "Sangría de Llista"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "Nota al marxe"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "Encabezamientu 1"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "Encabezamientu 2"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "Encabezamientu 3"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "Encabezamientu 4"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "Encabezamientu 5"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "Encabezamientu 6"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "Encabezamientu 7"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "Encabezamientu 8"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "Encabezamientu 9"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "Encabezamientu 10"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "Entamu Numberación 1"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "Numberación 1"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "Final Numberación 1"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "Numberación 1 cont."
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "Entamu Numberación 2"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "Numberación 2"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "Final Numberación 2"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "Numberación 2 cont."
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "Entamu Numberación 3"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "Numberación 3"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "Final Numberación 3"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "Numberación 3 cont."
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "Entamu Numberación 4"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "Numberación 4"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "Final Numberación 4"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "Numberación 4 cont."
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "Entamu Numberación 5"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "Numberación 5"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "Final Numberación 5"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "Numberación 5 cont."
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr ""
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr ""
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr ""
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr ""
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr ""
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr ""
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr ""
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr ""
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr ""
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr ""
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr ""
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr ""
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr ""
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr ""
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr ""
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr ""
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr ""
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr ""
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr ""
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr ""
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "Testera"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "Testera izquierda"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "Testera drecha"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "Pie"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "Pie izquierda"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "Pie drecha"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "Conteníu de la Tabla"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "Encabezamientu de tabla"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr "Conteníu del marcu"
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "Nota al pie"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "Nota final"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "Testu de la etiqueta"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "Ilustración"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "Tabla"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "Testu"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "Dibuxu"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr ""
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "Encabezamientu d'índiz"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "Índiz 1"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "Índiz 2"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "Índiz 3"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "Separtador d'índiz"
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "Encabezáu del conteníu"
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Conteníu 1"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Conteníu 2"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Conteníu 3"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Conteníu 4"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Conteníu 5"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Conteníu 6"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Conteníu 7"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Conteníu 8"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Conteníu 9"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Conteníu 10"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "Encabezamientu d'índiz d'usuariu"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "Indiz d'Usuariu 1"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "Indiz d'Usuariu 2"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "Indiz d'Usuariu 3"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "Indiz d'Usuariu 4"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "Indiz d'Usuariu 5"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "Indiz d'Usuariu 6"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "Indiz d'Usuariu 7"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "Indiz d'Usuariu 8"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "Indiz d'Usuariu 9"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "Indiz d'Usuariu 10"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
#, fuzzy
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "Encomilláu"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr ""
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr ""
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "Encabezamientu del índiz d'oxetos"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "Índiz d'oxetos 1"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "Encabezamientu del índiz de tables"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "Índiz tabla 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "Encabezamientu de bibliografía"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "Bibliografía 1"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Títulu"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "Subtítulu"
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "Encomilláu"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "Testu Perfomateáu"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "Llinia Horizontal"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "Conteníu de Llista"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "Encabezamientu de llista"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr ""
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Primer Páxina"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "Páxina izquierda"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Páxina derecha"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "Índiz"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "Nota al pie"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "Nota final"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "Horizontal"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr ""
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr ""
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr ""
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr ""
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr ""
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr ""
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr ""
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr ""
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr ""
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr ""
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "1 columna"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "2 columnes d'igual tamañu"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "3 columnes d'igual tamañu"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "2 columnes de tamañu distintu (izquierda > drecha)"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "2 columnes de tamañu distintu (izquierda < drecha)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr ""
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
#, fuzzy
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Estilos de _párrafu"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "Estilos de caráuter"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
#, fuzzy
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Estilu del marcu"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
#, fuzzy
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Estilu de páxina"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
#, fuzzy
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "Estilos de llista"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
#, fuzzy
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Estilu de páxina"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Sobre"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Etiquetes"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "Documentu de testu de %PRODUCTNAME %PRODUCTVERSION"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Nun se puede abrir el documentu."
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Nun se puede crear el documentu."
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Nun s'atopó la peñera."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Nome y camín del documentu maestru"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "Nome y camín del documentu HTML"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "Editar script"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "Marcador"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr "Sí"
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr "Non"
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr "Caráuteres prohibíos:"
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[Nengún]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Aniciu"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Fin"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "Enriba"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "Embaxo"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "namái llectura"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "Los direutorios «AutoText» son de sólo llectura. ¿Quier llamar al diálogu d'axustes del camín?"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Estadístiques"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Importando'l documentu..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Esportando'l documentu..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Grabando'l documentu..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Volviendo a paxinar..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Dando formatu al documentu automáticamente..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Guetar..."
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Carta"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Revisión ortográfica..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Separtación silábica..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Inxertando direutoriu..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Actualizando direutoriu..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Creando l'estrautu..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Axustar oxetos..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Tabla"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Imaxe"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Oxetu"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Marcu"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "Forma"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Estaya"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Numberación"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "páxina balera"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Estrautu: "
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "separtáu con: "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "Esquema: Nivel "
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Estilu: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Númberu de páxina: "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Saltu enantes de páxina nueva"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Testu occidental: "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Testu asiáticu: "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr ""
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "Autor desconocíu"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Desaniciar ~tolos comentarios de $1"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Desaniciar ~tolos comentarios de $1"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr ""
@@ -3804,14 +3859,14 @@ msgstr ""
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "Esbilla: $1, $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3820,7 +3875,7 @@ msgstr[1] "$1 pallabres"
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3830,7 +3885,7 @@ msgstr[1] "$1 caráuteres"
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1, $2"
@@ -3838,7 +3893,7 @@ msgstr "$1, $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3848,7 +3903,7 @@ msgstr[1] "$1 pallabres"
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3856,91 +3911,91 @@ msgstr[0] "$1 caráuter"
msgstr[1] "$1 caráuteres"
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Convertir testu en tabla"
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Amestar formatu automáticu"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Nome"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Desaniciar Autoformatu"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "La siguiente entrada Autoformatu será esborrada:"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Renomar Autoformatu"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Zarrar"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Xin"
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb"
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mar"
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "Norte"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mediu"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Sur"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Suma"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3952,86 +4007,86 @@ msgstr ""
"Inténtalo otra vegada con un nome distintu."
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Numbéricu"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Fileres"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "Columna"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Editar Entrada Bibliográfica"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Inxertar Entrada Bibliográfica"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "Espaciu ente %1 y %2"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Anchor de columna %1"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "Tabla de %PRODUCTNAME Writer"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "Marcu de %PRODUCTNAME Writer"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
#, fuzzy
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "Marcu de %PRODUCTNAME Writer"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "Otros oxetos OLE"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr ""
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
#, fuzzy
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
@@ -4039,334 +4094,334 @@ msgstr "Nun pue ordenase la seleición"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "Oxetu calcable"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Anantes inxertar Autotestu"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "Dempués inxertar Autotestu"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Mur sobre oxetu"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Executar hiperenllaz"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Mur quitase d'oxetu"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "Imaxe cargada correutamente"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "Encaboxada la carga de la imaxe"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
#, fuzzy
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "Nun pudo cargase la imaxe"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Entrada de caráuteres alfanumbéricos"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Entrada de caráuteres non alfanumbéricos"
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Redimensionar marcu"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Mover marcu"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Testeres"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Tables"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
#, fuzzy
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Imaxe"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "Oxetos OLE"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Marcadores"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Seiciones"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Hiperenllaces"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Referencies"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Índices"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Oxetos de dibuxu"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Comentarios"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Encabezamientu 1"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "Esti ye'l conteníu del primer capítulu. Esta ye una entrada del direutoriu d'usuariu."
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Encabezamientu 1.1"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr "Esti ye'l conteníu del capítulu 1.1. Esta ye la entrada de la tabla de conteníu."
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Encabezamientu 1.2"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr "Esti ye'l conteníu del capítulu 1.2. Esta pallabra clave ye una entrada principal."
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "Tabla 1: Esta ye la tabla 1"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
#, fuzzy
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "Imaxe 1: Esta ye la imaxe 1"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr ""
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Encabezamientu"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Tabla"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Imaxe"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Marcador"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Seición"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Hiperenllaz"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Referencia"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "Índiz"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Comentariu"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Oxetu de dibuxu"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Formatos adicionales..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Sistema]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4376,626 +4431,626 @@ msgstr ""
"n'otru documentu"
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Separtación silábica"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "imposible"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Desaniciar $1"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Inxertar $1"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Sobrescribir: $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Párrafu nuevu"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Mover"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Aplicar atributos"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Aplicar estilos: $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Reaniciar atributos"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Camudar estilu: $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Inxertar ficheru"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Inxertar AutoTestu"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Desaniciar marcador: $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Inxertar marcador: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Ordenar tabla"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Ordenar testu"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Inxertar tabla: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Convertir testu -> tabla"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Convertir tabla -> testu"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Copiar: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Trocar $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Inxertar saltu de páxina"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Inxertar saltu de columna"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Inxertar sobre"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Copiar: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Mover: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Inxertar gráfica de %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Inxertar marcu"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Desaniciar marcu"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Auto formatu"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Testera de la tabla"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Trocar: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Inxertar estaya"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Desaniciar estaya"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Camudar estaya"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Camudar valores predeterminaos"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Camudar estilu: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Desaniciar saltu de páxina"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Correición del testu"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Xubir/baxar cadarma"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Mover cadarma"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Inxertar numberación"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Xubir un nivel"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Baxar un nivel"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Mover párrafos"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Inxertar oxetu de dibuxu: $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Activar/Desactivar númberu"
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Aumentar sangría"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Amenorgar sangría"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Inxertar lleenda: $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Reaniciar numberación"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Camudar nota al pie"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Aceutar cambiu: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Torgar el cambiu: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Dixebrar tabla"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Parar atributu"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "AutoCorreición"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Amestar la tabla"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Camudar mayúscules y minúscules"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Desaniciar numberación"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Oxetos de dibuxu: $1"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Aconceyar oxetos de dibuxu"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Separtar oxetos de dibuxu"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Desaniciar oxetos de dibuxu"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Sustituir la imaxe"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Desaniciar la imaxe"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Aplicar atributos de tabla"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Formatu automáticu de Tabla"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Inxertar columna"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Inxertar filera"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Desaniciar filera/columna"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Desaniciar columna"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Desaniciar filera"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Dixebrar caxelles"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Amestar caxelles"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formatu de la caxella"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Inxertar índiz/tabla"
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Desaniciar índiz/tabla"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Copiar tabla"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Copiar tabla"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Configurar cursor"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Camudar les opciones de notes al pie"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Comparar documentu"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Aplicar estilu de marcu: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Configuración de Ruby"
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Inxertar nota al pie"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "inxertar botón d'URL"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Inxertar hiperenllaz"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "desaniciar conteníu invisible"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Tabla/índiz camudáu"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "esbilla múltiple"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Escritura: $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Apegar del cartafueyu"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "ocurrencies de"
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5003,7 +5058,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5011,312 +5066,312 @@ msgstr[0] "1 saltu de ringlera"
msgstr[1] "$1 saltos de ringlera"
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "saltu de páxina"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "saltu de columna"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Inxertar $1"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Desaniciar $1"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Atributos camudaos"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Camudamientu de tabla"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
#, fuzzy
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Camudamientu de tabla"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Inxertar filera"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Desaniciar filera"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Inxertar caxella"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
#, fuzzy
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Desaniciar caxelles"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 cambios"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Camudar estilu de páxina: $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Crear estilu de páxina: $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Desaniciar estilu de páxina: $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Renomar estilu de páxina: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Testera/pie de páxina camudáu"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Campu camudáu"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Crear estilu de párrafu: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Desaniciar estilu de párrafu: $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Renomar estilu de párrafu: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Crear estilu de caráuter: $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Desaniciar estilu de caráuter: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Renomar estilu de caráuteres: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Crear estilu de marcu: $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Desaniciar estilu de marcu: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Renomar estilu de marcu: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Crear estilu de numberación: $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Desaniciar estilu de numberación: $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Renomar estilu de numberación: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Renomar marcador: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Inxertar entrada d'índiz"
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Desaniciar entrada d'índiz"
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "campu"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Párrafos"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "marcu"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "Oxetu OLE"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "fórmula"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "gráfica"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "comentariu"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "referencia cruzada"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "script"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "entrada bibliográfica"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "caráuter especial"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "nota al pie"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "imaxe"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "oxetu(os) de dibuxu"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "tabla: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5324,821 +5379,821 @@ msgstr[0] "capítulu"
msgstr[1] "capítulos"
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "párrafu"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Camudar títulu d'oxetu $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Crear estilu de páxina: $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Desaniciar estilu de páxina: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
#, fuzzy
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Crear estilu de páxina: $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
#, fuzzy
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Desaniciar páxina"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Visualización del documentu"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Visualización del documentu"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Encabezáu $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Páxina d'encabezáu $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Pie de páxina $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Páxina de pie de páxina $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Nota al pie $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Nota al pie $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Nota final $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Nota final $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) na páxina $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Páxina $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Páxina: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Autor"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Data"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr "Solucionáu"
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Aiciones"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "Activa esti botón p'abrir una llista d'aiciones que pueden llevase a cau sobro ésti u otros comentarios"
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Entever documentu"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Mou d'entever)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "Documentu de %PRODUCTNAME"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
#, fuzzy
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Fallu de llectura"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "La imaxe nun se pue amosar."
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Fallu al lleer al portapapeles."
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Saltu de columna manual"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Filera %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Columna %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Caráuter"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Párrafu"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Marcu"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Páxines"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "Numberación"
+msgid "List"
+msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Tabla"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Caxella"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Asia"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "CTL"
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Oeste"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Conteníu"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
#, fuzzy
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "Fondu de la pá~xina"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
#, fuzzy
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Te~stu anubríu"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
#, fuzzy
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "Espacios acutaos pa ~testu"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
#, fuzzy
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Controle~s de formulariu"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Color"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Impre~ntar testu en prieto"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Páxines:"
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
#, fuzzy
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Imprentar páxines baleres inxertaes ~automáticamente"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
#, fuzzy
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "~Usa namái la bandexa de papel de les preferencies d'impresora"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
#, fuzzy
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Dengún (namái el documentu)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Namái comentarios"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Poner al final del documentu"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
#, fuzzy
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Poner al final de la páxina"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Comentarios"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Prospect~u"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
#, fuzzy
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Escritura d'esquierda a drecha"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
#, fuzzy
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Escritura de drecha a esquierda"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr ""
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Funciones"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Encaboxar"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Aplicar"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Barra de fórmules"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
#, fuzzy
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Testu de la fórmula"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
#, fuzzy
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Esquema: Nivel "
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
#, fuzzy
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Mou Arrastrar"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
#, fuzzy
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Inxertar hiperenllaz"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Inxertar como enllaz"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Inxertar como copia"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Visualizar"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
#, fuzzy
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Ventana activa"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
#, fuzzy
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "anubríu"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "activa"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
#, fuzzy
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "inactivu"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Editar..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
#, fuzzy
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Anovar"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Editar"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
#, fuzzy
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Editar enllaces"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Inxertar"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
#, fuzzy
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Índiz"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "Ficheru"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Documentu nuevu"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Testu"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Desaniciar"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~Desaniciar"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Esbilla"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índices"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
#, fuzzy
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Enllaz"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Too"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
#, fuzzy
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "anubríu"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
#, fuzzy
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Nun s'atopó la peñera."
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr "SOLUCIONÁU"
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Izquierda: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Drecha: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Interior: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Esterior: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Superior: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
#, fuzzy
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
@@ -6146,895 +6201,895 @@ msgstr ". Inferior: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Páxina"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Llinia"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Autor"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Denguna"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Índiz alfabéticu"
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Definíu pol usuariu"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Sumariu"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Bibliografía"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
#, fuzzy
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Encomilláu"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Índiz de tables"
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Índiz d'oxetos"
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Índiz de figures"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Títulu"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
#, fuzzy
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Asuntu:"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Pallabres clave"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Comentarios"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
#, fuzzy
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Crear"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Modificáu"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Cabera impresión"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Númberu de revisión"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Tiempu total d'edición"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Artículu"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Llibru"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
#, fuzzy
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Prospect~u"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Informe de reunión"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Esbilla del llibru"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Esbilla del llibru con títulu"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Informe de reunión"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Diariu"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Documentación téunica"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Tesis"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
#, fuzzy
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Amestáu"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Disertación"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Informe de reunión"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Informe d'investigación"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Non publicáu"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "Corréu"
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Documentu WWW"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Definíu pol usuariu 1"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Definíu pol usuariu 2"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Definíu pol usuariu 3"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Definíu pol usuariu 4"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Definíu pol usuariu 5"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Nome curtíu"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Triba"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Direición"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Anotación"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Autor(es)"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Títulu del llibru"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Capítulu"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Edición"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
#, fuzzy
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Editor"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
#, fuzzy
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "M~ena de publicación"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Institución"
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Diariu"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Mes"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Númberu"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Organización"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Páxina(es)"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Editor"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
#, fuzzy
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Universidá"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Serie"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Títulu"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
#, fuzzy
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Mena d'in~forme"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Volume"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Añu"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Definíu pol usuariu 1"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Definíu pol usuariu 2"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Definíu pol usuariu 3"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Definíu pol usuariu 4"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Definíu pol usuariu 5"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Editar entrada d'índiz"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Inxertar una entrada d'índiz"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
#, fuzzy
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "El documentu ya caltien la entrada bibliográfica, pero con datos distintos. ¿Quies axustar les entraes existentes?"
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Comentarios"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Ver los comentarios"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Anubrir los comentarios"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Yá esiste'l nome del atayu. Escueya otru nome."
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "¿Desaniciar testu automáticu?"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Desaniciar la categoría "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Autotestu:"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Guardar Autotestu"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Nun hai Autotestu nesti ficheru."
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "El mio AutoTestu"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Nun s'alcontró'l testu automáticu pal accesu rápidu «%1»."
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Nun pue insertase una tabla ensin fileres o caxelles"
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Nun pue inxertase la tabla porque ye pergrande"
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Nun pudo crease'l testu automáticu."
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "El formatu que quies del cartafueyu nun ta disponible."
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "Documentu de testu de %PRODUCTNAME %PRODUCTVERSION"
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Tolos comentarios"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Tolos comentarios"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Comentarios por "
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(ensin data)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(ensin autor)"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Rempuesta a $1"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Editar bloque de direiciones"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Saludu personalizáu (destinatarios masculinos)"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Saludu personalizáu (destinatarios femeninos)"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "E~lementos de saludu"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Amestar a saludu"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Quitar del saludu"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~Arrastra los elementos del saludu hasta al caxa siguiente"
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Tratamientu"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Signu de puntuación"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Testu"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
#, fuzzy
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Asigna los campos del orixe de datos pa que coincidan colos elementos de direición."
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Vista previa de saludu"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Elementos de la direición"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Elementos del saludu"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Coincidencies col campu:"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Vista previa"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr "¿Quier desaniciar esta fonte de datos rexistrada?"
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " entá nun coincide "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Tolos ficheros"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Llistes de señes(*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Testu simple (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Testu separtáu por comes (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7043,92 +7098,92 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "Llista de direiciones de %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Finar"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
#, fuzzy
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Asistente pa combinar correspondencia"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabla"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Consulta"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "¿Siguir comprobando pel entamu del documentu?"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Completóse la revisión ortográfica."
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7138,252 +7193,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Data"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Hora"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Nome ficheru"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Nome Base de Datos"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Capítulu"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Estadístiques"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Autor"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Plantilles"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Remitente"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Afitar variable"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Amosar variable"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Inxertar Fórmula"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Campu d'entrada"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Campu d'entrada (variable)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Campu d'entrada (usuariu)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Testu condicional"
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "Campu DDE"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Executar macro"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Rangu númberos"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Afitar páxina variable"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Amosar páxina variable"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Cargar URL"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Marcador de posición"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Combinar caráuteres"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Llista d'entrada"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Afitar Referencia"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Inxertar Referencia"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Amestar campos corréu"
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Rexistru siguiente"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Cualisquier rexistru"
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Númberu rexistru"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Páxina anterior"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Próxima páxina"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Testu anubríu"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Campu d'usuariu"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Script"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Entrada bibliografía"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Párrafu anubríu"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Información Documentu"
@@ -7392,87 +7447,87 @@ msgstr "Información Documentu"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Data"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Fecha (fixada)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Tiempu"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Tiempu (fixu)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tables"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Caráuteres"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Pallabres"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
-msgstr "Págrafos"
+msgstr "Párrafos"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Imaxe"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Oxetos"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Páxines"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE Automáticu"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE Manual"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7481,103 +7536,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Compañía"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Nome"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Apellíos"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Iniciales"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Cai"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "País"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Códigu postal"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Ciudá"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Títulu"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posición"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Tel. (Llar)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Tel. (Trabayu)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Fax"
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "Corréu"
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Estáu"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "desactiváu"
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "activáu"
@@ -7587,37 +7642,37 @@ msgstr "activáu"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Nome ficheru"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Nome ficheru ensin estensión"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Nome Camín/Ficheru"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Camín"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Categoría"
@@ -7626,25 +7681,25 @@ msgstr "Categoría"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Nome capítulu"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Númberu capítulu"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Númberu de capítulu ensin separtador"
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Númberu capítulu y nome"
@@ -7653,55 +7708,55 @@ msgstr "Númberu capítulu y nome"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Romanu (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Romanu (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Arábicu (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Cómo Estilu Páxina"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Testu"
@@ -7710,13 +7765,13 @@ msgstr "Testu"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Nome"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Iniciales"
@@ -7725,49 +7780,49 @@ msgstr "Iniciales"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Sistema"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Testu"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Nome"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Testu"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Fórmula"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Testu"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Base de datos"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Sistema"
@@ -7776,19 +7831,19 @@ msgstr "Sistema"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Autor"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Hora"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Data"
@@ -7797,79 +7852,79 @@ msgstr "Data"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "Referencia"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Páxina"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Capítulu"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "Enriba/Embaxo"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "Cómo Estilu Páxina"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Categoría y Númberos"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Testu del pie"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Numberación"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Númberu"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Númberu (ensin contestu)"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Númberu (contestu completu)"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7878,31 +7933,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Testu"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabla"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Marcu"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Imaxe"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Oxetu"
@@ -7911,1555 +7966,1554 @@ msgstr "Oxetu"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Condición"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Entós, Si non"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "Instrucción DDE"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Anubrir t~estu"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Nome ~macro"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Referencia"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "C~aráuteres"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "S~eparación"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Valor"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Fórmula"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Personalizáu"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Usuariu]"
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "Dist. horizontal"
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "Dist. vertical"
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Anchor"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Altor"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Marxe esquierdu"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Marxe superior"
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Columnes"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Fileres"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
#, fuzzy
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Vista previa de llibru"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "fileres"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
#, fuzzy
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Quitar mayúscules"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
#, fuzzy
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "saltu de páxina"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
#, fuzzy
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Reflexar verticalmente"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
#, fuzzy
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Reflexar %1 horizontalmente"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Estilu de caráuter"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
#, fuzzy
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Estilu de caráuter"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
#, fuzzy
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Pie"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
#, fuzzy
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Dir al pie de páxina"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Testera"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
#, fuzzy
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Dir a la testera"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Nengún"
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Continuu"
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Anchor:"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
#, fuzzy
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "A párra_fu"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
#, fuzzy
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "Al ca_ráuter"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
#, fuzzy
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "A _páxina"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Centráu en vertical"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "P'abaxo"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Llinia superior"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Centru izquierda"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Cabero de llinia"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Centráu n'horizontal"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "Adientro"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "Afuera"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Anc_hor completu"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Columnes"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "E_ditable en documentos de namái llectura"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Dixebrar"
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "Numberación"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
-#, fuzzy
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "Amosar numberación"
+msgid "List Style: (None)"
+msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "y "
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Rellumu"
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Restaurar "
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Contraste"
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Tresparencia"
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Inxertar"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Mou gráficos"
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Estándar"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Escala de buxos"
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Blancu y prietu"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Marca d'agua"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Xiru"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Ensin cuadrícula"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Cuadrícula (sólo llinies)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Cuadrícula (llinies y caráuteres)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Siguir el fluxu del testu"
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabla"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "Páxina"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Dibuxu"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
#, fuzzy
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Control"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
msgctxt "ST_REG"
msgid "Section"
msgstr "Seición"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Marcador"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Gráficos"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Testeres"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Esbilla"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Nota al pie"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Comentariu"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Repitir la Gueta"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Próxima páxina"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Ensin encabezamientu"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
#, fuzzy
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Seición nueva"
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Dir al siguiente marcador"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Ensin encabezamientu"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
#, fuzzy
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Seición nueva"
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Dir a la nota al pie siguiente"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Comentariu Siguiente"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Inxertar entrada d'índiz"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Páxina anterior"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Páxina anterior"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Seición anterior"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Dir a la marca anterior"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Dir a la nota al pie anterior"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Comentariu Anterior"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Dir a la fórmula anterior"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Dir a l'anterior fórmula incorreuta"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Dir a la siguiente fórmula incorreuta"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Inxertar"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Desaniciar"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Camudamientu de tabla"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Estilos de párrafu aplicaos"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Filera inxertada "
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Fierla desaniciada"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Nota final"
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Nota al pie"
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Desaniciar ~capa..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "~Formatu de páxina..."
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "¿Desaniciar el pie de páxina?"
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Formatu del suelu..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "El ficheru d'imaxe nun pue abrise"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "El ficheru d'imaxe nun pue lleese"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Formatu d'imaxe desconocíu"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
#, fuzzy
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Esta versión del ficheru d'imaxe nun tien encontu"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "El filtru d'imaxe nun s'alcontró"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Nun hai memoria bastante pa inxertar la imaxe."
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Inxertar una imaxe"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Comentariu: "
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Inxerción"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Desaniciu"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "AutoCorreición"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Camudamientu de tabla"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Estilos de párrafu aplicaos"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Páxina "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Párrafu"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imaxe"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Marcu"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Filera de tabla"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Caxella de la tabla"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Páxina"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Testera"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Pie"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Documentu HTML de %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Títulu"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separtador"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Nivel "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Nun pudo atopase'l ficheru «%1» nel camín «%2»."
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Índiz definíu pol usuariu"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Nengún>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Nengún>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Númberu capítulu"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Entrada"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Tabulador parada"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Testu"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Númberu páxina"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Información capítulu"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Aniciar enllaz"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Fin d'enllaz"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Entrada bibliográfica: "
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Estilu de caráuter: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)"
@@ -9468,264 +9522,264 @@ msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Llinia base no cime~ro"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Llinia base no ca~bero"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Llinia base ~centrada"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Inxertar oxetu"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Editar oxetu"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Plantilla: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Bordes"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Fondu"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Estilu Párrafu: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Los númberos de páxina nun se puen aplicar na páxina actual. Los númberos pares se puen aplicar nes páxines izquierdes, los impares en páxines dereches."
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "Documentu maestru de %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Dengún (Nun igua la ortografía)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Reafitar a la llingua predeterminada"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Más..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Inorar"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Documentu HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Documentu de testu"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Nun s'especificó l'orixe."
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Nivel "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Esquema"
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Inxertar nota al pie/nota final"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "La clave de busca sustituyó XX vegaes"
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Filera "
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Columna "
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Siguir"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9734,7 +9788,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9743,122 +9797,122 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Firmáu por "
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Tarxetes d'empresa"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Inxertar"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Desaniciar"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Atributos"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Términu de gueta"
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Entrada alternativa"
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1ᵉʳ clave"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2ª clave"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Comentariu"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Concasar mayúscules y minúscules"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Sólo pallabra"
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Sí"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Non"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizáu"
@@ -10004,6 +10058,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "Amestar espaciu de non separtación"
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -11835,10 +11895,9 @@ msgstr "Hiperenllaz"
#. uV8CG
#: sw/uiconfig/swriter/ui/characterproperties.ui:398
-#, fuzzy
msgctxt "characterproperties|background"
msgid "Highlighting"
-msgstr "Fondu de caráuter"
+msgstr "Resalte"
#. fJhsz
#: sw/uiconfig/swriter/ui/characterproperties.ui:446
@@ -12413,61 +12472,61 @@ msgstr "10ᵘ nivel d'esquema"
#: sw/uiconfig/swriter/ui/conditionpage.ui:243
msgctxt "conditionpage|filter"
msgid " 1st List Level"
-msgstr ""
+msgstr " 1ᵉʳ nivel de llista"
#. sGSZA
#: sw/uiconfig/swriter/ui/conditionpage.ui:244
msgctxt "conditionpage|filter"
msgid " 2nd List Level"
-msgstr ""
+msgstr " 2ᵘ nivel de llista"
#. FGGC4
#: sw/uiconfig/swriter/ui/conditionpage.ui:245
msgctxt "conditionpage|filter"
msgid " 3rd List Level"
-msgstr ""
+msgstr " 3ᵉʳ nivel de llista"
#. kne44
#: sw/uiconfig/swriter/ui/conditionpage.ui:246
msgctxt "conditionpage|filter"
msgid " 4th List Level"
-msgstr ""
+msgstr " 4ᵘ nivel de llista"
#. Wjkzx
#: sw/uiconfig/swriter/ui/conditionpage.ui:247
msgctxt "conditionpage|filter"
msgid " 5th List Level"
-msgstr ""
+msgstr " 5ᵘ nivel de llista"
#. R7zrU
#: sw/uiconfig/swriter/ui/conditionpage.ui:248
msgctxt "conditionpage|filter"
msgid " 6th List Level"
-msgstr ""
+msgstr " 6ᵘ nivel de llista"
#. A4QuR
#: sw/uiconfig/swriter/ui/conditionpage.ui:249
msgctxt "conditionpage|filter"
msgid " 7th List Level"
-msgstr ""
+msgstr " 7ᵘ nivel de llista"
#. RiFQb
#: sw/uiconfig/swriter/ui/conditionpage.ui:250
msgctxt "conditionpage|filter"
msgid " 8th List Level"
-msgstr ""
+msgstr " 8ᵘ nivel de llista"
#. AoCPE
#: sw/uiconfig/swriter/ui/conditionpage.ui:251
msgctxt "conditionpage|filter"
msgid " 9th List Level"
-msgstr ""
+msgstr " 9ᵘ nivel de llista"
#. gLAFZ
#: sw/uiconfig/swriter/ui/conditionpage.ui:252
msgctxt "conditionpage|filter"
msgid "10th List Level"
-msgstr ""
+msgstr "10ᵘ nivel de llista"
#. AniaD
#: sw/uiconfig/swriter/ui/conditionpage.ui:273
@@ -14170,7 +14229,7 @@ msgstr "Llista los tipos de campu disponible. P'amestar un campu a un documentu,
#: sw/uiconfig/swriter/ui/flddbpage.ui:100
msgctxt "flddbpage|label1"
msgid "_Type"
-msgstr "_Tipu"
+msgstr "_Triba"
#. EdyCS
#: sw/uiconfig/swriter/ui/flddbpage.ui:131
@@ -14326,7 +14385,7 @@ msgstr "Llista los tipos de campu disponible. P'amestar un campu a un documentu,
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:109
msgctxt "flddocumentpage|label1"
msgid "_Type"
-msgstr "_Tipu"
+msgstr "_Triba"
#. dfKEF
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:165
@@ -14416,7 +14475,7 @@ msgstr "Llista los tipos de campu disponible. P'amestar un campu a un documentu,
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:90
msgctxt "fldfuncpage|label1"
msgid "_Type"
-msgstr "_Tipu"
+msgstr "_Triba"
#. vSCUW
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:153
@@ -14657,7 +14716,7 @@ msgstr "Llista los tipos de campu disponible. P'amestar un campu a un documentu,
#: sw/uiconfig/swriter/ui/fldvarpage.ui:118
msgctxt "fldvarpage|label1"
msgid "_Type"
-msgstr "_Tipu"
+msgstr "_Triba"
#. YfUrq
#: sw/uiconfig/swriter/ui/fldvarpage.ui:189
@@ -19615,10 +19674,9 @@ msgstr ""
#. roGWt
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:138
-#, fuzzy
msgctxt "mmoutputtypepage|label1"
msgid "What Type of Document Do You Want to Create?"
-msgstr "¿Qué tipu de documentu quier crear?"
+msgstr "¿Qué tipu de documentu quies crear?"
#. cCE2r
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:153
@@ -19710,10 +19768,9 @@ msgstr "Documentu de Microsoft Word"
#. xSrmF
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:217
-#, fuzzy
msgctxt "mmresultemaildialog|liststore1"
msgid "HTML Message"
-msgstr "Mensaxe d'ayuda"
+msgstr "Mensaxe HTML"
#. eCCZz
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:218
@@ -19743,7 +19800,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:254
msgctxt "mmresultemaildialog|passwordft"
msgid "Password"
-msgstr ""
+msgstr "Clave"
#. AEF8w
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:277
@@ -20563,296 +20620,296 @@ msgid "Text"
msgstr "Testu"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna ente les vistes maestru y normal si abre un documentu maestru."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Testera"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
#, fuzzy
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Pie"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Faiga clic equí pa dexar una marca na posición del cursor. Pue definir hasta cinco marques. Pa saltar a una marca, faiga clic nel iconu Navegación, na ventana Navegación, faiga clic nel iconu Marca y, de siguío, faiga clic nel botón Marca anterior o Marca siguiente."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
#, fuzzy
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Xubir un nivel"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
#, fuzzy
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Baxar un nivel"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
#, fuzzy
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Mou Arrastrar"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Documentu"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
#, fuzzy
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Ventana activa"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Alterna ente les vistes maestru y normal si abre un documentu maestru."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Editar"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Anovar"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Inxertar"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
#, fuzzy
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Mover a_rriba"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
#, fuzzy
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Mover a_baxo"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Esbilla"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Índices"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Enllaces"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Too"
@@ -20895,181 +20952,181 @@ msgid "~File"
msgstr "~Ficheru"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oxetu"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprentar"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -22128,20 +22185,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "Guardar Como"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "Calque sobre un estilu de numberación de la llista y escriba un nome pal estilu. Los númberos corresponder col nivel de numberación al que s'asignen los estilos."
+msgid "Shows the current saved format names."
+msgstr ""
+
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "Calque sobre un estilu de numberación de la llista y escriba un nome pal estilu. Los númberos corresponder col nivel de numberación al que s'asignen los estilos."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
+msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "Formatu"
@@ -22152,213 +22221,225 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr "Nivel d'esquema:"
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr ""
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr "Nivel 1"
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr "Nivel 2"
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr "Nivel 3"
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr "Nivel 4"
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr "Nivel 5"
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr "Nivel 6"
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr "Nivel 7"
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr "Nivel 8"
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr "Nivel 9"
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "Nivel 10"
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "Esquema"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "Denguna"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
#, fuzzy
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "Editar estilos..."
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "Prin_cipiar con:"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
-msgstr "Llista"
+msgid "Apply List Style"
+msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "_Incluyir esti párrafu na numberación de llinia"
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "Reanici_ar nesti párrafu"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "_Principiar con:"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "Numberación de Llinia"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -27680,10 +27761,9 @@ msgstr "Diseñu asiáticu"
#. scr3Z
#: sw/uiconfig/swriter/ui/templatedialog1.ui:413
-#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
-msgstr "Fondu de caráuter"
+msgstr "Resalte"
#. gurnZ
#: sw/uiconfig/swriter/ui/templatedialog1.ui:461
@@ -27831,10 +27911,9 @@ msgstr "Diseñu asiáticu"
#. HkBDx
#: sw/uiconfig/swriter/ui/templatedialog2.ui:598
-#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
-msgstr "Fondu de caráuter"
+msgstr "Resalte"
#. 9gGCX
#: sw/uiconfig/swriter/ui/templatedialog2.ui:646
@@ -28461,11 +28540,11 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr "Abre un diálogu onde pue editar l'estilu escoyíu del caráuter."
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
-msgstr "Especifique l'estilu de formateáu pa la parte escoyida na llinia Estructura."
+msgid "Specify the character style for the selected part on the Structure line."
+msgstr ""
#. 5nWPi
#: sw/uiconfig/swriter/ui/tocentriespage.ui:303
@@ -28728,11 +28807,11 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr "Estilu de caráuter pa les entraes principales"
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
-msgstr "Especifique l'estilu de formateáu de les principales entraes nel índiz alfabéticu. Pa convertir una entrada del índiz nuna entrada principal, faiga clic delantre del campu del índiz nel documentu y de siguío escueya Editar - Entrada d'índiz."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgstr ""
#. r33aA
#: sw/uiconfig/swriter/ui/tocentriespage.ui:839
@@ -29823,7 +29902,7 @@ msgstr "Color"
#: sw/uiconfig/swriter/ui/watermarkdialog.ui:186
msgctxt "watermarkdialog|extended_tip|Angle"
msgid "Select the rotation angle for the watermark. The text will be rotated by this angle in counterclockwise direction."
-msgstr ""
+msgstr "Seleiciona l'ángulu de xiru de la marca d'agua. El testu xiraráse en sen antihorariu."
#. 7hEkM
#: sw/uiconfig/swriter/ui/watermarkdialog.ui:205
diff --git a/source/ast/uui/messages.po b/source/ast/uui/messages.po
index 51d07132986..8ff2840a700 100644
--- a/source/ast/uui/messages.po
+++ b/source/ast/uui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ast/>\n"
"Language: ast\n"
@@ -13,35 +13,35 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1522251360.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr "La operación executada sobre $(ARG1) torgóse."
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr "Accesu a $(ARG1) refugáu."
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "$(ARG1) yá esiste."
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "El destín yá esiste."
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -53,7 +53,7 @@ msgstr ""
"que ye demasiáu grande p'almacenar en formatu binariu. Si quies que los usuarios que nun tengan accesu a la contraseña puedan executar macros nesi módulu(os) tienes que dividilu en dellos módulos más pequeños. ¿Quies siguir grabando/esportando biblioteca?"
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -66,289 +66,289 @@ msgid ""
msgstr ""
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr "Los datos de $(ARG1) contienen una suma de verificación incorreuta."
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr "Nun se pudo crear l'oxetu $(ARG1) nel direutoriu $(ARG2)."
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr "Nun se pudieron lleer los datos de $(ARG1)."
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr "Nun se pudo finar la operación de gueta en$(ARG1)."
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr "Nun se pudo finar la operación tell en $(ARG1)."
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr "Nun se pudieron grabar los datos en $(ARG1)."
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr "Aición imposible: $(ARG1) ye'l direutoriu actual."
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr "$(ARG1) nun ta preparáu."
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr "Aición imposible: $(ARG1) y $(ARG2) son distintos preseos (unidaes)."
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr "Fallu xeneeral de entrada/salida al acceder a $(ARG1)."
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr "Intentu fallíu d'accesu a $(ARG1)."
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "$(ARG1) contién carauteres inválidos."
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr "El preséu (unidá) $(ARG1) nun val."
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr "Los datos de $(ARG1) tienen un tamañu que nun val."
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr "La operación fecha en $(ARG1) entamóse con un parámetru que nun val."
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr "Nun se fue a executar la operación porque $(ARG1) contién carauteres comodín."
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr "Fallu nel accesu compartíu a $(ARG1)."
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "$(ARG1) contién caráuteres mal colocaos."
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "El nome $(ARG1) contién abondos caráuteres."
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "$(ARG1) nun esiste."
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "Nun esiste'l camín $(ARG1)."
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr "La operación fecha en $(ARG1) nun tien por ella'l sistema operativu."
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "$(ARG1) nun ye un direutoriu."
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "$(ARG1) nun ye un ficheru."
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr "Nun hai espaciu llibre nel dispositivu $(ARG1)."
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr "Nun se fue a executar la operación en $(ARG1) por causa del excesu de ficheros abiertos."
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr "Nun se fue a executar la operación en $(ARG1) porque nun queda memoria llibre."
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr "La operación en $(ARG1) nun ye a siguir porque hai más datos pendientes."
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr "$(ARG1) nun se pue copiar en sigo mesmu."
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr "Fallu desconocíu d'entrada/salida al acceder a $(ARG1)."
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "$(ARG1) ta protexíu contra escritura."
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "$(ARG1) nun ta nel formatu afayadizu."
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "La versión de $(ARG1) nun ye l'afayadiza."
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "Nun esiste la unidá $(ARG1)."
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "Nun esiste la carpeta $(ARG1)."
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr "Nun s'almite la versión instalada de Java."
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr "Nun s'almite la versión instalada de Java, $(ARG1)."
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr "Nun s'almite la versión instalada de Java; necesítase usar polo menos la versión $(ARG1)."
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr "Nun s'almite la versión instalada de Java, $(ARG1); necesítase usar polo menos la versión $(ARG2)."
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr "Los datos rellacionaos cola sociedá tán toyíos."
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr "Los datos rellacionaos cola sociedá $(ARG1) tán toyíos."
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr "El volume $(ARG1) nun ta preparáu."
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr "$(ARG1) nun ta preparáu; inxerta un mediu d'almacenamientu."
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr "El volume $(ARG1) nun ta preparáu; inxerta un mediu d'almacenamientu."
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr "Meti'l discu $(ARG1)."
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr "Nun se ye a crear l'oxetu nel direutoriu $(ARG1)."
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr "%PRODUCTNAME nun puede torgar que se camuden los ficheros cuando s'usa esti protocolu de tresmisión. ¿Quies siguir de toes maneres?"
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
#, fuzzy
msgctxt "RID_UUI_ERRHDL"
msgid ""
@@ -371,13 +371,13 @@ msgstr ""
"Quies que %PRODUCTNAME igüe'l documentu?\n"
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "Nun pudo iguase'l ficheru '$(ARG1)' y por eso nun se pue abrir."
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -387,7 +387,7 @@ msgstr ""
"¿Quies siguir arrancando %PRODUCTNAME ensin los datos de configuración toyíos?"
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -397,13 +397,13 @@ msgstr ""
"¿Quies entamar %PRODUCTNAME ensin esos datos de configuración toyíos?"
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr "La fonte de datos de configuración «$(ARG1)» nun ta disponible. Ensin ellos, delles funciones pueden non furrular afayadizamente."
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -413,31 +413,31 @@ msgstr ""
"¿Quies siguir col aniciu de %PRODUCTNAME ensin los datos de configuración que falten?"
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr "El formulariu contién datos que nun valen. ¿Quies siguir de toes maneres?"
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr "El ficheru $(ARG1) ta bloquiáu por otru usuariu. Nesti intre, nun puede permitise otru accesu d'escritura sobro'l ficheru."
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr "El ficheru $(ARG1) ta bloquiáu. Nun puede permitise otru accesu d'escritura sobro'l ficheru nesti intre."
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr "Nesti intre, nun tienes bloquiáu'l ficheru $(ARG1)."
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -447,7 +447,7 @@ msgstr ""
"Esto puede asoceder por problemes nel sirvidor al alministrar los permisos del ficheru. Nun puede garantizase que cualesquier operación d'escritura nesti ficheru nun sobroscriba los cambeos fechos por otros usuarios!"
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -461,7 +461,7 @@ msgstr ""
" $(ARG1)."
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -473,7 +473,7 @@ msgstr ""
"Enantes d'aceutar esti certificáu, tendríes d'esaminar el certificáu d'esti sitiu con procuru. ¿Quies aceptar esti certificáu col envís d'identificar el sitiu web $(ARG1)?"
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -485,13 +485,13 @@ msgstr ""
"Tendríes de comprobar si la hora del to ordenador ta bien."
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr "Alerta de seguridá: Certificáu del sirvidor inválidu"
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -507,13 +507,13 @@ msgstr ""
"¿Quies siguir de toes maneres?"
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr "Alerta de seguridá: El certificáu del sirvidor gandió"
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -525,7 +525,7 @@ msgstr ""
"Si sospeches del certificáu que t'amuesen, encaboxa la conexón y avisa al alministrador del sitiu."
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr "Alerta de seguridá: Nome diferente nel dominiu"
@@ -593,61 +593,61 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr ""
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr ""
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
#, fuzzy
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "_Escriba la contraseña:"
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr ""
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
#, fuzzy
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "Establecer contraseñes"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
#, fuzzy
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "_Escriba la contraseña:"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr ""
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Documentu n'usu"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -656,19 +656,19 @@ msgid ""
msgstr ""
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~namái pa llectura"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~Abrir"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -677,62 +677,62 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "~Retentar guardar"
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~Guardar"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "Alco~rdase de la contraseña fasta'l final de la sesión"
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Alco~rdase de la contraseña"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Tresmisión non encriptada"
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
#, fuzzy
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr "El ficheru nun pudo bloquiase esclusivamente pal accesu dende %PRODUCTNAME, darréu que fálten-y permisos pa crear un ficheru de bloquéu nel allugamientu d'esi ficheru."
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~Namái llectura"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Documentu n'usu"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -743,7 +743,7 @@ msgid ""
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -751,31 +751,31 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~Namái llectura"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Abrir ~Copia"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Usuariu desconocíu"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Otres persones camudaron el documentu"
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -784,19 +784,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "~Guardar de toes formes"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Documentu n'usu"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -807,7 +807,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -818,19 +818,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "~Retentar guardar"
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "~Guardar como..."
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -838,7 +838,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -846,55 +846,55 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "La contraseña nun ye correuta. El documentu nun pue abrise."
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "La contraseña nun ye correuta. El documentu nun pue camudase."
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "La contraseña maestra ye incorreuta."
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "La contraseña ye incorreuta."
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "La confirmación de la contraseña ye distinta."
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~Namái llectura"
diff --git a/source/ast/vcl/messages.po b/source/ast/vcl/messages.po
index be4e269b1de..00298c97428 100644
--- a/source/ast/vcl/messages.po
+++ b/source/ast/vcl/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022501.000000\n"
#. k5jTM
@@ -573,7 +573,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. CXDQa
#: vcl/inc/printaccessoryview.hrc:27
@@ -665,150 +665,138 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "Restaurar"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr "Agrandar"
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr "Replegar"
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "Ayuda"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr ""
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "Amosar"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "Anubrir"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "Zarrar el documentu"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "~Aceutar"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "~Encaboxar"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "Aceutar"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "Encaboxar"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "~Sí"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "~Non"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "~Reintentar"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~Ayuda"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "~Zarrar"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "~Más"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "~Inorar"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "~Encaboxar"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "Meno~s"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "~Guardar"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "~Abrir"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr ""
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -818,359 +806,359 @@ msgstr ""
"Arranca el programa d'instalación cola opción reparar."
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "Tocante a %PRODUCTNAME"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "Preferencies..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "Cualesquier triba"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "Estensión ~automática del nome de ficheru"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "Guardar con contr~aseña"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr ""
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "~Editar axustes de peñera"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "~Namái llectura"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "Inxertar como en~llaz"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "Vis~ualizar"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "Re~producir"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "~Versión:"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "Es~tilos:"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
#, fuzzy
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "Estilu del marcu"
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr ""
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "~Seleición"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "Esbillar camín"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "Escueya una carpeta."
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "Yá esiste un ficheru denomáu «$filename$». ¿Quies trocalu?"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr "Yá esiste'l ficheru en «$dirname$». Al trocalu sobrescribiráse'l so conteníu."
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "Tolos formatos"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "Abrir"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "Guardar"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "~Triba de ficheru"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "Nun s'alcontraron fontes nel sistema."
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "Ensin páxines"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "Imprentar nun ficheru..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "Imprentadora predeterminada"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr ""
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Personalizáu"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
#, fuzzy
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "El testu inxeríu perpasa'l llargor máximu d'esti campu de testu. El testu cortóse."
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "Filos CPU: "
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "SO: "
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr "GL"
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr "Skia/Vulkan"
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "predetermináu"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Información"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "Avisu"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "Fallu"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Confirmación"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "desaniciar llinia"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "desaniciar múltiples llinies"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "inxertar múltiples llinies"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "inxertar «$1»"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "desaniciar «$1»"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Filera: %1, columna: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Campu baleru"
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "Día"
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "Selmana"
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Güei"
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Etapes"
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ast/wizards/messages.po b/source/ast/wizards/messages.po
index 5491c500fa6..18839974b3c 100644
--- a/source/ast/wizards/messages.po
+++ b/source/ast/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/ast/>\n"
"Language: ast\n"
@@ -1682,4 +1682,4 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
diff --git a/source/ast/writerperfect/messages.po b/source/ast/writerperfect/messages.po
index 70cd56f608f..d747e3dd60a 100644
--- a/source/ast/writerperfect/messages.po
+++ b/source/ast/writerperfect/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2021-02-15 15:38+0000\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/ast/>\n"
"Language: ast\n"
@@ -13,54 +13,54 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1525785911.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "Importar ficheru"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr ""
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr ""
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr ""
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr ""
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
#, fuzzy
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "Importación ficheros de Lotus"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr ""
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr ""
@@ -128,7 +128,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. MZYvQ
#: writerperfect/uiconfig/ui/exportepub.ui:9
diff --git a/source/ast/xmlsecurity/messages.po b/source/ast/xmlsecurity/messages.po
index 55a17e8fe94..d8570d6fd7d 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: 2021-01-30 15:38+0100\n"
-"PO-Revision-Date: 2021-02-15 15:37+0000\n"
+"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/ast/>\n"
"Language: ast\n"
@@ -290,7 +290,7 @@ msgstr ""
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "_Sí"
#. uTxas
#: xmlsecurity/uiconfig/ui/certdetails.ui:49
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 08e56aa708a..883a711079a 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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+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"
@@ -1899,248 +1899,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr ""
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr ""
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr ""
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr ""
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr ""
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr ""
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr ""
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr ""
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr ""
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr ""
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr ""
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr ""
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr ""
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -2317,14 +2245,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2506,1071 +2435,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3581,22 +3504,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3605,16 +3528,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -13101,10 +13024,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr ""
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -14902,22 +14825,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Seçimlər"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -21163,13 +21110,13 @@ msgid "_Next Tip"
msgstr ""
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21181,79 +21128,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/az/dbaccess/messages.po b/source/az/dbaccess/messages.po
index 6eab5caa5e2..d4de3251102 100644
--- a/source/az/dbaccess/messages.po
+++ b/source/az/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2018-10-01 21:46+0000\n"
"Last-Translator: Emin Mastizada <emin@mastizada.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3287,13 +3287,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr ""
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr ""
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/az/framework/messages.po b/source/az/framework/messages.po
index 7243b119dbf..1835620bbbe 100644
--- a/source/az/framework/messages.po
+++ b/source/az/framework/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2017-12-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -216,6 +216,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr "Mətn dili. Simvol və ya paraqraf dilini təyin etmək üçün sağ klikləyin"
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr ""
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
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 b0486fc21e0..aa9c7abb2b2 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -1307,14 +1307,24 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr ""
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
+msgid "Select Visible Rows Only"
+msgstr ""
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
msgstr ""
#. LEvrC
@@ -3193,14 +3203,14 @@ msgctxt ""
msgid "Format ~Page..."
msgstr ""
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
+msgid "~Page Style..."
msgstr ""
#. C83UC
@@ -9496,6 +9506,26 @@ msgctxt ""
msgid "Layout"
msgstr ""
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -20732,34 +20762,24 @@ msgctxt ""
msgid "Background Color"
msgstr ""
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -23494,14 +23514,14 @@ msgctxt ""
msgid "~Export As"
msgstr ""
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
+msgid "Export as PDF"
msgstr ""
#. YsFV2
@@ -23524,14 +23544,14 @@ msgctxt ""
msgid "Export as PDF"
msgstr ""
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
+msgid "Export Directly as PDF"
msgstr ""
#. 8eSWp
@@ -25618,14 +25638,14 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
+msgid "Development Tools"
msgstr ""
#. jLF5j
@@ -26215,14 +26235,14 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr ""
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
+msgid "Word ~Joiner"
msgstr ""
#. UvwGS
@@ -33526,6 +33546,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr ""
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33756,6 +33786,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr ""
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -34036,16 +34076,6 @@ msgctxt ""
msgid "Fields"
msgstr ""
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr ""
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34498,14 +34528,24 @@ msgctxt ""
msgid "Selection Mode"
msgstr ""
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
msgstr ""
#. oCEjg
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index 870830def60..5a160e98867 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -20685,10 +20685,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr ""
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -24730,231 +24730,231 @@ msgid "No solution was found."
msgstr ""
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index 56598351c9c..b088fc06c30 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -895,161 +895,167 @@ msgid ""
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr ""
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr ""
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr ""
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
#, fuzzy
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "Düzəlt"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr ""
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr ""
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr ""
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Obyektlər"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr ""
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr ""
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr ""
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr ""
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr ""
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr ""
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr ""
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr ""
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr ""
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
#, fuzzy
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "Oynat"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
#, fuzzy
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "Dayan"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr ""
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1057,129 +1063,129 @@ msgid ""
msgstr ""
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr ""
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr ""
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr ""
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr ""
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr ""
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr ""
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr ""
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr ""
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr ""
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr ""
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr ""
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr ""
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr ""
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr ""
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr ""
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr ""
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
#, fuzzy
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "Sәnәd"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr ""
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr ""
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr ""
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1188,258 +1194,258 @@ msgstr[1] ""
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr ""
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr ""
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr ""
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "sol"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "sağ"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr ""
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr ""
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr ""
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr ""
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr ""
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr ""
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr ""
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr ""
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
#, fuzzy
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "Hamısı"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr ""
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr ""
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr ""
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr ""
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr ""
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr ""
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr ""
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr ""
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr ""
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr ""
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr ""
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "Dәyişәn"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr ""
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr ""
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr ""
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
#, fuzzy
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "Fayl adı:"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr ""
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr ""
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "Uzantısız fayl adı"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr ""
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr ""
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr ""
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr ""
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr ""
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr ""
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr ""
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr ""
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1447,159 +1453,159 @@ msgid ""
msgstr ""
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr ""
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr ""
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr ""
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr ""
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
#, fuzzy
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "notalar"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr ""
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr ""
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "Müəllif"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr ""
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr ""
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr ""
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr ""
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr ""
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr ""
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr ""
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr ""
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
#, fuzzy
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Şəkillər"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr ""
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr ""
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr ""
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr ""
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr ""
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr ""
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr ""
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr ""
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1607,831 +1613,831 @@ msgid ""
msgstr ""
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr ""
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr ""
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr ""
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr ""
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr ""
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr ""
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr ""
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr ""
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr ""
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr ""
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr ""
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr ""
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr ""
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr ""
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr ""
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr ""
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr ""
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr ""
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr ""
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr ""
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr ""
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr ""
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr ""
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr ""
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr ""
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr ""
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr ""
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr ""
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "Səhifələr"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
#, fuzzy
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "Cihaz əlçatan deyil."
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr ""
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr ""
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr ""
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr ""
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr ""
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr ""
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr ""
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "Şərhlər"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr ""
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr ""
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr ""
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "Şəkil Daxil et"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "Səs və ya Video əlavə et"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr ""
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr ""
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr ""
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr ""
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr ""
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr ""
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr ""
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr ""
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr ""
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr ""
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr ""
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "Sәhifә"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr ""
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr ""
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr ""
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr ""
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr ""
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr ""
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr ""
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr ""
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr ""
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr ""
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr ""
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr ""
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr ""
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr ""
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr ""
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr ""
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr ""
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr ""
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr ""
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr ""
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr ""
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr ""
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr ""
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr ""
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr ""
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr ""
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Varsayılan"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Başlıq"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr ""
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr ""
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr ""
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr ""
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr ""
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr ""
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr ""
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr ""
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr ""
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr ""
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr ""
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr ""
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr ""
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr ""
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr ""
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr ""
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr ""
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr ""
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr ""
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr ""
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr ""
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr ""
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr ""
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr ""
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr ""
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr ""
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr ""
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr ""
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr ""
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr ""
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Başlıq"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr ""
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr ""
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr ""
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr ""
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
#, fuzzy
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "notalar"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr ""
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr ""
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr ""
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr ""
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr ""
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr ""
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr ""
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
@@ -2439,629 +2445,629 @@ msgstr ""
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr ""
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr ""
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr ""
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr ""
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr ""
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr ""
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr ""
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr ""
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr ""
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr ""
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr ""
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr ""
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Başlıq"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr ""
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr ""
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Sәhifә"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "notalar"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr ""
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr ""
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr ""
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr ""
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr ""
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr ""
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "nota"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr ""
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr ""
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr ""
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr ""
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr ""
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr ""
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr ""
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr ""
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr ""
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr ""
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr ""
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr ""
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr ""
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Ölçü:"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr ""
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr ""
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr ""
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr ""
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr ""
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr ""
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr ""
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr ""
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr ""
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr ""
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr ""
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr ""
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr ""
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr ""
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr ""
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr ""
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr ""
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr ""
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr ""
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr ""
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
#, fuzzy
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Cədvəllər"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr ""
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Sәnәd"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr ""
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr ""
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr ""
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr ""
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr ""
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr ""
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr ""
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr ""
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr ""
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr ""
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr ""
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr ""
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr ""
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr ""
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr ""
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr ""
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr ""
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -9562,139 +9568,139 @@ msgid "Sound:"
msgstr "Sәslәr"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr ""
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr ""
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr ""
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr ""
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr ""
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr ""
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr ""
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr ""
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr ""
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr ""
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr ""
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
+msgid "After:"
msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr ""
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr ""
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr ""
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr ""
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr ""
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Oynat"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr ""
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr ""
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 6938da26098..8ff0d61112a 100644
--- a/source/az/sfx2/messages.po
+++ b/source/az/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -835,12 +835,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr ""
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-#, fuzzy
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "Şəkillər"
+msgstr ""
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1591,11 +1590,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1616,16 +1615,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1646,10 +1645,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1664,10 +1663,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1712,10 +1711,10 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
+msgid "Sunset"
msgstr ""
#. 73Y2e
@@ -2218,6 +2217,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr ""
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr ""
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr ""
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr ""
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr ""
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr ""
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr ""
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr ""
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr ""
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr ""
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr ""
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr ""
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr ""
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr ""
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2567,9 +2866,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2632,91 +2931,157 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr ""
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr ""
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr ""
+
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr ""
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
msgctxt "documentfontspage|embedFonts"
@@ -3878,9 +4243,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr ""
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/az/starmath/messages.po b/source/az/starmath/messages.po
index cd8f5cd6b47..1806c56cd57 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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -492,2232 +492,2232 @@ msgstr ""
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr ""
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr ""
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr ""
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr ""
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr ""
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr ""
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr ""
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr ""
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr ""
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr ""
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr ""
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr ""
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr ""
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr ""
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr ""
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr ""
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr ""
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr ""
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr ""
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr ""
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr ""
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr ""
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr ""
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr ""
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr ""
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr ""
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr ""
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr ""
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr ""
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr ""
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr ""
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr ""
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr ""
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr ""
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr ""
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr ""
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr ""
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr ""
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr ""
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr ""
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr ""
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr ""
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
#, fuzzy
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "birləşmə"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
#, fuzzy
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "kəsişmə"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr ""
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
#, fuzzy
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "alt dəst"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr ""
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
#, fuzzy
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "super dəst"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr ""
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
#, fuzzy
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "alt dəst deyil"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr ""
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
#, fuzzy
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "super dəst deyil"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr ""
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr ""
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr ""
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr ""
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr ""
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr ""
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr ""
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr ""
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr ""
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr ""
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr ""
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr ""
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr ""
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr ""
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr ""
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr ""
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr ""
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr ""
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr ""
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr ""
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr ""
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr ""
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr ""
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr ""
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr ""
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr ""
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr ""
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr ""
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr ""
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
#, fuzzy
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "məhsul"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr ""
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr ""
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr ""
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
#, fuzzy
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "məhsul"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr ""
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr ""
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr ""
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
#, fuzzy
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Xəttlər"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr ""
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr ""
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr ""
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr ""
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr ""
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
#, fuzzy
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "hamı üçün"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
#, fuzzy
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "inteqral"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr ""
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr ""
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr ""
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr ""
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr ""
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr ""
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr ""
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr ""
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr ""
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr ""
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr ""
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr ""
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr ""
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr ""
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr ""
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr ""
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr ""
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr ""
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr ""
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr ""
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr ""
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr ""
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr ""
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr ""
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr ""
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr ""
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr ""
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr ""
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr ""
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr ""
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr ""
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr ""
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr ""
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr ""
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr ""
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr ""
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr ""
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr ""
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr ""
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr ""
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr ""
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr ""
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr ""
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr ""
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr ""
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr ""
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr ""
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr ""
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr ""
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr ""
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr ""
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr ""
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr ""
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr ""
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr ""
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr ""
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr ""
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr ""
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr ""
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr ""
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr ""
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr ""
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr ""
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr ""
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr ""
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr ""
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr ""
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr ""
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr ""
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr ""
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr ""
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr ""
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr ""
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr ""
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
#, fuzzy
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "boş dəst"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr ""
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr ""
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
#, fuzzy
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "sonsuzluq"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
#, fuzzy
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "hissəli"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr ""
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr ""
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr ""
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr ""
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr ""
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr ""
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr ""
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr ""
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr ""
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr ""
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
#, fuzzy
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "bölür"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr ""
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr ""
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr ""
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr ""
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr ""
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr ""
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr ""
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr ""
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr ""
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr ""
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr ""
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr ""
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr ""
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr ""
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr ""
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr ""
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr ""
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr ""
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr ""
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr ""
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr ""
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr ""
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr ""
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr ""
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr ""
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr ""
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr ""
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr ""
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr ""
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr ""
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr ""
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr ""
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr ""
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr ""
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr ""
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr ""
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr ""
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr ""
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr ""
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr ""
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
#, fuzzy
msgctxt "STR_TEAL"
msgid "teal"
msgstr "çay"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Gizlət"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr ""
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "sol"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "sağ"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
#, fuzzy
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Şərhlər"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr ""
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
#, fuzzy
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
#, fuzzy
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "XƏTA: "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
#, fuzzy
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Şərhlər"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Başlıq"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
#, fuzzy
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ölçü:"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index 7f698f4df01..fb4e1d3b7c9 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -822,4596 +822,4602 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr ""
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr ""
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr ""
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr ""
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr ""
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr ""
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr ""
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr ""
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr ""
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr ""
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr ""
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr ""
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr ""
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr ""
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr ""
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr ""
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr ""
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr ""
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr ""
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr ""
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr ""
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr ""
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr ""
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr ""
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr ""
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr ""
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr ""
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr ""
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr ""
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr ""
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr ""
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr ""
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr ""
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr ""
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr ""
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr ""
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr ""
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr ""
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr ""
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr ""
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr ""
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr ""
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr ""
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr ""
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr ""
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr ""
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr ""
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr ""
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr ""
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr ""
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr ""
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr ""
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr ""
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr ""
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr ""
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr ""
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr ""
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr ""
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr ""
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr ""
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr ""
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr ""
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr ""
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr ""
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr ""
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr ""
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr ""
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr ""
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr ""
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr ""
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr ""
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr ""
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr ""
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr ""
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr ""
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr ""
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr ""
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr ""
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr ""
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr ""
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr ""
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr ""
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
#, fuzzy
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Şəkil Daxil et"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr ""
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr ""
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr ""
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr ""
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr ""
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr ""
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr ""
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr ""
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr ""
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr ""
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr ""
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr ""
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr ""
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "bəli"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "Yox"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr ""
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr ""
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr ""
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr ""
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr ""
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr ""
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr ""
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Qapalı"
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr ""
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr ""
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr ""
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr ""
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr ""
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr ""
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr ""
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr ""
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
#, fuzzy
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "sol"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr ""
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
#, fuzzy
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "sağ"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr ""
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr ""
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr ""
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr ""
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr ""
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr ""
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr ""
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "sol"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "üst"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "sağ"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "alt"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr ""
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr ""
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr ""
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr ""
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr ""
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr ""
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr ""
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr ""
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr ""
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr ""
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr ""
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr ""
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr ""
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr ""
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr ""
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr ""
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr ""
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr ""
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr ""
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr ""
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr ""
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr ""
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr ""
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr ""
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr ""
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr ""
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr ""
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr ""
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr ""
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr ""
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr ""
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr ""
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr ""
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr ""
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr ""
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr ""
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr ""
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr ""
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr ""
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr ""
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr ""
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr ""
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr ""
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr ""
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr ""
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr ""
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr ""
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr ""
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr ""
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr ""
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr ""
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr ""
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr ""
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr ""
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr ""
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr ""
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr ""
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr ""
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr ""
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr ""
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr ""
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr ""
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr ""
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr ""
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr ""
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr ""
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr ""
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr ""
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr ""
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr ""
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr ""
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr ""
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr ""
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr ""
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr ""
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr ""
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr ""
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr ""
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr ""
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr ""
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr ""
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr ""
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr ""
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr ""
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr ""
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr ""
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr ""
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr ""
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr ""
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr ""
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr ""
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr ""
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr ""
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr ""
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr ""
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr ""
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr ""
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr ""
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr ""
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr ""
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr ""
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr ""
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr ""
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr ""
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr ""
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr ""
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr ""
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr ""
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr ""
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr ""
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr ""
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr ""
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr ""
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr ""
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr ""
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr ""
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr ""
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr ""
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr ""
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr ""
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr ""
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr ""
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr ""
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr ""
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr ""
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr ""
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr ""
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr ""
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr ""
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr ""
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr ""
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr ""
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr ""
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr ""
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr ""
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr ""
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr ""
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr ""
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr ""
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr ""
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr ""
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr ""
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr ""
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr ""
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr ""
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr ""
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr ""
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr ""
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr ""
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr ""
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr ""
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr ""
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr ""
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr ""
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr ""
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr ""
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr ""
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr ""
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr ""
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr ""
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr ""
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr ""
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr ""
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr ""
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr ""
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr ""
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr ""
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr ""
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr ""
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr ""
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr ""
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr ""
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr ""
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr ""
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr ""
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr ""
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr ""
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr ""
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr ""
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr ""
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr ""
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr ""
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr ""
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr ""
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr ""
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr ""
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr ""
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr ""
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
#, fuzzy
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Simvollar"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr ""
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr ""
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr ""
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr ""
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr ""
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr ""
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr ""
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr ""
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr ""
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr ""
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr ""
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr ""
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr ""
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr ""
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr ""
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr ""
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr ""
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr ""
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr ""
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr ""
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr ""
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Qamma"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr ""
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
#, fuzzy
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Daxil et"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr ""
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr ""
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr ""
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr ""
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr ""
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr ""
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr ""
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr ""
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr ""
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr ""
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr ""
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr ""
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr ""
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr ""
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr ""
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr ""
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
#, fuzzy
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Cədvəllər"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Cədvəllər"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr ""
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr ""
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr ""
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr ""
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr ""
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr ""
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr ""
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr ""
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr ""
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr ""
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr ""
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
#, fuzzy
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "dördbucaq"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr ""
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr ""
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr ""
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr ""
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr ""
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Varsayılan"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr ""
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr ""
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr ""
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr ""
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr ""
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr ""
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr ""
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr ""
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr ""
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr ""
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr ""
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr ""
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr ""
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr ""
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr ""
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr ""
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr ""
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr ""
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr ""
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr ""
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr ""
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr ""
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr ""
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr ""
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr ""
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr ""
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr ""
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr ""
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr ""
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr ""
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr ""
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr ""
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr ""
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr ""
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr ""
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr ""
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr ""
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr ""
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr ""
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr ""
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr ""
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr ""
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr ""
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr ""
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr ""
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr ""
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr ""
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr ""
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr ""
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr ""
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr ""
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr ""
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr ""
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr ""
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr ""
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr ""
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr ""
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr ""
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr ""
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr ""
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr ""
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr ""
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr ""
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr ""
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr ""
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr ""
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr ""
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr ""
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr ""
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr ""
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr ""
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr ""
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr ""
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr ""
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr ""
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr ""
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr ""
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr ""
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr ""
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr ""
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr ""
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr ""
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr ""
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr ""
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr ""
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr ""
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr ""
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr ""
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr ""
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr ""
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr ""
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr ""
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr ""
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr ""
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr ""
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr ""
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr ""
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr ""
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr ""
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr ""
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr ""
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr ""
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr ""
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr ""
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr ""
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr ""
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr ""
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr ""
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr ""
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr ""
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr ""
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr ""
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr ""
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr ""
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr ""
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr ""
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr ""
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
#, fuzzy
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "sağ"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr ""
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr ""
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr ""
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr ""
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr ""
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr ""
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
#, fuzzy
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Yadda saxla"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr ""
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr ""
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr ""
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr ""
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr ""
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr ""
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr ""
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr ""
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr ""
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr ""
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr ""
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
#, fuzzy
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
@@ -5419,1158 +5425,1158 @@ msgstr "dördbucaq"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr ""
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr ""
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr ""
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr ""
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr ""
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr ""
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr ""
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr ""
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr ""
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr ""
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr ""
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr ""
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr ""
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr ""
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr ""
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr ""
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr ""
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr ""
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr ""
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr ""
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr ""
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr ""
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr ""
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr ""
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr ""
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr ""
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr ""
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr ""
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr ""
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr ""
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr ""
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr ""
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr ""
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr ""
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr ""
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "ofis"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr ""
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr ""
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr ""
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Şəkillər"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr ""
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr ""
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "kəsişmə"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr ""
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr ""
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr ""
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Kompüterlәr"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Diaqramlar"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr ""
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr ""
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr ""
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr ""
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Sәslәr"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Simvollar"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr ""
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr ""
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr ""
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "klaviatura"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr ""
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr ""
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr ""
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr ""
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr ""
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr ""
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Kompüterlәr"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr ""
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Mәktәb vә Universitet"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr ""
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr ""
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr ""
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr ""
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
#, fuzzy
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "Hamısı"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr ""
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr ""
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr ""
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr ""
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr ""
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr ""
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr ""
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr ""
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr ""
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr ""
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr ""
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr ""
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr ""
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr ""
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr ""
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr ""
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr ""
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr ""
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr ""
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr ""
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr ""
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr ""
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Varsayılan"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr ""
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr ""
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr ""
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Səhifələr"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr ""
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr ""
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr ""
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr ""
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr ""
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
#, fuzzy
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Uzantı"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr ""
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr ""
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr ""
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr ""
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr ""
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr ""
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr ""
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr ""
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr ""
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr ""
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr ""
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr ""
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr ""
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr ""
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr ""
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr ""
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr ""
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr ""
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr ""
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr ""
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr ""
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr ""
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr ""
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "və"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr ""
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr ""
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr ""
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr ""
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
#, fuzzy
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "müəllif hüququ"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr ""
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr ""
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr ""
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr ""
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr ""
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr ""
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr ""
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr ""
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr ""
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr ""
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr ""
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr ""
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Formlar"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr ""
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Xassələr: "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr ""
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr ""
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
#, fuzzy
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Formlar"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
#, fuzzy
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Formlar"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr ""
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr ""
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Qeyd et"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr ""
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr ""
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
#, fuzzy
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Verilənlər bazasından məlumat oxumaqda xəta"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr ""
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr ""
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr ""
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6578,332 +6584,338 @@ msgid ""
msgstr ""
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr ""
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Süt"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr ""
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr ""
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Sil #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr ""
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr ""
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr ""
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr ""
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
msgstr ""
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr ""
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr ""
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
msgstr ""
-#. ZGDAr
+#. WiNUf
#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
msgstr ""
-#. DEn9D
+#. a7gAj
#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
msgstr ""
-#. WiNUf
+#. EaBTj
#: include/svx/strings.hrc:1196
-msgctxt "RID_STR_PROPTITLE_LISTBOX"
-msgid "List Box"
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
msgstr ""
-#. xwuJF
+#. DWfsm
#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
msgstr ""
-#. 5474w
+#. TYjnr
#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
msgstr ""
-#. qT2Ed
+#. B6MEP
#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
msgstr ""
-#. 6Qvho
+#. DEn9D
#: include/svx/strings.hrc:1200
-#, fuzzy
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "Süzgəc Seçimi"
-
-#. a7gAj
-#: include/svx/strings.hrc:1201
-msgctxt "RID_STR_PROPTITLE_DATEFIELD"
-msgid "Date Field"
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
msgstr ""
-#. EaBTj
+#. V4iMu
#: include/svx/strings.hrc:1202
-msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
-msgid "Time Field"
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
msgstr ""
-#. DWfsm
+#. TreFC
#: include/svx/strings.hrc:1203
-msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
-msgid "Numeric Field"
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
msgstr ""
-#. TYjnr
+#. NFysA
#: include/svx/strings.hrc:1204
-msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
-msgid "Currency Field"
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
msgstr ""
-#. B6MEP
+#. E5mMK
#: include/svx/strings.hrc:1205
-msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
-msgid "Pattern Field"
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
msgstr ""
-#. uEYBR
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+#, fuzzy
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Süzgəc Seçimi"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr ""
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr ""
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr ""
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr ""
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Çoxlu seçim"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr ""
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr ""
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr ""
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr ""
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr ""
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr ""
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr ""
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr ""
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr ""
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr ""
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr ""
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr ""
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr ""
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr ""
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr ""
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr ""
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr ""
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr ""
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr ""
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr ""
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr ""
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr ""
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr ""
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr ""
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6911,7 +6923,7 @@ msgid ""
msgstr ""
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6919,7 +6931,7 @@ msgid ""
msgstr ""
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6927,13 +6939,13 @@ msgid ""
msgstr ""
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr ""
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6942,7 +6954,7 @@ msgid ""
msgstr ""
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6951,1009 +6963,1009 @@ msgid ""
msgstr ""
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr ""
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr ""
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr ""
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr ""
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr ""
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr ""
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr ""
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr ""
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
#, fuzzy
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Sәnәd"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr ""
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr ""
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr ""
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr ""
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
#, fuzzy
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Əvəzlə"
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr ""
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr ""
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr ""
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr ""
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr ""
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr ""
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr ""
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr ""
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr ""
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr ""
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr ""
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr ""
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr ""
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr ""
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr ""
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr ""
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
#, fuzzy
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "sol"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
#, fuzzy
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "sağ"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr ""
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr ""
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr ""
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr ""
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr ""
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr ""
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr ""
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr ""
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr ""
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr ""
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr ""
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr ""
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "50%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr ""
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr ""
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr ""
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr ""
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr ""
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr ""
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Axtarılan açar söz tapılmadı"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr ""
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr ""
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr ""
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr ""
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr ""
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr ""
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr ""
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr ""
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr ""
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr ""
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr ""
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr ""
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr ""
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr ""
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr ""
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr ""
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr ""
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr ""
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr ""
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr ""
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr ""
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr ""
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
#, fuzzy
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Fayl oxuna bilmir"
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr ""
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr ""
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr ""
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr ""
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr ""
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr ""
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Naməlum"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr ""
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr ""
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr ""
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr ""
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr ""
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Qamma"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr ""
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr ""
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr ""
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr ""
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr ""
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr ""
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr ""
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr ""
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr ""
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr ""
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr ""
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr ""
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr ""
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr ""
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr ""
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr ""
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr ""
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr ""
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr ""
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
#, fuzzy
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "sol"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
#, fuzzy
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "sağ"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Hamısı"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr ""
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
#, fuzzy
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Müəllif:"
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr ""
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr ""
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr ""
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr ""
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7961,1926 +7973,2029 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr ""
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr ""
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr ""
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr ""
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA Uzantıları"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr ""
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr ""
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr ""
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr ""
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr ""
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr ""
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr ""
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr ""
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr ""
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr ""
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr ""
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr ""
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr ""
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr ""
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr ""
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr ""
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr ""
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr ""
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr ""
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr ""
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr ""
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr ""
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr ""
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr ""
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr ""
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr ""
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr ""
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr ""
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr ""
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr ""
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr ""
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr ""
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr ""
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr ""
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr ""
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr ""
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr ""
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr ""
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr ""
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr ""
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr ""
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr ""
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr ""
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr ""
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr ""
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr ""
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr ""
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr ""
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr ""
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr ""
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr ""
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr ""
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr ""
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr ""
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr ""
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr ""
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr ""
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr ""
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr ""
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr ""
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr ""
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr ""
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr ""
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr ""
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr ""
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr ""
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr ""
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr ""
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr ""
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr ""
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr ""
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr ""
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr ""
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr ""
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr ""
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Fonetik Uzantılar"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr ""
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr ""
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr ""
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr ""
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr ""
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr ""
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr ""
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr ""
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr ""
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr ""
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr ""
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr ""
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr ""
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr ""
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr ""
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr ""
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr ""
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr ""
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr ""
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr ""
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr ""
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr ""
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr ""
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr ""
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr ""
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr ""
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr ""
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr ""
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr ""
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr ""
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr ""
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr ""
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr ""
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr ""
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr ""
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Fonetik Uzantılar Tamamlaması"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr ""
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr ""
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr ""
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr ""
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr ""
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr ""
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr ""
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr ""
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr ""
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr ""
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr ""
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr ""
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr ""
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr ""
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr ""
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr ""
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr ""
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr ""
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr ""
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr ""
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr ""
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr ""
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr ""
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr ""
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr ""
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr ""
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr ""
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr ""
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10731,7 +10846,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10739,11 +10854,29 @@ msgstr ""
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr ""
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr ""
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr ""
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr ""
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr ""
@@ -13642,178 +13775,46 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr ""
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr ""
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr ""
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr ""
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr ""
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr ""
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr ""
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr ""
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr ""
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr ""
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr ""
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr ""
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr ""
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr ""
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr ""
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr ""
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr ""
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr ""
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr ""
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr ""
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr ""
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr ""
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr ""
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr ""
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr ""
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr ""
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr ""
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
#, fuzzy
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "Daha çox..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
#, fuzzy
msgctxt "colsmenu|all"
msgid "_All"
msgstr "Hamısı"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
msgctxt "colsmenu|column"
msgid "Column..."
msgstr ""
@@ -13968,127 +13969,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr ""
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr ""
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr ""
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr ""
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr ""
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr ""
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr ""
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr ""
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr ""
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr ""
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-#, fuzzy
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "Süzgəc Seçimi"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr ""
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr ""
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr ""
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr ""
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr ""
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr ""
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr ""
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr ""
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr ""
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr ""
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index e34e4474e88..914a2b793bb 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: 2021-02-22 17:18+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+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"
@@ -1564,10 +1564,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2279,1510 +2279,1565 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr ""
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr ""
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr ""
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr ""
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr ""
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr ""
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr ""
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr ""
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr ""
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr ""
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr ""
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr ""
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr ""
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr ""
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr ""
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr ""
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr ""
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr ""
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr ""
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr ""
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr ""
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr ""
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "Dәyişәn"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr ""
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr ""
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr ""
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr ""
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr ""
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr ""
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr ""
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr ""
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr ""
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr ""
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr ""
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr ""
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr ""
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr ""
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr ""
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr ""
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr ""
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr ""
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr ""
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr ""
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr ""
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr ""
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr ""
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr ""
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr ""
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr ""
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr ""
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr ""
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr ""
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr ""
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr ""
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr ""
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr ""
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr ""
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr ""
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr ""
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr ""
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr ""
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr ""
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr ""
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr ""
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr ""
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr ""
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr ""
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr ""
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr ""
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr ""
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr ""
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr ""
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr ""
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr ""
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr ""
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr ""
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr ""
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr ""
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr ""
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr ""
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr ""
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr ""
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr ""
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr ""
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr ""
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr ""
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr ""
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr ""
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr ""
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr ""
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr ""
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr ""
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr ""
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr ""
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr ""
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr ""
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr ""
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr ""
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr ""
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr ""
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr ""
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr ""
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr ""
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr ""
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr ""
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr ""
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr ""
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
#, fuzzy
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "Cədvəllər"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr ""
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr ""
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr ""
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr ""
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr ""
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr ""
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr ""
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr ""
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr ""
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr ""
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr ""
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr ""
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr ""
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr ""
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr ""
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr ""
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr ""
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr ""
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr ""
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr ""
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr ""
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr ""
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr ""
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr ""
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr ""
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr ""
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr ""
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr ""
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr ""
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr ""
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr ""
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr ""
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr ""
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr ""
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr ""
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr ""
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr ""
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr ""
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr ""
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Başlıq"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr ""
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr ""
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr ""
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr ""
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr ""
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr ""
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr ""
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr ""
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr ""
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr ""
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr ""
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr ""
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr ""
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr ""
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr ""
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr ""
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr ""
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr ""
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr ""
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr ""
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr ""
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr ""
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr ""
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr ""
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr ""
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr ""
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr ""
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr ""
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr ""
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr ""
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr ""
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr ""
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr ""
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr ""
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr ""
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr ""
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr ""
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr ""
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr ""
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr ""
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr ""
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
#, fuzzy
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Fayl tapılmadı."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr ""
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr ""
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr ""
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr ""
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr ""
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr ""
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr ""
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr ""
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr ""
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr ""
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr ""
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr ""
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr ""
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr ""
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr ""
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr ""
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr ""
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr ""
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr ""
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr ""
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr ""
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr ""
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr ""
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr ""
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr ""
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr ""
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr ""
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr ""
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
#, fuzzy
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Cədvəllər"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
#, fuzzy
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Şəkillər"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
#, fuzzy
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Obyektlər"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr ""
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr ""
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
#, fuzzy
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "bölmə"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr ""
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr ""
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr ""
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr ""
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr ""
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr ""
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr ""
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr ""
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr ""
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr ""
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr ""
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr ""
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr ""
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr ""
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr ""
@@ -3790,14 +3845,14 @@ msgstr ""
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr ""
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3806,7 +3861,7 @@ msgstr[1] ""
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3816,7 +3871,7 @@ msgstr[1] ""
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr ""
@@ -3824,7 +3879,7 @@ msgstr ""
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3834,7 +3889,7 @@ msgstr[1] ""
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3842,92 +3897,92 @@ msgstr[0] ""
msgstr[1] ""
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr ""
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr ""
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr ""
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr ""
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr ""
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr ""
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
#, fuzzy
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Qapat"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr ""
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr ""
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr ""
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3936,423 +3991,423 @@ msgid ""
msgstr ""
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr ""
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr ""
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr ""
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr ""
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr ""
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr ""
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr ""
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr ""
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr ""
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr ""
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr ""
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr ""
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr ""
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr ""
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr ""
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr ""
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr ""
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr ""
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr ""
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr ""
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr ""
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr ""
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr ""
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr ""
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr ""
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr ""
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr ""
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Cədvəllər"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Şəkillər"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
#, fuzzy
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE Obyektləri"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr ""
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
#, fuzzy
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "bölmə"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr ""
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr ""
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr ""
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr ""
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Şərhlər"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr ""
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr ""
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr ""
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr ""
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr ""
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr ""
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr ""
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr ""
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr ""
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr ""
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Cədvəllər"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Şəkillər"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLE Obyektləri"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr ""
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "bölmə"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr ""
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr ""
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr ""
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Şərhlər"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr ""
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr ""
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr ""
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4360,627 +4415,627 @@ msgid ""
msgstr ""
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr ""
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr ""
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr ""
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr ""
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr ""
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr ""
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr ""
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr ""
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr ""
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr ""
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr ""
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr ""
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr ""
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr ""
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr ""
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr ""
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr ""
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr ""
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr ""
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr ""
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr ""
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr ""
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr ""
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr ""
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr ""
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr ""
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr ""
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr ""
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
#, fuzzy
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Şəkil Daxil et"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr ""
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr ""
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr ""
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr ""
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr ""
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr ""
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr ""
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr ""
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr ""
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr ""
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr ""
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr ""
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr ""
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr ""
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr ""
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr ""
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr ""
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr ""
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr ""
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr ""
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr ""
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr ""
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr ""
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr ""
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr ""
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr ""
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr ""
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr ""
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr ""
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr ""
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr ""
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr ""
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr ""
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr ""
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr ""
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr ""
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr ""
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr ""
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr ""
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr ""
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr ""
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr ""
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr ""
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr ""
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr ""
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr ""
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr ""
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr ""
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr ""
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr ""
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr ""
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr ""
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr ""
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr ""
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr ""
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr ""
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr ""
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr ""
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr ""
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr ""
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr ""
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr ""
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr ""
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr ""
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr ""
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr ""
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr ""
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr ""
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr ""
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr ""
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -4988,7 +5043,7 @@ msgstr[0] ""
msgstr[1] ""
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -4996,309 +5051,309 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr ""
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr ""
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr ""
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr ""
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr ""
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr ""
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr ""
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr ""
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr ""
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr ""
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr ""
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr ""
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr ""
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr ""
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr ""
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr ""
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr ""
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr ""
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr ""
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr ""
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr ""
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr ""
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr ""
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr ""
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr ""
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr ""
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr ""
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr ""
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr ""
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr ""
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr ""
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr ""
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr ""
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Paraqraflar"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr ""
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr ""
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr ""
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr ""
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
#, fuzzy
msgctxt "STR_NOTE"
msgid "comment"
msgstr "Şərhlər"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr ""
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr ""
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr ""
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr ""
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr ""
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr ""
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr ""
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr ""
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5306,1682 +5361,1682 @@ msgstr[0] ""
msgstr[1] ""
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
#, fuzzy
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "Paraqraflar"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr ""
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr ""
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr ""
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr ""
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr ""
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr ""
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr ""
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr ""
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr ""
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr ""
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr ""
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr ""
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr ""
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr ""
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr ""
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr ""
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr ""
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr ""
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr ""
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Müəllif"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr ""
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr ""
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr ""
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr ""
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr ""
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr ""
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr ""
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr ""
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr ""
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr ""
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr ""
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
#, fuzzy
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Simvollar"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Paraqraflar"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr ""
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Səhifələr"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
+msgid "List"
msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
#, fuzzy
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Cədvəllər"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
#, fuzzy
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Hücrələr"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr ""
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr ""
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr ""
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
#, fuzzy
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Şərhlər"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr ""
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr ""
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr ""
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr ""
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr ""
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr ""
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr ""
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr ""
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr ""
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr ""
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr ""
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr ""
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
#, fuzzy
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "Şərhlər"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr ""
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr ""
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr ""
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr ""
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr ""
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
#, fuzzy
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Xərçəng"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Tətbiq et"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr ""
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr ""
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr ""
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr ""
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr ""
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr ""
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr ""
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr ""
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr ""
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr ""
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr ""
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr ""
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "Fəal"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr ""
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "~Yenilə"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Düzəlt"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr ""
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
#, fuzzy
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Daxil et"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
msgctxt "STR_INDEX"
msgid "~Index"
msgstr ""
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr ""
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
#, fuzzy
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Sənəd Yoxdur"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr ""
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
#, fuzzy
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Sil"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~Sil"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
#, fuzzy
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Xəttlər"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Hamısı"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr ""
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
#, fuzzy
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Fayl tapılmadı."
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr ""
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ""
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr ""
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ""
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ""
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ""
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Sәhifә"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
#, fuzzy
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Xəttlər"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Müəllif"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr ""
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr ""
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr ""
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr ""
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr ""
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr ""
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr ""
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr ""
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr ""
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr ""
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr ""
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr ""
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr ""
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr ""
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr ""
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr ""
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr ""
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Başlıq"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Mövzu"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Açar sözlər"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Şərhlər"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr ""
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Dəyişdirilib"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr ""
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Gözdən keçirmə nömrəsi"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Ümumi düzəliş vaxtı"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr ""
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr ""
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr ""
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr ""
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr ""
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr ""
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr ""
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr ""
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr ""
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr ""
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr ""
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr ""
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr ""
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr ""
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr ""
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr ""
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr ""
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr ""
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr ""
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr ""
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr ""
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr ""
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr ""
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr ""
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Növ"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr ""
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr ""
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr ""
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr ""
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr ""
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr ""
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr ""
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr ""
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr ""
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr ""
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
#, fuzzy
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "nota"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr ""
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr ""
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr ""
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr ""
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr ""
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr ""
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Başlıq"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr ""
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr ""
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr ""
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr ""
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr ""
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr ""
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr ""
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr ""
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr ""
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr ""
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr ""
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr ""
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Şərhlər"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr ""
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr ""
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr ""
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr ""
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr ""
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr ""
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr ""
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr ""
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr ""
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr ""
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr ""
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr ""
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr ""
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr ""
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr ""
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr ""
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr ""
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr ""
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr ""
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr ""
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr ""
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr ""
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr ""
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr ""
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr ""
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr ""
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr ""
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr ""
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr ""
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr ""
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr ""
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr ""
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr ""
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr ""
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr ""
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
#, fuzzy
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Öncəbaxış"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr ""
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Bütün fayllar"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr ""
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr ""
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr ""
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr ""
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr ""
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr ""
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr ""
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr ""
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr ""
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr ""
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr ""
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -6990,92 +7045,92 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr ""
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr ""
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr ""
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr ""
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
#, fuzzy
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Cədvəllər"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr ""
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr ""
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr ""
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7085,254 +7140,254 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr ""
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr ""
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
#, fuzzy
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Fayl adı:"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr ""
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr ""
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr ""
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Müəllif"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr ""
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr ""
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr ""
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr ""
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr ""
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr ""
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr ""
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr ""
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr ""
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr ""
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr ""
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr ""
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr ""
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr ""
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr ""
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr ""
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr ""
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr ""
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr ""
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr ""
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr ""
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr ""
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr ""
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr ""
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr ""
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr ""
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr ""
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr ""
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
#, fuzzy
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "nota"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr ""
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr ""
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr ""
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr ""
@@ -7341,88 +7396,88 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr ""
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr ""
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr ""
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr ""
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Cədvəllər"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Simvollar"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Sözlər"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Paraqraflar"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
#, fuzzy
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Şəkillər"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Obyektlər"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Səhifələr"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr ""
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr ""
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr ""
@@ -7431,103 +7486,103 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr ""
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr ""
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr ""
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr ""
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr ""
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr ""
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr ""
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr ""
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Başlıq"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr ""
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr ""
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr ""
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr ""
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr ""
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr ""
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr ""
@@ -7537,38 +7592,38 @@ msgstr ""
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
#, fuzzy
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Fayl adı:"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Uzantısız fayl adı"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr ""
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr ""
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr ""
@@ -7577,25 +7632,25 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr ""
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr ""
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr ""
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr ""
@@ -7604,55 +7659,55 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr ""
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr ""
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr ""
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr ""
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr ""
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr ""
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr ""
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr ""
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr ""
@@ -7661,13 +7716,13 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr ""
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr ""
@@ -7676,49 +7731,49 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr ""
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr ""
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr ""
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr ""
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr ""
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr ""
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr ""
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr ""
@@ -7727,19 +7782,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Müəllif"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr ""
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr ""
@@ -7748,79 +7803,79 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr ""
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Sәhifә"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr ""
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr ""
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr ""
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr ""
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr ""
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr ""
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr ""
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr ""
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr ""
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7829,33 +7884,33 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr ""
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
#, fuzzy
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Cədvəllər"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr ""
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
#, fuzzy
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Şəkillər"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
#, fuzzy
msgctxt "FMT_MARK_OLE"
msgid "Object"
@@ -7865,1515 +7920,1515 @@ msgstr "Obyektlər"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr ""
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr ""
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr ""
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr ""
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
#, fuzzy
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Makros adı"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr ""
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
#, fuzzy
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Simvollar"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr ""
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Dәyәr"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr ""
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr ""
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr ""
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr ""
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr ""
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr ""
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr ""
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr ""
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr ""
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr ""
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr ""
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr ""
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr ""
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr ""
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr ""
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr ""
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr ""
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr ""
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr ""
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr ""
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr ""
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr ""
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr ""
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr ""
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr ""
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr ""
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr ""
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr ""
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr ""
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr ""
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr ""
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr ""
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr ""
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr ""
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr ""
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr ""
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr ""
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr ""
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr ""
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr ""
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr ""
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr ""
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr ""
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr ""
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr ""
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr ""
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
+msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
+msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
#, fuzzy
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "və"
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr ""
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr ""
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr ""
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Daxil et"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr ""
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr ""
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr ""
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr ""
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "ST_TBL"
msgid "Table"
msgstr "Cədvəllər"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "Sәhifә"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr ""
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr ""
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "bölmə"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr ""
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr ""
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
#, fuzzy
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE Obyektləri"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr ""
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr ""
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr ""
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
#, fuzzy
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Şərhlər"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr ""
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr ""
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr ""
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr ""
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr ""
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr ""
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr ""
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr ""
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr ""
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr ""
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr ""
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr ""
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr ""
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr ""
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr ""
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Daxil et"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Sil"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr ""
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr ""
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr ""
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr ""
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Şəkil Daxil et"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Şərhlər"
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr ""
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr ""
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr ""
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr ""
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr ""
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
#, fuzzy
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Sәhifә"
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
#, fuzzy
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paraqraflar"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
#, fuzzy
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Şəkillər"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
#, fuzzy
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE Obyektləri"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr ""
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
#, fuzzy
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Cədvəllər"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr ""
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr ""
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Sәhifә"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr ""
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr ""
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr ""
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Başlıq"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr ""
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr ""
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr ""
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr ""
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr ""
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9382,260 +9437,260 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr ""
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr ""
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr ""
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr ""
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr ""
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr ""
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr ""
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr ""
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr ""
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr ""
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Heç biri (İmla qaydalarını yoxlama)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Əsas dilə sıfırla"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Daha çox..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr ""
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr ""
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Açar sözü XX dəfə dəyişdirildi"
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr ""
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr ""
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr ""
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9644,7 +9699,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9653,124 +9708,124 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr ""
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
#, fuzzy
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Daxil et"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
#, fuzzy
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Sil"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr ""
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr ""
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr ""
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Şərhlər"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr ""
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Hə"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Yox"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr ""
@@ -9901,6 +9956,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr ""
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -20369,292 +20430,292 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr ""
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr ""
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr ""
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr ""
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr ""
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr ""
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr ""
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr ""
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr ""
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr ""
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr ""
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr ""
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
#, fuzzy
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Sәnәd"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr ""
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr ""
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Düzəlt"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
#, fuzzy
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "~Yenilə"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
#, fuzzy
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Daxil et"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr ""
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr ""
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr ""
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
@@ -20697,181 +20758,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21921,20 +21982,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr ""
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Shows the current saved format names."
msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr ""
+
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr ""
@@ -21945,212 +22018,224 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr ""
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr ""
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr ""
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr ""
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr ""
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr ""
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr ""
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr ""
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr ""
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr ""
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr ""
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr ""
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr ""
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr ""
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr ""
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr ""
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
+msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr ""
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr ""
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr ""
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr ""
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -28205,10 +28290,10 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr ""
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
+msgid "Specify the character style for the selected part on the Structure line."
msgstr ""
#. 5nWPi
@@ -28465,10 +28550,10 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr ""
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
msgstr ""
#. r33aA
diff --git a/source/az/uui/messages.po b/source/az/uui/messages.po
index 9c7ed186e91..9af923242bd 100644
--- a/source/az/uui/messages.po
+++ b/source/az/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2018-03-28 15:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,32 +17,32 @@ msgstr ""
"X-POOTLE-MTIME: 1522251376.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr ""
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr ""
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr ""
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
#, fuzzy
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Ad artıq mövcuddur"
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -51,7 +51,7 @@ msgid ""
msgstr ""
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -64,289 +64,289 @@ msgid ""
msgstr ""
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr ""
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr ""
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr ""
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr ""
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr ""
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr ""
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr ""
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr ""
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr ""
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr ""
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr ""
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr ""
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr ""
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr ""
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr ""
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr ""
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr ""
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr ""
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr ""
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr ""
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr ""
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr ""
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr ""
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr ""
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr ""
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr ""
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr ""
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr ""
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr ""
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr ""
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr ""
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr ""
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr ""
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr ""
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr ""
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr ""
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr ""
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr ""
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr ""
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr ""
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr ""
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr ""
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr ""
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr ""
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr ""
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr ""
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr ""
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -360,13 +360,13 @@ msgid ""
msgstr ""
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr ""
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -374,7 +374,7 @@ msgid ""
msgstr ""
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -382,13 +382,13 @@ msgid ""
msgstr ""
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr ""
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -396,31 +396,31 @@ msgid ""
msgstr ""
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr ""
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr ""
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr ""
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr ""
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -428,7 +428,7 @@ msgid ""
msgstr ""
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -438,7 +438,7 @@ msgid ""
msgstr ""
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -447,7 +447,7 @@ msgid ""
msgstr ""
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -456,13 +456,13 @@ msgid ""
msgstr ""
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr ""
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -473,13 +473,13 @@ msgid ""
msgstr ""
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr ""
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -488,7 +488,7 @@ msgid ""
msgstr ""
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr ""
@@ -559,55 +559,55 @@ msgid "_Yes"
msgstr ""
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr ""
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr ""
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr ""
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr ""
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr ""
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr ""
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr ""
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr ""
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -616,20 +616,20 @@ msgid ""
msgstr ""
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
#, fuzzy
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Aç"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -638,62 +638,62 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr ""
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~Saxla"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr ""
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
#, fuzzy
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Parolu _yadda saxla"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr ""
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr ""
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -704,7 +704,7 @@ msgid ""
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -712,31 +712,31 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr ""
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr ""
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -745,19 +745,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr ""
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr ""
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -768,7 +768,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -779,19 +779,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr ""
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr ""
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -799,7 +799,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -807,55 +807,55 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr ""
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr ""
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr ""
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr ""
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr ""
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
diff --git a/source/az/vcl/messages.po b/source/az/vcl/messages.po
index 784db1e84dc..6af8b16070e 100644
--- a/source/az/vcl/messages.po
+++ b/source/az/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -666,158 +666,146 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr ""
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr ""
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr ""
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "Yardım"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr ""
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr ""
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
#, fuzzy
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "Gizlət"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr ""
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr ""
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr ""
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr ""
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
#, fuzzy
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "Xərçəng"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
#, fuzzy
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "Hə"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr ""
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
#, fuzzy
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "Təkrarla"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
#, fuzzy
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "Yardım"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
#, fuzzy
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "Qapat"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr ""
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr ""
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
#, fuzzy
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "Dayandır"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr ""
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "~Saxla"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
#, fuzzy
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "Aç"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr ""
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -825,365 +813,365 @@ msgid ""
msgstr ""
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr ""
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr ""
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr ""
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "~Avtomatik fayl adı uzantısı"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr ""
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr ""
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr ""
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr ""
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr ""
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
#, fuzzy
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "Öncəbaxış"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
#, fuzzy
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "Oynat"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
#, fuzzy
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "Versiya"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr ""
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr ""
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr ""
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr ""
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr ""
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr ""
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr ""
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr ""
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr ""
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "Aç"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
#, fuzzy
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "Yadda saxla"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr ""
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr ""
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr ""
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr ""
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr ""
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr ""
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr ""
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr ""
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr ""
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr ""
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr ""
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
#, fuzzy
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "Varsayılan"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
#, fuzzy
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "məlumat"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
#, fuzzy
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "xəbərdarlıq"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr ""
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
#, fuzzy
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "məlumat"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr ""
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr ""
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr ""
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr ""
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr ""
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/az/writerperfect/messages.po b/source/az/writerperfect/messages.po
index 613baebe42c..8373c109a73 100644
--- a/source/az/writerperfect/messages.po
+++ b/source/az/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+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"
@@ -17,49 +17,49 @@ msgstr ""
"X-POOTLE-MTIME: 1525785925.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr ""
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr ""
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr ""
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr ""
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr ""
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr ""
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr ""
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr ""
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index 40021a4596d..3b581be1f98 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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+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"
@@ -1911,248 +1911,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Канец цытаты"
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "Set No Borders"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "Set Outer Border Only"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Set Outer Border and Horizontal Lines"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Set Outer Border and All Inner Lines"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Set Outer Border Without Changing Inner Lines"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Set Diagonal Lines Only"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "Set All Four Borders"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "Set Left and Right Borders Only"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Set Top and Bottom Borders Only"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "Set Left Border Only"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Set Top and Bottom Borders, and All Inner Lines"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Set Left and Right Borders, and All Inner Lines"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "No Shadow"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Cast Shadow to Bottom Right"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Cast Shadow to Top Right"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Cast Shadow to Bottom Left"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Cast Shadow to Top Left"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Пастаўшчык выпуска - %OOOVENDOR"
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice быў заснаваны на OpenOffice.org"
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Правіць шляхі: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -2329,14 +2257,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2518,1071 +2447,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3593,22 +3516,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3617,16 +3540,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -13017,10 +12940,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Межнік"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -14807,22 +14730,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Настаўленні"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -21036,13 +20983,13 @@ msgid "_Next Tip"
msgstr ""
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21054,79 +21001,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/be/dbaccess/messages.po b/source/be/dbaccess/messages.po
index 73c8980eb3a..9f15e263d95 100644
--- a/source/be/dbaccess/messages.po
+++ b/source/be/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2018-04-24 10:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3347,13 +3347,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "Выберыце тып базы даных, да якой хочаце далучыцца."
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "База даных:"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/be/framework/messages.po b/source/be/framework/messages.po
index ead6cce7a1a..e4fdcd1681a 100644
--- a/source/be/framework/messages.po
+++ b/source/be/framework/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2017-10-05 21:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -223,6 +223,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr "Мова тэксту. Каб задаць мову знака або абзаца, клікніце правай кнопкай."
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr ""
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
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 8b37018dddb..bca993494dc 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -1296,14 +1296,24 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "Выбраць незасцераганыя клеткі"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
+msgid "Select Visible Rows Only"
+msgstr ""
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
msgstr ""
#. LEvrC
@@ -3176,15 +3186,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "Фармат старонкі..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "Старонка..."
+msgid "~Page Style..."
+msgstr ""
#. C83UC
#: CalcCommands.xcu
@@ -9456,6 +9466,26 @@ msgctxt ""
msgid "Layout"
msgstr "Выклад"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr ""
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr ""
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -20642,34 +20672,24 @@ msgctxt ""
msgid "Background Color"
msgstr "Колер фону"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
msgstr ""
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
+msgid "Character Highlighting Color (in Text Box and Shapes)"
msgstr ""
#. SPsxZ
@@ -23396,15 +23416,15 @@ msgctxt ""
msgid "~Export As"
msgstr "Экспарт у"
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export as PDF"
+msgstr ""
#. YsFV2
#: GenericCommands.xcu
@@ -23426,15 +23446,15 @@ msgctxt ""
msgid "Export as PDF"
msgstr "Экспартаваць як PDF"
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export Directly as PDF"
+msgstr ""
#. 8eSWp
#: GenericCommands.xcu
@@ -25516,14 +25536,14 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr ""
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
+msgid "Development Tools"
msgstr ""
#. jLF5j
@@ -26106,14 +26126,14 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr ""
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
+msgid "Word ~Joiner"
msgstr ""
#. UvwGS
@@ -33395,6 +33415,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Пачаць нумараванне нанова"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr ""
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33625,6 +33655,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "Пазначыць абзац"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr ""
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -33905,16 +33945,6 @@ msgctxt ""
msgid "Fields"
msgstr "Палі"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "Колер падсвятлення"
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34365,15 +34395,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "Лад азначання"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "Працягваць папярэдняе нумараванне"
+msgid "~Add to List"
+msgstr ""
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr ""
#. oCEjg
#: WriterCommands.xcu
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index 7999b6abbde..571a4b027c6 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -21190,10 +21190,10 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "Формула"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
+msgid "Select the way the maximum is set"
msgstr ""
#. 5P3sd
@@ -25293,231 +25293,231 @@ msgid "No solution was found."
msgstr "Рашэнне не знойдзена."
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index d9698a54d54..915ab2b83a7 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -896,158 +896,164 @@ msgid ""
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr ""
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "Стварыць слайды"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "Правіць фармат старонкі"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "Правіць палі старонкі"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "Правіць"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Сцерці слайды"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "Не ўдалося надрукаваць гэты фармат дакумента на азначаным прынтары."
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Немагчыма адкрыць файл відарыса"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Немагчыма прачытаць файл відарыса"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Нявызначаны фармат відарыса"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Не падтрымліваецца гэта версія графічнага файла"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Фільтр відарысаў не знойдзены"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "Недастаткова памяці, каб імпартаваць відарыс"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Аб'екты"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "Праверка правапісу ў дакуменце скончана."
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "Праверка правапісу ў азначаных аб'ектах скончана."
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "Ператварыць азначаны аб'ект у крывую?"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "Правіць аб'ект прэзентацыі '$'"
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "Выклад слайду"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr ""
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "Уставіць файл"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "Уставіць адвольны знак"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "Ужыць выклад прэзентацыі"
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "Узнавіць"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "Спыніць"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "Пачатковы памер"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1057,128 +1063,128 @@ msgstr ""
"Ці хочаце ўвесці новае значэнне?"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "Без дзеяння"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "Да папярэдняга слайду"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "Да наступнага слайду"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "Да першага слайду"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "Да апошняга слайду"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "Да старонкі ці аб'екту"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "Да дакумента"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr "Прайграць гук"
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr "Пачаць дзеянне аб'екта"
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "Выканаць праграму"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "Выканаць макрас"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "Выйсці з прэзентацыі"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "Мэта"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "Дзеянне"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr "Гук"
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "Слайд / Аб'ект"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "Дакумент"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "Праграма"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "Макрас"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr ""
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1188,254 +1194,254 @@ msgstr[2] ""
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "Уставіць тэкст"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr ""
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "Спрытны"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "Злева"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "Справа"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "Зверху"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "Знізу"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "Улева ўверх"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "Улева ўніз"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "Управа ўверх"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "Управа ўніз"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "Гарызантальна"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "Вертыкальна"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "Усе?"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr "Немагчыма выканаць гэта дзеянне ў \"жывым\" рэжыме."
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "Назад"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "Працягваць"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "Агульны агляд"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "Мяняльнік колераў"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr "Узаемапераход"
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "Расцягнуць слайд"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "Змест слайду"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr "Зараз няма прысутных крыніц SANE."
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr "Зараз няма прысутных крыніц TWAIN."
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "Замацавана"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "Зменная"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "Standard"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "Стандартна (каротка)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "Стандартна (доўга)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "Назва файла"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "Шлях і назва файла"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "Шлях"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "Назва файла без канчатку"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr "Новы адмысловы паказ слайдаў"
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "Капіраваць "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr ""
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr ""
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr "Адгрупаваць метафайл(ы)..."
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr "Не ўдалося адгрупаваць усе рысаваныя аб'екты."
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr ""
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr ""
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1445,157 +1451,157 @@ msgstr ""
"Ці хочаце запісаць паўзверх яго?"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "Тэкст"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "Сеціўная спасылка"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "Наведаная спасылка"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "Актыўная спасылка"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "Заўвагі"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "Змест"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr "Каб пачаць, «клікніце» тут мышкай"
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "Аўтар"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr ""
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "Свая Старонка"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr "Далейшыя звесткі"
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "Атрымаць прэзентацыю"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr "Ваш браўзер не падтрымлівае лунаючых рамак."
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "Першая старонка"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "Апошняя старонка"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "Тэкст"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Відарыс"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "З зместам"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "Без зместу"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "Да азначанай старонкі"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "Ператварыць растр у многавугольнік"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr "Каб выйсці з прэзентацыі, «клікніце» мышкай..."
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "Прыпыніць..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr "Ужыць улюбёнае з 3D"
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "Фільтр відарысаў"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1605,833 +1611,833 @@ msgstr ""
"не з'яўляецца дапушчальным гукавым файлам!"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "Ператварыць у метафайл"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "Ператварыць у растр"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "Немагчыма стварыць файл $(URL1)."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "Не ўдалося адкрыць файл $(URL1)."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr "Не ўдалося скапіраваць файл $(URL1) у $(URL2)"
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr ""
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "Назваць слайд"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr ""
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr ""
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "Назва"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr ""
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr "Абсяг загалоўку Аўта-выкладаў"
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr "Абсяг аб'екта Аўта-выкладаў"
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "Абсяг ніжняга калантытула"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "Абсяг верхняга калантытула"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "Абсяг даты"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "Абсяг нумараў слайдаў"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "Абсяг нумараў старонак"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<загаловак>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<ніжні калантытул>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<дата/час>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<лік>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<колькасць>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr ""
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr "<назва-старонкі>"
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "Абсяг заўваг"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "Ператварэнне Хангыл/Ханджа"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "Слайды"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "Старонкі"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "Няма даступнага перадпаказу"
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "Рыхтуецца перадпаказ"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "Выклады"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr "Стылі рысункаў"
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "Стылі прэзентацый"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "Стылі клетак"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr "Абрыс %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr ""
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "Заўвагі"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "Да пачатковага выклада слайда"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "Уставіць табліцу"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "Уставіць дыяграму"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "Уставіць відарыс"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "Уставіць гуказапіс ці відэа"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "Перацягванне старонак"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "Перацягванне слайдаў"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "Дадайце выявы ў альбом."
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "Тэкставы слайд"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr "Мэтавы каталог на тутэйшым дыску, '%FILENAME', не пусты. Магчыма, будуць сцёрты наяўныя там файлы. Ці хочаце працягваць?"
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "Фон"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "Аб'екты фону"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "Выклад"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr "Кантрольнікі"
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr "Мерныя лініі"
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "Слайд"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "Старонка"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "Слайд"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
#, fuzzy
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr "Апошні слайд"
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr ""
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Майстар-старонка"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr ""
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Заўвагі)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Раздаткі"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Каб правіць фармат загалоўка, «клікніце» мышкай"
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Каб правіць фармат структуры, «клікніце» мышкай"
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr ""
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr ""
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Другі ўзровень структуры"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Трэці ўзровень структуры"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Чацвёрты ўзровень структуры"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Пяты ўзровень структуры"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Шосты ўзровень структуры"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Сёмы ўзровень структуры"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Каб перамясціць слайд, «клікніце» мышкай"
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Каб правіць фармат заўваг, «клікніце» мышкай"
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr ""
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr ""
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
#, fuzzy
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "Клікніце, каб дадаць тэкст"
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Клікніце, каб дадаць тэкст"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Клікніце, каб дадаць тэкст"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "Клікніце, каб дадаць тэкст"
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr ""
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr ""
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr ""
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr ""
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "Каб дадаць графіку, двойчы-«клікніце» мышкай"
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "Каб дадаць аб'ект, двойчы-«клікніце» мышкай"
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
#, fuzzy
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "Каб дадаць графіку, двойчы-«клікніце» мышкай"
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Прадвызначана"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Загаловак"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr ""
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Перамясціць слайды"
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr ""
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr ""
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr ""
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Аб'ект без заліўкі"
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "Аб'ект без заліўкі і ліній"
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Тэкст"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr ""
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr ""
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr ""
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr ""
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr ""
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr ""
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr ""
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr ""
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr ""
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr ""
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr ""
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr ""
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr ""
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr ""
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr ""
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr ""
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr ""
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr ""
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr ""
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr ""
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr ""
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr ""
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr ""
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Назва"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Падзагаловак"
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Структура"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Аб'екты фону"
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Фон"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Заўвагі"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "Імпартаваць з PowerPoint"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Запісаць дакумент"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Banding cell"
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Калантытул верхні"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Радок выніку"
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Першая калонка"
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Апошняя калонка"
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "Зменшыць памер шрыфту"
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "Павялічыць памер шрыфту"
@@ -2439,632 +2445,632 @@ msgstr "Павялічыць памер шрыфту"
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Від: рысункі"
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Від: рысункі"
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Від: структура"
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Від: слайды"
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Тут можна парадкаваць слайды."
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Від: заўвагі"
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Від: раздаткі"
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Загаловак прэзентацыі"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "Структура прэзентацыі"
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "Стылі прэзентацый"
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Рэжым прэзентацыі"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Стылі прэзентацый"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Раздатак"
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "Рэжым прэзентацыі"
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "Рэжым прэзентацыі"
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Рэжым прэзентацыі"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "Прэзентацыя %PRODUCTNAME"
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Загаловак"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Контур"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Падзагаловак"
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Старонка"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Заўвагі"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Раздатак"
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Калантытул ніжні"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Калантытул верхні"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Дата"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Лічба"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(толькі-чытаць)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "none"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "Да наступнага націскання"
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "Да заканчэння слайда"
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "Накірунак:"
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Маштаб:"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "Спіцы:"
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Першы колер:"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "Другі колер:"
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "Колер запаўнення:"
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стыль:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Шрыфт:"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Колер шрыфту:"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стыль:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Гарнітура:"
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Колер лініі:"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Памер шрыфту:"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Памер:"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Колькасць:"
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Колер:"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(без гуку)"
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(спыніць папярэдні гук)"
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Іншы гук..."
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Спроба"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Актываваць"
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "Адмысловыя шляхі"
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "Выдзяленне: %1"
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "Выхад: %1"
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "Сцежкі руху: %1"
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr ""
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "Няма"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Сёння,"
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Учора,"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(без аўтара)"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress давёў пошук да заканчэння прэзентацыі. Ці працягваць пошук ад пачатку?"
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress давёў пошук да пачатку прэзентацыі. Ці працягваць пошук ад заканчэння?"
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw давёў пошук да заканчэння дакумента. Ці працягваць пошук ад пачатку дакумента?"
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw давёў пошук да пачатку дакумента. Ці працягваць пошук ад заканчэння дакумента?"
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Уставіць заўвагу"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Сцерці заўвагу(-і)"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Перанесці заўвагу"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Правіць заўвагу"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Заўвага на %1"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Табліца"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Дакумент"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr ""
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr ""
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Змесціва"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Назва слайда"
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Назва старонкі"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Дата і час"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Прыхаваныя старонкі"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Колер"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Памер"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Брашура"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Бакі аркушаў"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Улучаць"
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "Папера толькі з падачы, запісанай у настаўленнях прынтара"
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr ""
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr ""
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress давёў пошук да заканчэння дакумента. Ці працягваць пошук ад пачатку дакумента?"
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress давёў пошук да пачатку дакумента. Ці працягваць пошук ад заканчэння дакумента?"
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw давёў пошук да заканчэння дакумента. Ці працягваць пошук ад пачатку дакумента?"
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw давёў пошук да пачатку дакумента. Ці працягваць пошук ад заканчэння дакумента?"
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr ""
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr ""
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
msgstr ""
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
msgstr ""
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
msgstr ""
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
msgstr ""
@@ -9512,139 +9518,139 @@ msgid "Sound:"
msgstr "Гук:"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "(без гуку)"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "(спыніць папярэдні гук)"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "Іншы гук..."
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr ""
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "Паўтараць да наступнага гуку"
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr ""
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "Варыянт:"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr ""
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "Правіць пераход"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "Па націсканні кнопкі мышкі"
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr ""
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
-msgstr "Аўтаматычна пасля:"
+msgid "After:"
+msgstr ""
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr ""
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "Пракруціць* слайд"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr "Ужыць пераход для ўсіх слайдаў"
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr ""
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Аўтаматычны прагляд"
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr ""
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Узнавіць"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr ""
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr ""
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr ""
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index 4d7c3e27787..f29355a4b61 100644
--- a/source/be/sfx2/messages.po
+++ b/source/be/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -850,11 +850,11 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Няма"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr "Выява"
+msgstr ""
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1633,11 +1633,11 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Закрыць панэль"
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
+msgid "Grey Elegant"
msgstr ""
#. FkuLG
@@ -1658,16 +1658,16 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
+msgid "Candy"
msgstr ""
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
+msgid "Yellow Idea"
msgstr ""
#. QDNuB
@@ -1688,10 +1688,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1706,10 +1706,10 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
+msgid "Growing Liberty"
msgstr ""
#. xo2gC
@@ -1754,11 +1754,11 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
-msgstr ""
+msgid "Sunset"
+msgstr "Заход сонца"
#. 73Y2e
#: include/sfx2/strings.hrc:320
@@ -2258,6 +2258,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "Этыкеткі"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr ""
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr ""
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr ""
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr ""
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr ""
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr ""
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr ""
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr ""
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr ""
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr ""
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr ""
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr ""
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr ""
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr ""
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr ""
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr ""
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr ""
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr ""
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr ""
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr ""
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2607,9 +2907,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2668,91 +2968,157 @@ msgid "Contains descriptive information about the document."
msgstr ""
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
+msgstr ""
+
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr ""
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr ""
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
+msgstr ""
+
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr ""
+
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
msgctxt "documentfontspage|embedFonts"
@@ -3903,9 +4269,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr ""
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
diff --git a/source/be/starmath/messages.po b/source/be/starmath/messages.po
index 12a63db9542..b7567e247bd 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: 2021-02-17 15:59+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -491,2212 +491,2212 @@ msgstr ""
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Знак +"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Знак -"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Знак +-"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Знак -+"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Булева НЕ"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Складанне +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Адыманне -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Множанне (кропка )"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Множанне (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Множанне (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Дзяленне (скос)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Дзяленне (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Дзяленне (дроб)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr ""
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Скос у акружыне"
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Кропка ў акружыне"
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Мінус у акружыне"
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Плюс у акружыне"
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Тэнзарны здабытак"
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Булева І"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Булева АБО"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Роўна"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Не роўна"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "Менш за"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "Больш за"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Менш або роўна"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Больш або роўна"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "Менш або роўна"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "Больш або роўна"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Значна менш за"
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Значна больш за"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Вызначана як"
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Кангруэнтна да"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Прыблізна роўна"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Падобна да"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Падобна або роўна"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Прапарцыянальна да"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Перпендыкулярна да"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Паралельна да"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Да"
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Адпавядае (злева)"
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Адпавядае (справа)"
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Уваходзіць у"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Не ўваходзіць у"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Валодае"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "З'яднанне"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Перасячэнне"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Розніца"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr ""
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Падмноства"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Падмноства або роўна"
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Надмноства"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Надмноства або роўна"
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Не падмноства"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Не падмноства і не роўна"
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Не надмноства"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Не надмноства і не роўна"
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr ""
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Абсалютнае значэнне"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Фактарыял"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Квадратавы корань"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "Корань N-й ступені"
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Экспанентавая функцыя"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Экспанентавая функцыя"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Натуральны лагарыфм"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Лагарыфм"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Сінус"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Косінус"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Тангенс"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Катангенс"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Арксінус"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Арккосінус"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Арктангенс"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Арккатангенс"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Гіпербалічны сінус"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Гіпербалічны косінус"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Гіпербалічны тангенс"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Гіпербалічны катангенс"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Гіпербалічны арк-сінус"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Гіпербалічны арк-косінус"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Гіпербалічны арк-тангенс"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Гіпербалічны арк-катангенс"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr ""
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr ""
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr ""
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr ""
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Сума"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Ніжні індэкс сумы"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Верхні індэкс сумы"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Індэксы сумы"
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Вынік"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Ніжні індэкс здабытку"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Верхні індэкс здабытку"
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Індэксы здабытку"
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Спалучаны здабытак"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Ніжні індэкс ко-здабытку"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Верхні індэкс ко-здабытку"
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Індэксы ко-здабытку"
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Граніца*"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
#, fuzzy
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Ніжні індэкс знізу"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
#, fuzzy
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Верхні індэкс зверху"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
#, fuzzy
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Індэксы сумы"
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr ""
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr ""
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr ""
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr ""
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr ""
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr ""
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr ""
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr ""
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Існуе"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Не існуе"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Для ўсіх"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Інтэграл"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr ""
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr ""
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr ""
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Падвойны інтэграл"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr ""
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr ""
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr ""
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Патройны інтэграл"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr ""
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr ""
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr ""
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Крывалінейны інтэграл"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr ""
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr ""
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr ""
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Падвойны крывалінейны інтэграл"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr ""
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr ""
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr ""
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Патройны крывалінейны інтэграл"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr ""
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr ""
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr ""
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Штрых"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Рыска зверху"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Дужка"
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "'Птушка'"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Колца"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Кропка"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Падвойная кропка"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Патройная кропка"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Адваротны штрых"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "'Хатка'"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Тыльда"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Вектар"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr ""
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Лінія знізу"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Лінія зверху"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Лінія праз"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Празрыста"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Цёмны шрыфт"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Курсіўны шрыфт"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Змяніць памер"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Змяніць шрыфт"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Чорны колер"
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Сіні колер"
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Зялёны колер"
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Чырвоны колер"
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr ""
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr ""
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Шэры колер"
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Лаймавы колер"
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Бардовы колер"
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Цёмна-сіні колер"
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Аліўкавы колер"
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Фіялетавы колер"
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Срэбны колер"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Бірузовы колер"
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Жоўты колер"
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr ""
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr ""
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr ""
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr ""
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr ""
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr ""
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr ""
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr ""
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr ""
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr ""
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr ""
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr ""
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr ""
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr ""
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Групавыя дужкі"
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Круглыя дужкі"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Квадратныя дужкі"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Падвойныя квадратныя дужкі"
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Фігурныя дужкі"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Вугловыя дужкі"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Акругленне ўверх"
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr ""
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Адзінарныя лініі"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Падвойныя лініі"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Аператарныя дужкі"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Круглыя дужкі (маштабаваныя)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Квадратныя дужкі (маштабаваныя)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Падвойныя квадратныя дужкі (маштабаваныя)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Фігурныя дужкі (маштабаваныя)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Вугловыя дужкі (маштабаваныя)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr ""
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr ""
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Адзінарныя лініі (маштабаваныя)"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Падвойныя лініі (маштабаваныя)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Аператарныя дужкі (маштабаваныя)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr ""
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Верх фігурных дужак (маштабаваны)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Ніз фігурных дужак (маштабаваны)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr ""
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr ""
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr ""
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr ""
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Ніжні індэкс справа"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Ступень"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Ніжні індэкс злева"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Верхні індэкс злева"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Ніжні індэкс знізу"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Верхні індэкс зверху"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Малы прагал"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Пусты"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Новы радок"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Вертыкальны стос (2 элементы)"
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Вертыкальны стос"
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Стос матрыц"
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Раўнаванне злева"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Раўнаванне ў цэнтры"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Раўнаванне справа"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Алеф"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Пустое мноства"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Рэчаісная частка"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Уяўная частка"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Бясконцасць"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "часткова"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Набла"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr ""
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr ""
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
msgstr ""
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "p Ваерштраса"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Кропкі ў цэнтры"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Кропкі да верху"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Кропкі да нізу"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Кропкі знізу"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Кропкі вертыкальна"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Канкатэнацыя"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Дзяленне (скос)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Дзяленне (зваротны шырокі скос)"
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Дзеліць"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Не дзеліць"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Падвойная стрэлка ўлева"
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Падвойная стрэлка ўлева і ўправа"
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Падвойная стрэлка ўправа"
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Мноства натуральных лікаў"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Мноства цэлых лікаў"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Мноства рацыянальных лікаў"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Мноства рэчаісных лікаў"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Мноства комплексных лікаў"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Вялікая 'хатка'"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Вялікая тыльда"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Вялікі вектар"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr ""
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h з рыскай"
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "лямбда з рыскай"
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Стрэлка ўлева"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Стрэлка ўправа"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Стрэлка ўверх"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Стрэлка ўніз"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Без прагалу"
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Папярэднічае*"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Папярэднічае або роўнае"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Папярэднічае або эквівалентнае"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Наступнічае"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Наступнічае або роўнае"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Наступнічае або эквівалентнае"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Не папярэднічае"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Не наступнічае"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Унарныя/бінарныя аператары"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Стасункі"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Дзеянні над мноствамі"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Функцыі"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Аператары"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Атрыбуты"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Дужкі"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Фарматы"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Іншыя"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Прыклады"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr ""
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr ""
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr ""
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr ""
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr ""
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr ""
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr ""
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr ""
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr ""
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr ""
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr ""
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr ""
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандартна"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсіў"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Цёмны"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "чорны"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "сіні"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "зялёны"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "чырвоны"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr ""
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr ""
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "шэры"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "лаймавы"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "бардовы"
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "цёмна-сіні"
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "аліўкавы"
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "пурпурны"
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "срэбны"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "бірузовы"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "жоўты"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr ""
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr ""
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr ""
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr ""
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr ""
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr ""
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr ""
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr ""
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr ""
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr ""
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr ""
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr ""
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr ""
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr ""
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "схаваць"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "памер"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "шрыфт"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "злева"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "у цэнтры"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "справа"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Каманды"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Запісваем дакумент..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Формула %PRODUCTNAME %PRODUCTVERSION"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ПАМЫЛКА : "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
msgstr ""
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Нечаканы знак"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Нечаканы токен"
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "чакалася '{'"
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "чакалася '}'"
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "чакалася '('"
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "чакалася ')'"
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr ""
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Чакаўся '#'"
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Патрабуецца колер"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Чакалася 'RIGHT'"
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Змест"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Загаловак"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Тэкст формулы"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Межы"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Памер"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Пачатковы памер"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Дапасоўваць да аркуша"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Маштаб"
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index 9e963084b78..80ddce769b7 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -814,5741 +814,5747 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Адваротны парадак %1"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr ""
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Перамясціць %1"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Змяніць памер %1"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Павярнуць %1"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Адлюстраваць %1 гарызантальна"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "Адлюстраваць %1 вертыкальна"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Адлюстраваць %1 дыяганальна"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "Адлюстраваць %1 адвольна"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "Сказіць %1 (нахіл)"
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "Размеркаваць %1 уздоўж акружыны"
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "Крывая %1 у акружыне"
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "Сказіць %1"
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Адкаціць %1"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Правіць безье-уласцівасці %1"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Правіць безье-уласцівасці %1"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "Наставіць кірунак выхаду для %1"
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "Наставіць адносны атрыбут %1"
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "Наставіць пункт адліку для %1"
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Згрупаваць %1"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "Адгрупаваць %1"
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Ужыць атрыбуты над %1"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Ужыць стылі над %1"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Выдаліць стыль з %1"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "Ператварыць %1 у многавугольнік"
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "Ператварыць %1 у многавугольнікі"
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "Ператварыць %1 у крывую"
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "Ператварыць %1 у крывыя"
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "Ператварыць %1 у контур"
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "Ператварыць %1 у контуры"
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Раўняць %1"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "Раўняць %1 зверху"
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "Раўняць %1 знізу"
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "Раўняць %1 ў цэнтры шырыні"
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "Раўняць %1 злева"
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "Раўняць %1 справа"
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "Раўняць %1 ў цэнтры вышыні"
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "Раўняць %1 у цэнтры"
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "Ператварыць %1"
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Скамбінаваць %1"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Аб'яднаць %1"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Адняць %1"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "Перасячэнне з %1"
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Размеркаваць абраныя аб'екты"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "Выраўняць шырыню %1"
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "Выраўняць вышыню %1"
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Скамбінаваць %1"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Падзяліць %1"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Падзяліць %1"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Падзяліць %1"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Уставіць аб'ект(ы)"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Уставіць пункт у %1"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr "Уставіць клейкі пункт у %1"
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "Перамясціць спасылкавы пункт"
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Змяніць %1 геаметрычна"
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Перамясціць %1"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Змяніць памер %1"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Павярнуць %1"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Адлюстраваць %1 гарызантальна"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "Адлюстраваць %1 вертыкальна"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Адлюстраваць %1 дыяганальна"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "Адлюстраваць %1 адвольна"
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Інтэрактыўны градыент для %1"
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Інтэрактыўная празрыстасць для %1"
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "Сказіць %1 (нахіл)"
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "Размеркаваць %1 уздоўж акружыны"
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "Крывая %1 у акружыне"
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "Сказіць %1"
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Абрэзаць %1"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Змяніць радыус на %1"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Змяніць %1"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Змяніць памер %1"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Перамясціць %1"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "Перамясціць канчатковы пункт %1"
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "Змяніць вугал на %1"
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Змяніць %1"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "Праўка тэксту: абзац %1, радок %2, калонка %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 выбрана"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Пункт з %1"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 пунктаў з %1"
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr "Клейкі пункт з %1"
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr "%2 клейкіх пунктаў з %1"
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Значыць аб'екты"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "Значыць дадатковыя аб'екты"
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Значыць пункты"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "Значыць дадатковыя пункты"
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr "Пазначыць клейкія пункты"
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr "Пазначыць дадатковыя клейкія пункты"
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Стварыць %1"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Уставіць %1"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Капіраваць %1"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "Змяніць парадак аб'ектаў у %1"
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Правіць тэкст у %1"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Уставіць старонку"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Сцерці старонку"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Капіраваць старонку"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Змяніць парадак старонак"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "Скасаваць прызначэнне фонавай старонкі"
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "Змяніць прызначэнне фонавай старонкі"
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Уставіць дакумент"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Уставіць слой"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Сцерці слой"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Змяніць назву аб'екта %1 на"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Змяніць назву аб'екта %1"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "Змяніць апісанне аб'екта %1"
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "(калі)"
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "не"
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "yes"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "Не"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Type 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Type 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Type 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Type 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Гарызантальна"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Вертыкальна"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Automatic"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Няма"
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Proportional"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Дапасоўваць да памеру (кожны радок паасобку) "
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "Use hard attributes"
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Зверху"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "У цэнтры"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Знізу"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "Заняць вышыню цалкам"
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Расцягнута"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Злева"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "У цэнтры"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Справа"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "Заняць шырыню цалкам"
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Расцягнута"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "выкл"
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "мігатаць"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "Пракручванне паўз"
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "пераменна"
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "Пракручванне унутр"
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "left "
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "up"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "right "
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "down"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Стандартны злучальнік"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Злучальная лінія"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Straight Connector"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Крывая злучальная лінія"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Стандартна"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Radius"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "аўтаматычна"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr "злева звонку"
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "унутры (у цэнтры)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr "справа звонку"
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "аўтаматычна"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "на лініі"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "разарваная лінія"
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "пад лініяй"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "у цэнтры"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "поўная акружына"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Сектар колца"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Сегмент акружыны"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "Дуга"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Невядомы атрыбут"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Стыль лініі"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "Узор лініі"
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Шырыня лініі"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Колер лініі"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Пачатак лініі"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Заканчэнне лініі"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Шырыня пачатку лініі"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Шырыня заканчэння лініі"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "Пачатак стрэлкі ў цэнтры"
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "Заканчэнне стрэлкі ў цэнтры"
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Празрыстасць лініі"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Стык ліній"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Атрыбуты лініі"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Стыль заліўкі"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Колер заліўкі"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Gradient"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "Hatching"
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Растр заліўкі"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Празрыстасць"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Колькасць крокаў градыенту"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Запаўненне брукам"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Пазіцыя запаўняльнага растра"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Шырыня запаўняльнага растра"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Вышыня запаўняльнага растра"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Празрысты градыент"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "Заліўка, зарэзерваваная для 2"
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Памер бруку не ў %"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "Зрух бруку па X у %"
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "Зрух бруку па Y у %"
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Маштаб растра"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "Пазіцыя X бруку у %"
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "Пазіцыя Y бруку у %"
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Заліўка фона"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Атрыбуты абсягу"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Стыль шрыфтавання"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Раўнаванне шрыфтавання"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "Інтэрвалы шрыфтавання"
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Пачатак Шрыфтавання"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "Люстэрка Шрыфтавання"
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Абрыс Шрыфтавання"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Цень Шрыфтавання"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Колер ценю Шрыфтавання"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "Водступ ценю Шрыфтавання па X"
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "Водступ ценю Шрыфтавання па Y"
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "Не паказваць абрыс Шрыфтавання"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "Празрыстасць ценю Шрыфтавання"
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "З ценем"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Колер ценю"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Водступ ценю па X"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Водступ ценю па Y"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Празрыстасць ценю"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "Цень 3D"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "Цень у перспектыве"
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Тып легенды"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "Вызначаны вугал легенды"
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Вугал легенды"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Інтэрвал радкоў легенды"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "Раўнаванне выхаду легенды"
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "Адносны выхад легенды"
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "Адносны выхад легенды"
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "Абсалютны выхад легенды"
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Даўжыня радка легенды"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "Аўта-даўжыня радкоў легенды"
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "Радыус скруглення"
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Мінімальная вышыня рамкі"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "AutoFit height"
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "Дапасоўваць тэкст да рамкі"
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "Водступ ад левай мяжы тэкставай рамкі"
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "Водступ ад правай мяжы тэкставай рамкі"
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "Водступ ад верхняй мяжы тэкставай рамкі"
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "Водступ ад ніжняй мяжы тэкставай рамкі"
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "Мацаванне тэксту па вертыкалі"
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Максімальная вышыня рамкі"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Мінімальная вышыня рамкі"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Максімальная шырыня рамкі"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "Аўта-дапасоўваць шырыню"
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "Мацаванне тэксту па гарызанталі"
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "\"Бягучы радок\""
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "Кірунак \"бягучага радка\""
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "\"Бягучы радок\" стартуе знутры"
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "\"Бягучы радок\" спыняецца ўнутры"
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "Колькасць праходаў \"бягучага радка\""
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "Хуткасць \"бягучага радка\""
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "Крок \"бягучага радка\""
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Абрыс вакол плыні тэксту"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Атрыбуты, вызначаныя карыстальнікам"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "Інтэрвалы радкоў не залежаць ад шрыфта"
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "Пераносіць тэкст у фігуры"
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr "Наступная спасылка тэкставага ланцужка"
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Тып злучальніка"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "Аб'ект гарыз. інтэрвала 1"
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "Аб'ект верт. інтэрвала 1"
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "Аб'ект гарыз. інтэрвала 2"
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "Аб'ект верт. інтэрвала 2"
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "Аб'ект інтэрвала далучэння 1"
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "Аб'ект інтэрвала далучэння 2"
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "Колькасць рухомых радкоў"
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "Водступ лініі 1"
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "Водступ лініі 2"
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "Водступ лініі 3"
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Тып вымярэння"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "Вымярэнні - пазіцыя па гарызанталі"
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "Вымярэнні - пазіцыя па вертыкалі"
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "Водступ мернай лініі"
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "Выступ дапаможнай мернай лініі"
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "Інтэрвал дапаможнай мернай лініі"
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "Гак дапаможнай мернай лініі 1"
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "Гак дапаможнай мернай лініі 2"
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "Вымярэнне ніжняга канту"
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "Значэнне ўпоперак мернай лініі"
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "Значэнне вымярэння павернута на 180 градусаў"
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "Выступ мернай лініі"
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Адзінка вымярэння"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "Дадатковы маштаб"
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Паказваць адзінку вымярэння"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Фармат значэння вымярэння"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "Аўта-пазіцыя значэння вымярэння"
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "Вугал аўта-пазіцыі значэння вымярэння"
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "Вызначаны вугал значэння вымярэння"
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "Вугал значэння вымярэння"
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Decimal places"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Тып акружыны"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "Пачатковы вугал"
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "Канчатковы вугал"
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Засцераганая пазіцыя аб'екта"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Засцераганыя памеры аб'екта"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "Аб'ект, друкавальны"
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Object, visible"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "Узровень ID"
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Слой"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Назва аб'екта"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "Пазіцыя X, разам"
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "Пазіцыя Y, разам"
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "Шырыня, разам"
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "Вышыня, разам"
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "Пазіцыя X, паасобку"
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "Пазіцыя Y, паасобку"
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "Шырыня, паасобку"
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "Вышыня, паасобку"
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Лагічная шырыня"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Лагічная вышыня"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "Вугал павароту, паасобку"
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "Вугал зрэзу, паасобку"
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "Перамясціць па гарызанталі"
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "Перамясціць па вертыкалі"
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Змяніць памер X, паасобку"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Змяніць памер Y, паасобку"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Паварот, паасобку"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "Гарызантальны зрэз, паасобку"
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "Вертыкальны зрэз, паасобку"
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Змяніць памер X, разам"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Змяніць памер Y, разам"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Павярнуць разам"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "Зрэзаць па гарызанталі, разам"
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "Зрэзаць па вертыкалі, разам"
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "Пункт спасылкі 1 X"
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "Пункт спасылкі 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "Пункт спасылкі 2 X"
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "Пункт спасылкі 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Hyphenation"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Паказваць пункты"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "Водступы нумаравання"
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Узровень нумаравання"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Пункты і нумараванне"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Водступы"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Інтэрвалы абзаца"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Міжрадковы інтэрвал"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Paragraph alignment"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Табуляцыі"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Колер шрыфту"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Знаказбор"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Памер шрыфту"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Шырыня шрыфта"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "Цёмны"
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Падкрэсліванне"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Надкрэсленне"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Перакрэслены"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Курсіў"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Контур"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Цень шрыфту"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "Верхні/ніжні індэкс"
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Kerning "
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Уведзены кернінг"
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Не падкрэсліваць прагалы"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Табуляцыя"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "Неабавязковы разрыў радка"
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Знак, які не паддаецца ператварэнню"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Палі"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Чырвоны"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Зялёны"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Сіні"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Яркасць"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Кантраст"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Гама"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Празрыстасць"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Інвертаваць"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Рэжым відарыса"
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "Абрэзаць"
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Аб'ект мультымедый"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Аб'екты мультымедый"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Уставіць калонку"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Уставіць радок"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Сцерці калонку"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Сцерці радок"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Падзяліць клеткі"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Аб'яднаць клеткі"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Фарматаваць клетку"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "Размеркаваць радкі"
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "Размеркаваць калонкі"
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Сцерці змесціва клетак"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Стыль табліцы"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Настаўленні стылю табліцы"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Табліца"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Табліцы"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "Тэкставы эфект"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "Continuous"
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Gradient"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Bitmap"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "Узор"
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "Узор без назвы"
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Стыль лініі"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Няма"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Колер"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "Hatching"
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Наканечнікі стрэлак"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Стрэлка"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Square"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Колца"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- няма -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Празрыстасць"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "У цэнтры"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Не ў цэнтры"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Прадвызначана"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "Шэрыя адценні"
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Чорна-белы"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "\"Вадзяны знак\""
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Чорны"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Шэры"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Белы"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Жоўты"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Золата"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Аранжавы"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "Цэгла"
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Чырвоны"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Пурпурны"
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Пурпурны"
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "Індыга"
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Сіні"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "Бірузовы"
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Зялёны"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "Лаймавы"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Светла-шэры"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "Светла-жоўты"
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "Светлае золата"
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "Светла-аранжавы"
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "Светлая цэгла"
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Светла-чырвоны"
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "Светла-пурпуровы"
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "Светлы індыга"
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Светла-сіні"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "Светла-бірузовы"
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Светла-зялёны"
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "Светлы лаймавы"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "Цёмна-шэры"
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "Цёмна-жоўты"
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "Цёмна-залаты"
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "Цёмна-аранжавы"
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "Цёмная цэгла"
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Цёмна-чырвоны"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "Цёмна-пурпуровы"
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "Цёмны індыга"
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "Цёмна-сіні"
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "Цёмна-бірузовы"
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "Цёмна-зялёны"
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "Цёмны лаймавы"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "Фіялетавы"
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "Бірузовы"
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "Класічны сіні"
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "Сіня-шэры"
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Бардовы"
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "Бледна-жоўты"
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "Бледна-зялёны"
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "Цёмна-фіялетавы"
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Аранжава-ружовы"
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "Лазуравы"
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Дыяграма"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "Нябесна-блакітны"
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "Жоўта-зялёны"
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Ружовы"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Блакітна-зялёны"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3D"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Чорны 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Чорны 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Сіні"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Карычневы"
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Currency"
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Грошы ў 3D"
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Грошы ў шэрым"
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Грошы ў лавандавым"
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Грошы ў блакітна-зялёным"
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Шэры"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Зялёны"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Лавандавы"
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Чырвоны"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Блакітна-зялёны"
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Жоўты"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr "Акадэмічны"
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "Боксавы спіс сіні"
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "Боксавы спіс зялёны"
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "Боксавы спіс чырвоны"
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "Боксавы спіс жоўты"
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "Элегантны"
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Фінансавы"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Згладжаны стык ліній"
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Зрэзаны стык ліній"
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Завостраны стык ліній"
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Скруглены стык ліній"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "Плоскі абрэз лініі"
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "Круглы абрэз лініі"
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "Квадратны абрэз лініі"
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Градыент"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Лінейны сіні/белы"
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Лінейны фіялетавы/зялёны"
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Лінейны жоўты/карычневы"
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Радыяльны зялёны/чорны"
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Радыяльны чырвоны/жоўты"
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Прамавугольны чырвоны/белы"
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Прамавугольны жоўты/белы"
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Авальны сіне-шэры/светла-сіні"
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Восевы светла-чырвоны/белы"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Diagonal 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Diagonal 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Diagonal 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Diagonal 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Diagonal 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Diagonal 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Diagonal 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Diagonal 4r"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Diagonal Blue"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Diagonal Green"
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Diagonal Orange"
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Diagonal Red"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Diagonal Turquoise"
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Diagonal Violet"
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "From a Corner"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "From a Corner, Blue"
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "From a Corner, Green"
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "From a Corner, Orange"
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "From a Corner, Red"
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "From a Corner, Turquoise"
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "From a Corner, Violet"
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "From the Middle"
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "From the Middle, Blue"
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "From the Middle, Green"
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "From the Middle, Orange"
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "From the Middle, Red"
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "From the Middle, Turquoise"
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "From the Middle, Violet"
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Гарызантальна"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Horizontal Blue"
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Horizontal Green"
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Horizontal Orange"
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Horizontal Red"
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Horizontal Turquoise"
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Horizontal Violet"
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Radial"
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Radial Blue"
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Radial Green"
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "Radial Orange"
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Radial Red"
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Radial Turquoise"
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Radial Violet"
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Вертыкальна"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Vertical Blue"
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Vertical Green"
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Vertical Orange"
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Vertical Red"
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Vertical Turquoise"
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Vertical Violet"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "Шэры градыент"
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "Жоўты градыент"
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "Аранжавы градыент"
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "Чырвоны градыент"
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "Ружовы градыент"
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Неба"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "Бірузовы градыент"
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "Сіні градыент"
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "Пурпурная труба"
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Ноч"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "Зялёны градыент"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Пуста"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Растр"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 працэнтаў"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 працэнтаў"
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 працэнтаў"
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 працэнтаў"
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 працэнтаў"
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 працэнтаў"
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 працэнтаў"
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 працэнтаў"
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 працэнтаў"
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 працэнтаў"
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 працэнтаў"
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 працэнтаў"
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
#, fuzzy
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "Гарызантальны нахіл"
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "Вузкая вертыкаль"
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "Вузкая гарызанталь"
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "Цёмная вертыкаль"
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "Цёмная гарызанталь"
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "Пункцірная гарызанталь уніз"
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "Пункцірная гарызанталь уверх"
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "Пункцірная гарызанталь"
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "Пункцірная вертыкаль"
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "Дробныя канфеці"
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "Вялікія канфеці"
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Хваля"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "Дыяганальная цэгла"
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "Гарызантальная цэгла"
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "Тканіна"
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "Плед"
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "Дзёран"
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
#, fuzzy
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "Адзінкавы"
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "Сфера"
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "Дробная сетка"
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "Буйная сетка"
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "Контурныя ромбы"
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "Вертыкаль"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "Гарызанталь"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "Гарызанталь уніз"
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "Дыяганаль уверх"
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Крыж"
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "Дыяганальны крыж"
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr ""
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Квадрат 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Падвойная стрэлка"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Колца"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Квадрат"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Стрэлка"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "Трохкутнік незаліты"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "Ромб незаліты"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Ромб"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Кола незалітае"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Квадрат, заліты напалову"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "Квадрат незаліты"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Празрыстасць"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "Адваротны штрых"
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "Штрых"
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "Адваротны штрых"
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Пурпурны"
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Gallery Theme"
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Паспяхова адноўлена"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Адноўлены арыгінальны дакумент"
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Аднаўленне схібіла"
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Адбываецца аднаўленне"
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Яшчэ не адноўлена"
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION пачаў узнаўляць дакументы. На выкананне гэтай аперацыі патрэбны пэўны час, які залежыць ад аб'ёмаў дакументаў."
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "Узнаўленне вашых дакументаў завершана. Націсніце 'Скончыць', каб адкрыць дакументы."
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "Скончыць"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Апошняе значэнне па-свойму"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "пт"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Экспарт відарыса"
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "Запісаць як выяву"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Уставіць аб'ект(ы)"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Павярнуць аб'ект 3D"
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Стварыць выцісканы аб'ект"
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Стварыць вярчальны аб'ект"
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Падзяліць аб'ект 3D"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[All]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Фільтр графікі"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Новая тэма"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3D Effects"
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Анімацыі"
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Пункты"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Office"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Flags"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Дыяграмы"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Смехазнакі"
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Відарысы"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Фоны"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Свая Старонка"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Узаемадзеянне"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Карты"
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "People"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Паверхні"
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Камп'ютары"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Дыяграмы"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "Асяроддзе"
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Фінансы"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "Транспарт"
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Тэкставыя формы"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Гукі"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Сімвалы"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "Свая Тэма"
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Arrows"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Паветраныя шары"
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Keyboard"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Час"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Прэзентацыя"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Каляндар"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Рух"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Камунікацыі"
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Фінансы"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Камп'ютары"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Клімат"
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Адукацыя"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Развязванне праблем"
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Бабовы экран"
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Выбар друкаванага"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "Ці хочаце друкаваць толькі пазначанае, ці дакумент цалкам?"
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "Усе"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "Пазначанае"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Выцісканне на ПнЗ"
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Выцісканне на Пн"
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Выцісканне на ПнУ"
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Выцісканне на З"
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Выцісканне \"назад\""
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Выцісканне на У"
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Выцісканне на ПдЗ"
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Выцісканне на Пд"
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Выцісканне на ПдУ"
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 см"
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 см"
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 см"
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 см"
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 см"
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 цаляў"
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.~5 цалю"
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 цаль"
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 цалі"
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 цалі"
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "Без запаўнення"
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "Празрыста"
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Тыпова"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Межы"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Стыль мяжы"
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "Яшчэ нумараванне..."
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "Яшчэ маркёры..."
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "Аўтарам"
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Старонкі"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Выдаліць фарматаванне"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Яшчэ стылі..."
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Больш параметраў..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Назва шрыфту"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "Назва шрыфту. Цяперашні шрыфт недаступны і будзе заменены."
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "па-свойму"
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "Колеры дакумента"
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "Колер дакумента"
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Выцісканне"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Ужываць выцісканне"
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Нахіліць уніз"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Нахіліць уверх"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Нахіліць улева"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Нахіліць управа"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Змяніць глыбіню Выціскання"
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Змяніць кірунак"
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Змяніць тып праекцыі"
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Змяніць асвятленне"
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Змяніць яркасць"
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Змяніць паверхню Выціскання"
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Змяніць колер Выціскання"
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "Улюбёны"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Шрыфтаванне"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Ужыць Шрыфтаванне - форма"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Ужыць Шрыфтаванне - роўныя вышыні літар"
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Ужыць раўнаванне Шрыфтавання"
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Ужыць Шрыфтаванне - адлегласць між знакамі"
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "з"
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Стыль"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "і"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Кіраванне рагамі"
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Выбар стылю рогу."
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Верхні левы"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Верхні сярэдні"
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Верхні правы"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Левы сярэдні"
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "У цэнтры"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Правы сярэдні"
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Ніжні левы"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Ніжні сярэдні"
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Ніжні правы"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Кіраванне контурам"
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Тут можна правіць абрыс."
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Выбар спецыяльных знакаў"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Выбар спецыяльных знакаў у гэтым абрысе."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Код знака "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Не дазваляецца пустое значэнне поля '#'. Увядзіце значэнне."
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Формы"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Не выбраны кантрольнік"
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Уласцівасці: "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Form Properties"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Навігатар форм"
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Форма"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Форма"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Нябачны кантрольнік"
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Control"
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Запіс"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "з"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Дадаць поле:"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Памылка пры запісванні ў базу даных"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Памылка ў сінтаксісе звароту"
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "Вы маеце намер сцерці 1 запіс."
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "Будзе сцёрта # запісаў."
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6558,331 +6564,337 @@ msgstr ""
"Do you want to continue anyway?"
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Стужка навігацыі"
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Кл"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Наставіць уласцівасць '#'"
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Уставіць у кантэйнер"
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Сцерці #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Сцерці # аб'ектаў"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Замяніць элемент кантэйнера"
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Замяніць кантрольнік"
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "Push Button"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr "Option Button"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Text Box"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Check Box"
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "Поле меткі"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "Group Box"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "Text Box"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "Фарматаванае поле"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "Комба-бокс"
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "List Box"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr "Комба-бокс"
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "Графічная кнопка"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "Кантрольнік выявы"
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "Выбар файла"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Поле даты"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Поле часу"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Поле ліку"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Поле грошаў"
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Поле ўзору"
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Фарматаванае поле"
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Push Button"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "Option Button"
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Поле меткі"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Group Box"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Графічная кнопка"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Кантрольнік выявы"
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Выбар файла"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Кіраванне табліцай "
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Scrollbar"
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Вярчальная кнопка"
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Стужка навігацыі"
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Множнае пазначэнне"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr ""
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "У гэтай форме няма кантрольнікаў дзеля даных!"
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Дата)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Час)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Навігатар у фільтрах"
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Фільтр для"
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Або"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "У гэтай форме няма карэктных прывязаных кантрольнікаў, якія можна было б выкарыстаць у табліцавым відзе."
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<Аўта-поле>"
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Сінтаксічная памылка ў звароце SQL"
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "Нельга ўжываць значэнне #1 разам з LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "Нельга ўжываць LIKE над гэтым полем."
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "Уведзена недапушчальная дата. Увядзіце дату ў правільным фармаце, напр., ДД.ММ.ГГГГ."
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Нельга параўноўваць поле з цэлым лікам."
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Няма табліцы з назвай \"#\" у гэтай базе даных."
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Няма табліцы ці звароту з назвай \"#\" у гэтай базе даных."
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "Ужо ёсць табліца ці пагляд з назвай \"#\" у гэтай базе даных."
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "Ужо існуе зварот з назвай \"#\" у гэтай базе даных."
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Невядомая калонка \"#1\" у табліцы \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "Нельга параўноўваць поле з лікам з нефіксаванай коскай."
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Нельга параўноўваць уведзены крытэр з гэтым полем."
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Data Navigator"
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (read-only)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Файл з такою назвай ужо існуе. Запісаць паўзверх?"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object# label"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6892,7 +6904,7 @@ msgstr ""
"Ці сапраўды жадаеце сцерці гэту мадэль?"
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6902,7 +6914,7 @@ msgstr ""
"Ці сапраўды жадаеце сцерці гэта ўвасабленне?"
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6912,13 +6924,13 @@ msgstr ""
"Ці сапраўды жадаеце сцерці гэты элемент?"
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Сапраўды хочаце сцерці атрыбут \"$ATTRIBUTENAME\"?"
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6930,7 +6942,7 @@ msgstr ""
"Ці сапраўды жадаеце сцерці гэту падачу?"
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6942,1011 +6954,1011 @@ msgstr ""
"Ці сапраўды жадаеце сцерці гэта прывязванне?"
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Недапушчальная для XML назва \"%1\". Увядзіце іншую назву."
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Недапушчальны для XML прэфікс \"%1\". Увядзіце іншы прэфікс."
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Назва \"%1\" ужо занята. Увядзіце іншую назву."
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "Падача мусіць мець назву."
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Няма"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Увасабленне"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Дакумент"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Прывязванне: "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Спасылка: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Дзеянне: "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Метад: "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Замяніць: "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Дадаць элемент"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Правіць элемент"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Сцерці элемент"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Дадаць атрыбут"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Правіць атрыбут"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Сцерці атрыбут"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Дадаць прывязванне"
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Правіць прывязванне"
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Сцерці прывязванне"
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Дадаць падачу"
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Правіць падачу"
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Сцерці падачу"
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Элемент"
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Атрыбут"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Прывязванне"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Прывязвальны выраз"
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "Сапраўды скасаваць аднаўленне дакументу %PRODUCTNAME?"
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Злева"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Справа"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "У цэнтры"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Дзесятковае"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "Рэжым устаўкі. Клікніце, каб перайсці ў рэжым замены."
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "Рэжым замены. Клікніце, каб перайсці ў рэжым устаўкі."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Паўзверх"
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Лічбавы подпіс: подпіс дакумента ў парадку."
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Лічбавы подпіс: подпіс дакумента ў парадку, але сертыфікаты не паддаюцца праверцы."
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Лічбавы подпіс: дакумент не ўтрымлівае лічбавага подпісу."
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Лічбавы подпіс: подпіс дакумента і сертыфікат у парадку, але падпісаныя не ўсе часткі дакумента."
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Дакумент быў зменены. Клікніце, каб запісаць дакумент."
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "Дакумент не мяняўся з моманту апошняга замацоўвання."
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Чытаем дакумент..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "Маштаб. Націсканне правай кнопкі мышы змяняе маштаб, левай - адкрывае дыялог \"Маштаб\"."
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Павялічыць"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Паменшыць"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Старонка цалкам"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Шырыня старонкі"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Аптымальны від"
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Таксама ў стылях"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Стылі абзаца"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Стылі клетак"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "Дасягнуты канец дакумента"
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "Дасягнуты канец дакумента"
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Шуканае не знойдзена"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "Дасягнуты пачатак дакумента"
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Палітра колераў"
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Няправільны пароль"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Паролі не супадаюць"
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Solid small circular bullets"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Solid large circular bullets"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Solid diamond bullets"
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Вялікія суцэльныя квадратныя пункты"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Right pointing arrow bullets filled out"
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Маркёр-стрэлка ўправа"
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
#, fuzzy
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Number (1) (2) (3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Number 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Number (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Uppercase Roman number I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Uppercase letter A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Lowercase letter a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Lowercase letter (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Lowercase Roman number i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
#, fuzzy
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numeric, numeric, lowercase letters, solid small circular bullet"
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
#, fuzzy
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numeric, lowercase letters, solid small circular bullet"
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
#, fuzzy
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Лічбавае"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
#, fuzzy
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
#, fuzzy
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numeric with all sublevels"
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
#, fuzzy
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Немагчыма стварыць файл ZIP."
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Стылі дызайну* табліц"
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Адкаціць дзеянні: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Адкаціць дзеянні: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Паўтарыць дзеянні: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Паўтарыць дзеянні: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Знайсці"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Адрозніваць рэгістр"
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "Улічваць фармат"
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) пікс.)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) у $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) кіБ"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "Відарыс GIF"
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "Відарыс JPEG"
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "Відарыс PNG"
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "Відарыс TIFF"
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "Відарыс WMF"
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "Відарыс MET"
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "Відарыс PCT"
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "Відарыс SVG"
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "Відарыс BMP"
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Невядома"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Switch"
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Рэжым відарыса"
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Чырвоны"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Зялёны"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Сіні"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Яркасць"
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Кантрастны"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Гама"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Празрыстасць"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Абрэзаць"
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Прадвызначаная арыентаванне"
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "Зверху ўніз"
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "Знізу ўверх"
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Лесвіцаю"
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Поле злева: "
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Поле зверху: "
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Поле справа: "
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Поле знізу: "
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Апісанне старонкі: "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Капітэлі"
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Малыя літары"
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Вялікія рымскія"
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Малыя рымскія"
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Арабскія"
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Няма"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Альбом"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Кніга"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Злева"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Справа"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Усе"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Адлюстраваныя"
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Аўтар: "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Дата: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Тэкст: "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Фон знака"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Палітра колераў"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7954,1930 +7966,2033 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Базавы лацінскі"
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Лацінскі-1"
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Лацінскі пашыраны-A"
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Лацінскі пашыраны-B"
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "Пашырэнні IPA"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Знакі мадыфікацыі інтэрвалу"
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Камбінавальныя дыякрытычныя знакі"
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Базавы грэчаскі"
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Грэчаскія сімвалы і коптскі"
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Кірыліца"
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armenian"
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Базавы яўрэйскі"
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Яўрэйскі пашыраны"
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Базавы арабскі"
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Арабскі пашыраны"
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Дэванагары"
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengali"
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Гурмукхі"
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Gujarati"
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Орыя"
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Telugu"
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malayalam"
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Тайская"
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Базавая грузінскі"
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Грузінскі пашыраны"
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Хангыл джамо"
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Лацінскі пашыраны дадаткі"
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Грэчаскі пашыраны"
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Агульная пунктуацыя"
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Індэксы верхнія і ніжнія"
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Сімвалы грашовых адзінак"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Камбінавальныя дыякрытычныя сімвалы"
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Літарападобныя сімвалы"
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Лічбавыя формы"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Arrows"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Mathematical Operators"
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Рознае тэхнічнае"
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Рысункі кантрольнікаў"
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Аптычнае пазнаванне знакаў"
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Упісаныя літары і лічбы"
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Рысаванне прамавугольнікаў"
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Блокавыя элементы"
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Геаметрычныя формы"
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Розныя сімвалы"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Дынбац"
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "К.Я.К. знакі і пунктуацыя"
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Бопомофо"
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Хангыл сумяшчальнасць джамо"
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "К.Я.К. рознае"
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "К.Я.К. упісаныя літары і месяцы"
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "К.Я.К. сумяшчальнасць"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Хангул"
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "К.Я.К. уніфікаваныя ідэаграфы"
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне A"
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Абсяг прыватнага карыстання"
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "К.Я.К. сумяшчальнасць ідэаграфы"
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Алфавітныя формы прэзентацыі"
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Арабскія формы прэзентацыі-A"
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Камбінавальныя паў-знакі"
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "К.Я.К. сумяшчальнасць формы"
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Варыянты малых форм"
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Арабскія формы прэзентацыі-B"
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Паў-шырокія і поўна-шырокія формы"
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Спецыяльныя"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Склады Йі"
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Радыкалы Йі"
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Курсіў"
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Готыка"
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Дэзерэт"
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Візанційскія музычныя знакі"
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Музычныя знакі"
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Матэматычныя літарна-лічбавыя знакі"
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне B"
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне C"
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне D"
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "К.Я.К., дадатковыя ідэаграфы сумяшчальнасці"
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Тэгі"
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Кірыліца дадатковая"
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Коды выбару адмен гліфаў"
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Дадатковы дыяпазон для асабістага карыстання A"
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Дадатковы дыяпазон для асабістага карыстання B"
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Лімбу"
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Тай Лэ"
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Кхмерскія знакі"
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Фанетычныя пашырэнні"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Розныя знакі і стрэлкі"
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Гексаграмы Кнігі перамен"
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Лінейнае пісьмо B, склады"
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Лінейнае пісьмо B, ідэаграмы"
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Эгейскія лічбы"
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Угарыцкая"
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Шавіан"
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Асманья"
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Сінгальская"
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetan"
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "М'янма"
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Огхам"
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Рунічны"
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Сірыйскі"
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Таана"
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Эфіопскі"
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Чэракі"
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Канадскіх абарыгенаў складавы"
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongolian"
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Розныя матэматычныя сімвалы-A"
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Дадатковыя стрэлкі-A"
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Узоры Брайля"
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Дадатковыя стрэлкі-B"
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Розныя матэматычныя сімвалы-B"
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "К.Я.К. радыкальны дадатак"
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Каншы радыкальныя"
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Знакі ідэаграфічных апісанняў"
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Тагальская"
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Хануну"
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Тагбанва"
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Бухід"
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Канбун"
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Бопомофо пашыраны"
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Катакана фанетыка"
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "Іерагліфічныя рысы CJK"
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Кіпрскае складовае пісьмо"
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Сімвалы Тай Сюань Цзін"
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Дадатковыя коды выбару адмен гліфаў"
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Старажытнагрэчаскія музычныя знакі"
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Старажытнагрэчаскія лічбы"
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Арабскія, дадатак"
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Бугініз"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Дадатковыя спалучальныя дыякрытычныя знакі"
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Коптская"
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Пашыранае эфіопскае"
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Дадатковыя эфіопскія"
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Грузінскія дадатковыя"
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Глаголіца"
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Кхароштхі"
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Мадыфікатары тонаў літар"
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Новы Тай Лэ"
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Старажытнаперсідскае"
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Дадатковыя фанетычныя пашырэнні"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Дадатковая пунктуацыя"
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Сілоці-нагры"
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Тыфінаг"
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Вертыкальныя формы"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Н'Ко"
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Балійская"
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Пашыраная лацініца C"
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Пашыраная лацініца D"
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Пагба"
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Фінікійская"
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Клінапіс"
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Клінапіс, лічбы і пунктуацыя"
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Лічбы з лічыльных палачак"
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Сунданская"
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Лепча"
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ол Чыкі"
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Пашыраная кірыліца A"
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Ваі"
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Пашыраная кірыліца B"
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Саўраштра"
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Кая Лі"
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Рэджанг"
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Чам"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Старажытныя сімвалы"
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Фесцкі дыск"
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Лікійская"
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Карыйская"
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Лідыйская"
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Косці для маджонгу"
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Косці для даміно"
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Самарыцянская"
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Складовае пісьмо канадскіх абарыгенаў, пашыранае"
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Таі Тхам"
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Ведыйскія пашырэнні"
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Лісу"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Бамум"
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Агульныя індыйскія лічбавыя формы"
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Пашыранае дэванагары"
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Хангул джама пашырана A"
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Яванская"
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "М'янма пашырана A"
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Тай Віет"
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Маніпуры"
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Хангул джама пашырана B"
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Імперская арамейская"
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Старажытная паўднёваарабская"
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Авестыйская"
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Наскальнае парфянскае пісьмо"
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Наскальнае пісьмо пехлеві"
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Старажытнатурэцкае"
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Лічбавыя сімвалы Румі"
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Кайтхі"
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Егіпецкія іерогліфы"
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Дадатковыя ўпісаныя літары і лічбы"
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Дадатковыя ўпісаныя ідэаграмы"
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Мандэйскае"
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Батацкае"
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Эфіопская пашырана А"
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Брахмі"
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Бамум дадатковае"
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Кана дадатковае"
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Карты для гульні"
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Разнастайныя сімвалы і піктаграмы"
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Значкі эмоцый"
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Сімвалы транспарту і картаграфіі"
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Алхімічныя сімвалы"
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Пашыранае арабскае пісьмо A"
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Арабскія матэматычныя алфавітныя сімвалы"
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Чакма"
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Пашырэнні маніпуры"
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Мераіцкі курсіў"
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Мераіцкія іерогліфы"
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Мяа"
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Шарада"
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Сора Сомпенг"
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Сунданскае дадатковае"
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Такры"
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Баса"
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Каўказская албанская"
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Копцкія лікі эпакт"
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Камбінавальныя дыякрытычныя знакі пашыраныя"
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Дуплоян"
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Эльбасан"
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Пашыраныя геаметрычныя фігуры"
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Грантха"
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Хойкі"
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Худавады"
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Лацінскі пашыраны-Е"
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Лінейнае пісьмо А"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Магаджані"
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Маніхейская"
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Мендэ Кікакуй"
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Моды"
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Мро"
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "М'янма пашырана B"
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Набатэйская"
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Старажытная паўночнаарабская"
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Старапермская"
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Арнаменты Dingbats"
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Пахаў Хмонг"
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Пальмірская"
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Пау Цін Хаў"
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Дадатковыя стрэлкі-C"
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ахом"
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Анаталійскія іерогліфы"
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне A"
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Хатран"
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Мултані"
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Адлам"
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Бхайкшукі"
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Пашыраная кірыліца-C"
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Марчэн"
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Грузінская"
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Неўа"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Осэйдж"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Тангуцкая"
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Тангуцкія кампаненты"
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне F"
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "М'янма A"
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Нушу"
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Соёмбо"
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Кірыліца дадатковая"
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr ""
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr ""
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr ""
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr ""
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr ""
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr ""
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr ""
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr ""
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr ""
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr ""
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr ""
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr ""
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr ""
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr ""
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr ""
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr ""
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
@@ -10723,7 +10838,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Дыяганальная межавая лінія з левага нізу ў правы верх"
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10731,11 +10846,29 @@ msgstr "Дыяганальная межавая лінія з левага ні
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr ""
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr ""
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr ""
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
msgstr ""
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
msgstr ""
@@ -13626,176 +13759,44 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "Уставіць калонку"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "Тэкставае поле"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr "Так-бокс"
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr "Комба-бокс"
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "Спісавы бокс"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "Поле даты"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "Поле часу"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "Поле ліку"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr "Поле грошаў"
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr "Поле ўзору"
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr "Фарматаванае поле"
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr "Поле даты і часу"
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "Замяняць на"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "Тэкставае поле"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr "Так-бокс"
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr "Комба-бокс"
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "Спісавы бокс"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "Поле даты"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "Поле часу"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "Поле ліку"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr "Поле грошаў"
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr "Поле ўзору"
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr "Фарматаванае поле"
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr "Поле даты і часу"
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "Сцерці калонку"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr "Не паказваць калонку"
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr "Паказваць калонкі"
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "Яшчэ..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
msgctxt "colsmenu|all"
msgid "_All"
msgstr "Усе"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
msgctxt "colsmenu|column"
msgid "Column..."
msgstr "Калонка..."
@@ -13950,126 +13951,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "Звесткі аб відарысе"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "Тэкставае поле"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "Кнопка"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "Поле метк_і"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "Групавая рам_ка"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "Спісавы бокс"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr "Так-бок_с"
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr "Радыё-_кнопка"
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr "Комба-бокс"
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "Графічная кнопка"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "Выбар ф_айла"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "Поле даты"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "Поле час_у"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "Поле ліку"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr "Поле грошаў"
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr "Поле ў_зору"
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr "Кантрольнік выявы"
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr "Фарматаванае поле"
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr "Стужка пракруткі"
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr "Вярчальная кнопка"
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr "Стужка навігацыі"
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index 8dd36c58a62..d935ad36ca6 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: 2021-02-22 17:18+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+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"
@@ -1562,10 +1562,10 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr ""
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
+msgid "List Style Name"
msgstr ""
#. zrVDM
@@ -2266,1504 +2266,1559 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr ""
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr ""
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr ""
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr ""
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr ""
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr ""
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "Знакі зноскі"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "Нумар старонкі"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "Знакі катэгорыі подпісаў"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "Буквіца"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "Нумар"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr ""
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "Сеціўная спасылка"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "Наведаная сеціўная спасылка"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "Намеснік"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "Спасылка на індэкс"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "Знакі затэкставай зноскі"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "Нумар радка"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "Асноўны складнік індэкса"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "Адсылка да зноскі"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "Адсылка да затэкставай зноскі"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr "Фанетычны гід"
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "Нумар вертыкальны"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "Выдзяленне"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
msgstr ""
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "Моцнае выдзяленне"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "Праграма, выточны тэкст"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "Праграма, прыклад"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "Праграма, увод"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "Праграма, зменная"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "Праграма, вызначэнне"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "Кансоль"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "Рамка"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "Графіка"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "Формула"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "Заўвагі"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "Вадзяны знак"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "Подпісы"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr ""
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "Тэкст галоўны"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "Тэкст галоўны з чырвонага радка"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "Тэкст галоўны з выступам"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "Тэкст галоўны з водступам"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr "Прывітанне"
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "Асабісты подпіс"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "Загаловак, асноўны"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr ""
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "Індэкс"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "Спіс з водступам"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "Заўвагі"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "Загаловак 1"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "Загаловак 2"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "Загаловак 3"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "Загаловак 4"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "Загаловак 5"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "Загаловак 6"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "Загаловак 7"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "Загаловак 8"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "Загаловак 9"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "Загаловак 10"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "Нумараванне 1 пачатак"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "Нумараванне 1"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "Нумараванне 1 канец"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "Нумараванне 1 працяг"
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "Нумараванне 2 пачатак"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "Нумараванне 2"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "Нумараванне 2 канец"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "Нумараванне 2 працяг"
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "Нумараванне 3 пачатак"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "Нумараванне 3"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "Нумараванне 3 канец"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "Нумараванне 3 працяг"
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "Нумараванне 4 пачатак"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "Нумараванне 4"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "Нумараванне 4 канец"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "Нумараванне 4 працяг"
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "Нумараванне 5 пачатак"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "Нумараванне 5"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "Нумараванне 5 канец"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "Нумараванне 5 працяг"
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr ""
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr ""
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr ""
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr ""
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr ""
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr ""
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr ""
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr ""
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr ""
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr ""
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr ""
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr ""
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr ""
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr ""
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr ""
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr ""
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr ""
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr ""
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr ""
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr ""
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "Калантытул верхні"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "Калантытул верхні, злева"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "Калантытул верхні, справа"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "Калантытул ніжні"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "Калантытул ніжні, злева"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "Калантытул ніжні, справа"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "Табліца, змесціва"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "Табліца, загаловак"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr "Рамка, змесціва"
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "Зноска"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "Зноска затэкставая"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "Подпіс"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "Выява"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "Табліца"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "Тэкст"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "Рысунак"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr ""
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr ""
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr ""
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "Індэкс, загаловак"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "Індэкс 1"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "Індэкс 2"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "Індэкс 3"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "Індэкс, межнік"
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "Змест, загаловак"
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Змест 1"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Змест 2"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Змест 3"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Змест 4"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Змест 5"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Змест 6"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Змест 7"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Змест 8"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Змест 9"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Змест 10"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "Свой індэкс, загаловак"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "Свой індэкс 1"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "Свой індэкс 2"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "Свой індэкс 3"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "Свой індэкс 4"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "Свой індэкс 5"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "Свой індэкс 6"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "Свой індэкс 7"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "Свой індэкс 8"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "Свой індэкс 9"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "Свой індэкс 10"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "Цытата"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr ""
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr ""
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "Індэкс аб'ектаў, загаловак"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "Індэкс аб'ектаў 1"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "Індэкс табліц, загаловак"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "Індэкс табліц 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "Бібліяграфія, загаловак"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "Бібліяграфія 1"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Загаловак дакумента"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "Падзагаловак дакумента"
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "Цытаты"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "Самафарматаваны тэкст"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "Гарызантальная лінія"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "Спіс, змесціва"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "Спіс, загаловак"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr ""
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Першая старонка"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "Левая старонка"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Правая старонка"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr ""
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "Індэкс"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "Зноска"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "Зноска затэкставая"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "Альбом"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "Нумараванне 123"
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "Нумараванне ABC"
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr "Нумараванне abc"
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "Нумараванне IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "Нумараванне ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr ""
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr ""
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr ""
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr ""
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr ""
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "1 калонка"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "2 роўныя калонкі"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "3 роўныя калонкі"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "2 калонкі, левая шырэйшая за правую"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "2 калонкі, правая шырэйшая за левую"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr ""
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Стылі абзацаў"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "Стылі знакаў"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Стылі рамак"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Стылі старонак"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "Стылі спісаў"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Стылі табліц"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Канверт"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Этыкеткі"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "Тэкставы дакумент %PRODUCTNAME %PRODUCTVERSION"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Не ўдалося адкрыць дакумент."
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Не ўдалося стварыць дакумент."
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Фільтр не знойдзены."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Назва і шлях Майстар-дакумента"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "Назва і шлях HTML дакумента"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "Правіць скрыпт"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "Закладка"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr ""
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr ""
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr ""
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[Няма]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Пачатак"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Канец"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "Над"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "Пад"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "толькі-чытанае"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "Каталогі 'Аўта-тэксту' з'яўляюцца толькі-чытанымі. Ці хочаце перанаставіць шляхі?"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Статыстыка"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Імпартуецца дакумент..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Экспартуецца дакумент..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Запісваецца дакумент..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Перадзельваем на старонкі..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Аўтаматычна фарматуецца дакумент..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Знайсці..."
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Letter"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Правяраем правапіс..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Расстаўляем пераносы..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Устаўляем індэкс..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Абнаўляем індэкс..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Складаем анатацыю..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Адаптаваць аб'екты..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Табліца"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Відарыс"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Аб'ект"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Рамка"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "Фігура"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Раздзел"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Нумараванне"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "пустая старонка"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Анатацыя: "
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "размежаванне праз: "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "Структура: узровень "
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Стыль: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Нумар старонкі: "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Разрыў перад новай старонкай"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Заходнееўрапейскі тэкст: "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Азіяцкі тэкст: "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr ""
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "Невядомы аўтар"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Сцерці ўсе заўвагі аўтарства $1"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Схаваць ўсе заўвагі аўтарства $1"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr ""
@@ -3771,14 +3826,14 @@ msgstr ""
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr ""
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3788,7 +3843,7 @@ msgstr[2] ""
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3799,7 +3854,7 @@ msgstr[2] ""
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr ""
@@ -3807,7 +3862,7 @@ msgstr ""
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3818,7 +3873,7 @@ msgstr[2] ""
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3827,91 +3882,91 @@ msgstr[1] ""
msgstr[2] ""
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Ператварыць тэкст у табліцу"
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Дадаць Аўта-фармат"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Назва"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Сцерці Аўта-фармат"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "Гэты элемент Аўта-фармату будзе сцёрты:"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Назваць Аўта-фармат"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Закрыць"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Сту"
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Лют"
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Сак"
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "Поўнач"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "Між"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Поўдзень"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Сума"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3923,416 +3978,416 @@ msgstr ""
"Паспрабуйце нанова з іншай назвай."
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Лічбавае"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Радкі"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "Калонка"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Правіць складнік бібліяграфіі"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Уставіць складнік бібліяграфіі"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "Інтэрвал паміж %1 і %2"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Шырыня калонкі %1"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "Табліца %PRODUCTNAME Writer"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "Рамка %PRODUCTNAME Writer"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "Відарыс %PRODUCTNAME Writer"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "Іншыя аб'екты OLE"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr "Назва табліцы не можа ўтрымліваць прабелы."
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr "Выбраныя клеткі табліцы занадта складаныя для аб'яднання."
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "Немагчыма парадкаваць пазначанае"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "«Кліканне» мышкай над аб'ектам"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Перад ўстаўляннем Аўта-тэксту"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "Пасля ўстаўляння Аўта-тэксту"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Мышка ў абсягу аб'екта"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Актывацыя сеціўнай спасылкі"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Мышка выходзіць за абсяг аб'екту"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "Відарыс паспяхова адчытаны"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "Чытанне відарыса спынена"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "Немагчыма адчытаць відарыс"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Увод літар ці лічбаў"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Увод не літар і не лічбаў "
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Змяніць памер рамкі"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Перамясціць рамку"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Загалоўкі"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Табліцы"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Відарысы"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "Аб'екты OLE"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Закладкі"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Раздзелы"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Сеціўныя спасылкі"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Спасылкі"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Індэксы"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Рысаваныя аб'екты"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Заўвагі"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Загаловак 1"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "Гэта змесціва першай часткі. Гэта складнік свайго каталога*."
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Загаловак 1.1"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr "Гэта змесціва часткі 1.1. Гэта складнік зместу."
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Загаловак 1.2"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr "Гэта змесціва часткі 1.2. Гэтае ключавое слова ёсць галоўны складнік."
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "Табліца 1: Гэта табліца 1"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "Відарыс 1: Гэта відарыс 1"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr ""
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr ""
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr ""
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr ""
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr ""
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr ""
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr ""
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Загаловак"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Табліца"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Відарыс"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "Аб'ект OLE"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Закладка"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Раздзел"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Спасылка"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Спасылка"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "Індэкс"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Заўвага"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Рысаваны аб'ект"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Дадатковыя фарматы..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Сістэма]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4342,626 +4397,626 @@ msgstr ""
"ужо адбываецца ў іншым дакуменце."
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Пераносы"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr ""
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr ""
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "немагчыма"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Сцерці $1"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Уставіць $1"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Запісаць паўзверх: $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Новы абзац"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Перамясціць"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Замацаваць атрыбуты*"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Ужыць стылі: $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Вярнуць атрыбуты да пачатковых"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Змяніць стыль: $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Уставіць файл"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Уставіць Аўта-тэкст"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Сцерці закладку: $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Уставіць закладку: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Парадкаваць табліцу"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Парадкаваць тэкст"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Уставіць табліцу: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Ператварыць тэкст у табліцу"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Ператварыць табліцу ў тэкст"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Капіраваць: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Замяніць $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Уставіць разрыў старонкі"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Уставіць разрыў калонкі"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Уставіць канверт"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Капіраваць: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Перамясціць: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Уставіць дыяграму %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Уставіць рамку"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Сцерці рамку"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Аўта-фармат"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Загаловак табліцы"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Замяніць: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Уставіць раздзел"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Сцерці раздзел"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Правіць раздзел"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Правіць прадвызначаныя настаўленні"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Замяніць стыль: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Сціранне разрыву старонкі"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Карэкцыя тэкста"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Павысіць/панізіць у структуры"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Перамясціць у структуры"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Уставіць нумараванне"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Павысіць узровень"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Панізіць узровень"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Перамясціць абзацы"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Уставіць рысаваны аб'ект: $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Нумараванне, так/не"
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Павялічыць водступ"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Паменшыць водступ"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Уставіць подпіс: $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Новы пачатак нумароў"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Правіць зноску"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Прыняць праўку: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Адкінуць змену: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Падзяліць табліцу"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Спыніць дзеянне атрыбута"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Аўта-карэкцыя"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Аб'яднаць табліцу"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Змяненне рэгістру літар"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Сцерці нумараванне"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Рысаваныя аб'екты: $1"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Згрупаваць рысаваныя аб'екты"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Адгрупаваць рысаваныя аб'екты"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Сцерці рысаваныя аб'екты"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Замяніць відарыс"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Сцерці відарыс"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Ужыць атрыбуты табліцы"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Аўта-фармат табліцы"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Уставіць калонку"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Уставіць радок"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Сцерці калонку ці радок"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Сцерці калонку"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Сцерці радок"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Падзяліць клеткі"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Аб'яднаць клеткі"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Фарматаваць клетку"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Уставіць індэкс"
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Сцерці індэкс"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Капіраваць табліцу"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Капіраваць табліцу"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Наставіць курсор"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Правіць настаўленні зноскі"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Параўнаць дакумент"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Ужыць стыль рамкі: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Настаўленне фанетычнага гіда"
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Уставіць зноску"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "Уставіць кнопку URL"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Уставіць спасылку"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "сцерці нябачнае змесціва"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Табліца ці індэкс зменены"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "множнае пазначэнне"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Упісванне: $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Устаўка з Абменніка"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "выпадкаў"
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -4970,7 +5025,7 @@ msgstr[1] ""
msgstr[2] ""
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -4979,308 +5034,308 @@ msgstr[1] ""
msgstr[2] ""
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "разрыў старонкі"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "разрыў калонкі"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Уставіць $1"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Сцерці $1"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Атрыбуты зменены"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Табліца зменена"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Стыль зменены"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Фармат абзаца зменены"
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Уставіць радок"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Сцерці радок"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Уставіць клетку"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Сцерці клетку"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 зменаў"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Правіць стыль старонкі: $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Стварыць стыль старонкі: $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Сцерці стыль старонкі: $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Назваць стыль старонкі: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Верхні ці ніжні калантытул зменены"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Поле зменена"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Стварыць стыль абзаца: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Сцерці стыль абзаца: $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Назваць стыль абзаца: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Стварыць стыль знакаў: $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Сцерці стыль знакаў: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Назваць стыль знакаў: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Стварыць стыль рамак: $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Сцерці стыль рамак: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Назваць стыль рамак: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Стварыць стыль нумаравання: $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Сцерці стыль нумаравання: $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Назваць стыль нумаравання: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Назваць закладку: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Уставіць складнік індэкса"
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Сцерці складнік індэкса"
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "поле"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr ""
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Абзацы"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "рамка"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "аб'ект OLE"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "формула"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "дыяграма"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "заўвага"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "крыжаваная спасылка"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "скрыпт"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "складнік бібліяграфіі"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "адвольны знак"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "зноска"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "відарыс"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "рысаваны аб'ект(ы)"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "табліца: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5289,1665 +5344,1665 @@ msgstr[1] ""
msgstr[2] ""
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "абзац"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Знак абзаца"
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Змяніць назву аб'екта $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Стварыць стыль табліцы: $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Сцерці стыль табліцы: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Абнавіць стыль табліцы: $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Сцерці табліцу"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr ""
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Від: дакумент"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Від: дакумент"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Верхні калантытул $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Верхні калантытул, старонка $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Ніжні калантытул $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Ніжні калантытул, старонка $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Зноска $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Зноска $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Затэкставая зноска $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Затэкставая зноска $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) на старонцы $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Старонка $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Старонка: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Аўтар"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Дата"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr ""
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Дзеянні"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "Гэтая кнопка адкрывае спіс дзеянняў, якія можна зрабіць над гэтай і над іншымі заўвагамі"
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Перадпаказ дакумента"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(рэжым перадпаказу)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "Дакумент %PRODUCTNAME"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Памылка чытання"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Немагчыма паказаць відарыс."
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Памылка пры чытанні з Абменніку."
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Адвольны разрыў калонкі"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Радок %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Калонка %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Знак"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Рамка"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Старонкі"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "Нумараванне"
+msgid "List"
+msgstr ""
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Табліца"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Клетка"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Азіяцкае"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "С.Т.В."
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Заходнія"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Змесціва"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "Фон ~старонак"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr ""
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Нябачны тэкст"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "Намеснікі тэксту"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Кантрольнікі фармуляра"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Колер"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Друкаваць тэкст чорным"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr ""
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Друкаваць аўтаматычна ўстаўленыя пустыя старонкі"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Папера толькі з падачы, запісанай у настаўленнях прынтара"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Нічога (толькі дакумент)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Толькі заўвагі"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "За канцом дакумента"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "У канцах старонак"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "Каментарыі"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Брашура"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Пісьмо злева-направа"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Пісьмо справа-налева"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr ""
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr ""
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Змясціць на палях"
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Функцыі"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Нічога"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Ужыць"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Стужка формул"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Тып формулы"
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Тэкст формулы"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "Агульны від"
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Від для навігацыі па змесце"
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Узровень структуры"
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Лад \"перацягвання\""
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr ""
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr ""
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr ""
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr ""
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr ""
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr ""
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr ""
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr ""
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Уставіць як сеціўную спасылку"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Уставіць як спасылку"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Уставіць як копію"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Паказаць"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Актыўнае акно"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "схаваны"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "актыўны"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "неактыўны"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Правіць..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Абнавіць"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Правіць"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Правіць спасылку"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Уставіць"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Паказальнік"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "Файл"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Стварыць дакумент"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Тэкст"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Сцерці"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Сцерці"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Пазначанае"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Індэксы"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Спасылкі"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Усё"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "схаваны"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Файл не знойдзены: "
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr ""
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Злева: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Справа: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Унутры: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Звонку: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Зверху: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". Знізу: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Старонка"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Радок"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Аўтар"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Памылка сінтаксісу **"
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Дзяленне на нуль **"
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Няправільна ўжытыя дужкі ** "
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Перапаўненне пры квадратаванні **"
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Перапаўненне **"
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Памылка **"
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Недапушчальны выраз **"
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Памылка: не знойдзена ўзорная крыніца"
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Няма"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(фіксавана)"
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Дз: %3 г: %4 м: %5 с: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Алфавітны індэкс"
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Вызначана-карыстальнікам"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Змест"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Бібліяграфія"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Цытата"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Спіс табліц"
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Спіс аб'ектаў"
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr ""
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Назва"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Тэма"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Ключавыя словы"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Заўвагі"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Створана"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Зменена"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Друкаваўся"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Нумар перагляду"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Агульны час рэдагавання"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Ператварыць $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Найперш ператварыць $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Далей ператварыць $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Артыкул"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Кніга"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Брашура"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Матэрыялы канферэнцыі"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Фрагмент кнігі"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Фрагмент кнігі з загалоўкам"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Справаздача канферэнцыі"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Журнал"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Тэхн. дакументацыя"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Дысертацыя (тэзіс)"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Рознае"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Дысертацыя (манаграфія)"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Матэрыялы канферэнцыі"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Справаздача па даследаваннях"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Непублікаванае"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr ""
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Старонка WWW"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Сваё 1"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Сваё 2"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Сваё3"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Сваё 4"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Сваё 5"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Кароткая назва"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Тып"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Адрас"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Анатацыя"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Аўтар(ы)"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Назва кнігі"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Частка"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Рэдакцыя"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Рэдактар"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Тып публікацыі"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Установа"
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Часопіс"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Месяц"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Заўвага"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Нумар"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Установа"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Старонка(і)"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Выдавец"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Універсітэт"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Серыя"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Назва"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Тып справаздачы"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Том"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Год"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Сваё1"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Сваё2"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Сваё3"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Сваё4"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Сваё5"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Правіць складнік індэкса"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Уставіць складнік індэкса"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "У дакуменце ўжо прысутнічае такі складнік бібліяграфіі, але з іншымі данымі. Ці хочаце ўзгадніць наяўныя складнікі?"
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Заўвагі"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Паказваць заўвагі"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Не паказваць заўвагі"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Такая назва скароту ўжо занята. Выберыце іншую назву."
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Сцерці Аўта-тэкст?"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Сцерці катэгорыю "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Аўта-тэкст :"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Запісаць Аўта-тэкст"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "У гэтым файле няма Аўта-тэксту."
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "Свой Аўта-тэкст"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Не знойдзены Аўта-тэкст для Скарота '%1'"
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Немагчыма ўставіць табліцу без радкоў або калонак"
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Немагчыма ўставіць табліцу, занадта вялікая"
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Не ўдалося стварыць Аўта-тэкст."
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "Гэты фармат Абменніка не апрацоўваецца."
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr ""
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr ""
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Усе заўвагі"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Усе заўвагі"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Заўвагі аўтарства "
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(без даты)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(без аўтара)"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Адказ $1"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Рэдагаваць адрасны блок"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Персаналізаванае прывітанне (для мужчын)"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Персаналізаванае прывітанне (для жанчын)"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Элементы формы звароту"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Дадаць да прывітання"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Прыбраць з прывітання"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. Перацягніце элемент прывітання ў поле ніжэй"
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Вітанне"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Знак прыпынку"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Тэкставы"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Пастаўце палі з крыніцы даных у адпаведнасці з элементамі формы звароту."
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Перадпаказ формы звароту"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Элементы адрасу"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Элементы формы звароту"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Адпавядае полю:"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Перадпаказ"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " яшчэ без адпаведнасці "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Усе файлы"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Спісы адрасаў(*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Просты тэкст (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Тэкст, межаваны коскамі (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb;*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -6956,91 +7011,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "Адрасавы спіс %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr ""
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr ""
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr ""
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr ""
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr ""
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr ""
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "Выключыць атрымальніка"
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "Скончыць"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Майстар памнажэння пошты"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Табліца"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Зварот"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Ці працягваць праверку ад пачатку дакумента?"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Спраўджванне правапісу скончана."
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr ""
@@ -7050,252 +7105,252 @@ msgstr ""
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Дата"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Час"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Назва файла"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Назва базы даных"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Частка"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr ""
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Статыстыка"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Аўтар"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Шаблоны"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Адпраўнік"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Наставіць зменную"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Паказаць зменную"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Уставіць формулу"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Поле ўводу"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Поле ўводу (зменная)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Поле ўводу (карыст.)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Узгоднены тэкст"
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "Поле DDE"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Выканаць макрас"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Абсяг лікаў"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Наставіць зменную старонкі"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Паказаць зменную старонкі"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Адкрыць URL"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Намеснік"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Спалучаць знакі"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Спіс уводу"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Наставіць спасылку"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Уставіць спасылку"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Палі памножанай пошты"
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Наступны запіс"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Адвольны запіс"
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Нумар запісу"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Папярэдняя старонка"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Наступная старонка"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Нябачны тэкст"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Поле карыстальніка"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Заўвага"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Скрыпт"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Складнік бібліяграфіі"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Нябачны абзац"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Звесткі аб дакуменце"
@@ -7304,87 +7359,87 @@ msgstr "Звесткі аб дакуменце"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Дата"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Дата (фікс.)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Час"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Час (фікс.)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Табліцы"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Знакі"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Словы"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Абзацы"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Відарыс"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Аб'екты"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Старонкі"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "Аўтаматычна з DDE"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "Неаўтаматычна з DDE"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Тэкст]"
@@ -7393,103 +7448,103 @@ msgstr "[Тэкст]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Кампанія"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Імя"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Прозвішча"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Ініцыялы"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Вуліца"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Краіна"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Паштовы індэкс"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Горад"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Загаловак"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Пазіцыя"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Тэл. (хатні)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Тэл. (прац.)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr ""
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr ""
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Адм.адзінка"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "не"
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "(калі)"
@@ -7499,37 +7554,37 @@ msgstr "(калі)"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Назва файла"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Назва файла без канчатку"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Шлях і назва файла"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Шлях"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr ""
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Катэгорыя"
@@ -7538,25 +7593,25 @@ msgstr "Катэгорыя"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Назва часткі"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Нумар часткі"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Нумар часткі без межніка"
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Нумар і назва часткі"
@@ -7565,55 +7620,55 @@ msgstr "Нумар і назва часткі"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Рымскія (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Рымскія (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Арабскія (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Як у стылі старонкі"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Тэкст"
@@ -7622,13 +7677,13 @@ msgstr "Тэкст"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Назва"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Ініцыялы"
@@ -7637,49 +7692,49 @@ msgstr "Ініцыялы"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Сістэмны"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Тэкст"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Назва"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Тэкст"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Формула"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Тэкст"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "База даных"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Сістэма"
@@ -7688,19 +7743,19 @@ msgstr "Сістэма"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Аўтар"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Час"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Дата"
@@ -7709,79 +7764,79 @@ msgstr "Дата"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "Спасылка"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Старонка"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Частка"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "Над/пад"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "Як у стылі старонкі"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Катэгорыя і нумар"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Тэкст подпісу"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Нумараванне"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Нумар"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Лік без кантэксту"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Лік з поўным кантэкстам"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr ""
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr ""
@@ -7790,31 +7845,31 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Тэкст"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Табліца"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Рамка"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Відарыс"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Аб'ект"
@@ -7823,1499 +7878,1499 @@ msgstr "Аб'ект"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "Умова"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Тады, Іначай"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "Інструкцыя DDE"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Нябачны тэкст"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Назва макрасу"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "Спасылка"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Знакі"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "Зрух"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Значэнне"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Формула"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Свой"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Карыстальнік]"
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "Гарыз. адлегл."
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "Верт. адлегл."
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Шырыня"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Вышыня"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Поле злева"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Поле зверху"
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Калонкі"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Радкі"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Падлік слоў і знакаў. Націсніце, каб адкрыць дыялог «Колькасць слоў»."
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Аднастаронкавы від"
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Шматстаронкавы від"
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Кніжны від"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr ""
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr ""
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Стыль старонкі. Правая кнопка мышы - змяніць стыль, націсканне - дыялог Стылі."
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Буквіца над"
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "радкі"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Без буквіцы"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Без зрэзу старонкі"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Не адлюстроўваць"
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Адлюстраваць вертыкальна"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Адлюстраваць гарызантальна"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Адлюстраваць па гарызанталі і вертыкалі"
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ адлюстроўваць у гарызанталі на цотных старонках"
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Стыль знакаў"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Без стылю знакаў"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Ніжні калантытул"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Без ніжняга калантытула"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Верхні калантытул"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Без верхняга калантытула"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr ""
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr ""
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Наскрозь"
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr ""
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr ""
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr ""
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Толькі мацаванне)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Шырыня:"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Фіксаваная вышыня:"
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Мін. вышыня:"
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "да абзацу"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "да знаку"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "да старонкі"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Каардыната X:"
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Каардыната Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "уверсе"
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Раўнаванне да паловы вышыні"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "унізе"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Верх радка"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Цэнтр вышыні радка"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Ніз радка"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "справа"
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Раўнаванне ў цэнтры"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "злева"
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "унутры"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "звонку"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Поўная шырыня"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Калонкі"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Шырыня межніка:"
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Макс. абсяг зносак:"
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Можна правіць у толькі-чытаным дакуменце"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Падзяліць"
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "Нумараванне"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr ""
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "без нумаравання"
+msgid "List Style: (None)"
+msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "злучана з "
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "і "
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Лічыць радкі"
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "не лічыць радкі"
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "нанова лічыць радкі з: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Яркасць: "
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Чырвоны: "
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Зялёны: "
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Сіні: "
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Кантраст: "
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Гама: "
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Празрыстасць: "
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Інвэртаваць"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "не інвертаваць"
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Рэжым графікі: "
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Стандартна"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Шэрыя адценні"
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Чорна-белае"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Вадзяны знак"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Паварот"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Без рашоткі"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Рашотка (толькі для радкоў)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Рашотка (для радкоў і знакаў)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Следаваць плыні тэксту"
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Не следаваць плыні тэксту"
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Яднаць межы"
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Не яднаць межы"
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "Табліца"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "Старонка"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Рысунак"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Кантрольнік"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
msgctxt "ST_REG"
msgid "Section"
msgstr "Раздзел"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Закладка"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Графіка"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Аб'ект OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Загалоўкі"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Пазначанае"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Зноска"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Напамінак"
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Заўвага"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Паўтарыць пошук"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Элемент паказальніка"
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Формула табліцы"
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Няправільная формула табліцы"
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Наступная табліца"
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Наступная старонка"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Наступны рысунак"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Наступны кантрольнік"
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Наступны раздзел"
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Наступная закладка"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Наступны відарыс"
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Наступны аб'ект OLE"
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Наступны загаловак"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Наступнае пазначэнне"
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Наступная зноска"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Наступны напамін"
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Наступная заўвага"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Працягваць пошук наперад"
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Наступны элемент паказальніка"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Папярэдняя табліца"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Папярэдняя старонка"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Папярэдні рысунак"
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Папярэдні кантрольнік"
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Папярэдні раздзел"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Папярэдняя закладка"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Папярэдні відарыс"
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Папярэдні аб'ект OLE"
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Папярэдні загаловак"
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Папярэдняе пазначэнне"
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Папярэдняя зноска"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Папярэдні напамін"
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Папярэдні каментарый"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Працягваць пошук назад"
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Папярэдні элемент паказальніка"
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Папярэдняя формула табліцы"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Наступная формула табліцы"
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Папярэдняя хібная формула табліцы"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Наступная хібная формула табліцы"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Устаўлена"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Сцёрта"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Адфарматавана"
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Табліца зменена"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Ужыты стылі абзацаў"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Фармат абзаца зменены"
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Радок устаўлены"
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Радок сцёрты"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Клетка ўстаўлена"
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Клетка сцёрта"
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Зноска затэкставая:"
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Зноска: "
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s+клік, каб адкрыць магчымасці разумных метак"
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Верхні калантытул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Верхні калантытул першай старонкі (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Верхні калантытул левай старонкі (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Верхні калантытул правай старонкі (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Ніжні калантытул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Ніжні калантытул першай старонкі (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Ніжні калантытул левай старонкі (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Ніжні калантытул правай старонкі (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Сцерці верхні калантытул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Фарматаваць верхні калантытул..."
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Сцерці ніжні калантытул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Фарматаваць ніжні калантытул..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Немагчыма адкрыць файл відарыса"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Немагчыма прачытаць файл відарыса"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Нявызначаны фармат відарыса"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Не падтрымліваецца гэта версія графічнага файла"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Фільтр відарысаў не знойдзены"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Недастаткова памяці, каб уставіць відарыс."
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Уставіць відарыс"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Заўвага: "
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Устаўленне"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Сціранне"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Аўта-карэкцыя"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Змены табліцы"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Ужыты стылі абзацаў"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Старонка "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Старонка %1 з %2"
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Старонка %1 з %2 (старонка %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Відарыс"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Аб'ект OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Рамка"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Табліца"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Радок табліцы"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Клетка табліцы"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Старонка"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Калантытул верхні"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Калантытул ніжні"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Дакумент HTML %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Загаловак"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Межнік"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Узровень "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Не ўдалося знайсці файл \"%1\" на сцежцы \"%2\"."
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Свой індэкс"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Няма>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Няма>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Нумар раздзела"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Элемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Крок табуляцыі"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Тэкст"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Нумар старонкі"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Інфармацыя аб раздзеле"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Пачатак гіперспасылкі"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Канец гіперспасылкі"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Складнік бібліяграфіі: "
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Стыль знакаў: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Тэкст структуры"
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Націсніце Ctrl+Alt+A для дадатковых аперацый"
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Націсніце левую або правую стрэлку, каб выбраць элемент структуры"
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Націсніце Ctrl+Alt+B для вяртання фокуса к цяперашняму кантрольніку структуры"
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Файл выбранага для алфавітнага індэкса (*.sdi)"
@@ -9324,259 +9379,259 @@ msgstr "Файл выбранага для алфавітнага індэкса
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Базавая лінія зверху"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Базавая лінія знізу"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Базавая лінія ў цэнтры"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Уставіць аб'ект"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Правіць аб'ект"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Шаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Межы"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Фон"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Стыль абзацу: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Недазволеныя нумары для гэтай старонкі. Цотныя нумары ўжываюцца на левых старонках, няцотныя - на правых."
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "Майстар-дакумент %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "Далучэнне да файла знішчыць змесціва гэтага раздзелу. Ці працягваць?"
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Уведзены няправільны пароль."
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Пароль не зададзены."
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Расстаноўка пераносаў скончана"
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Няма (без праверкі правапісу)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Да прадвызначанай мовы"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Яшчэ..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ігнараваць"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Тлумачэнні..."
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Праверка спецыяльных абсягаў адключана. Праверыць усё роўна?"
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Не ўдалося аб'яднаць дакументы."
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Немагчыма адчытаць зыходны тэкст."
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "У пункце 'Прылады/Настаўленні/%1/Друкаваць' не вызначаны прынтар для факсаў."
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Дакумент HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Тэкставы дакумент"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Крыніца не ўказана."
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Узровень "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Структура "
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Правіць зноску ці затэкставую зноску"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Шуканае заменена XX разоў."
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Радок "
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Калонка "
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Экспартаваць зыходны тэкст..."
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Экспартаваць копію крыніцы..."
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Працягваць"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Адсыланне: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Паспяхова адаслана"
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Не ўдалося адаслаць"
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Тэкставая формула"
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9585,7 +9640,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Класіфікацыя дакумента зменена, таму што узровень класіфікацыі абзаца вышэй"
@@ -9594,121 +9649,121 @@ msgstr "Класіфікацыя дакумента зменена, таму ш
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Сапраўдна"
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Нядзейсна"
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Несапраўдны подпіс"
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Падпісана"
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Подпіс абзаца"
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Візітныя карткі"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Уставіць"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Сцерці"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрыбуты"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Пошук тэксту"
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Альтэрнатыўны элемент"
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-ы ключ"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-і ключ"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Заўвагі"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Адрозніваць рэгістр"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Толькі слова"
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Так"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Не"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Свой"
@@ -9839,6 +9894,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "Дадаць неразрыўны прагал"
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr ""
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -20206,289 +20267,289 @@ msgid "Text"
msgstr ""
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Пераключыць від: майстар-элементы"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr ""
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr ""
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Від для навігацыі па змесце"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr ""
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Загаловак"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr ""
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Падвал"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr ""
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Мацаванне<->Тэкст"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr ""
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Наставіць нагадванне"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr ""
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Паказваць узроўні загалоўкаў"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr ""
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Паказваць спісавы бокс"
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr ""
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Павысіць узровень"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Панізіць узровень"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr ""
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Павысіць узровень часткі"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Панізіць узровень часткі"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr ""
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Лад \"перацягвання\""
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr ""
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Дакумент"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Актыўнае акно"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Пераключыць від: майстар-элементы"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr ""
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Змяніць"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr ""
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Абнавіць"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr ""
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Уставіць"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr ""
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Запісаць змесціва таксама"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr ""
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Пасунуць уверх"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr ""
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Пасунуць уніз"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr ""
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr ""
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr ""
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr ""
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr ""
@@ -20530,181 +20591,181 @@ msgid "~File"
msgstr ""
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -21748,20 +21809,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "Запісаць як"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr ""
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Shows the current saved format names."
msgstr ""
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr ""
+
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
msgstr ""
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "Фармат"
@@ -21772,212 +21845,224 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr "Узровень у структуры:"
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
msgstr ""
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr ""
+
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr ""
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr "Узровень 1"
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr "Узровень 2"
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr "Узровень 3"
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr "Узровень 4"
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr "Узровень 5"
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr "Узровень 6"
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr "Узровень 7"
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr "Узровень 8"
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr "Узровень 9"
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "Узровень 10"
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr ""
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "Структура"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
msgstr ""
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
msgstr ""
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr ""
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "Няма"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
msgstr ""
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "Правіць стыль"
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
msgstr ""
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
msgstr ""
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
msgstr ""
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr ""
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "Пачаць з:"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr ""
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr ""
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
+msgid "Apply List Style"
msgstr ""
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "Улучаць абзац у нумараванне радкоў"
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr ""
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "Нанова з гэтага абзацу"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr ""
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "Пачаць з:"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr ""
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "Нумараванне радкоў"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
msgstr ""
@@ -27968,10 +28053,10 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr ""
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
+msgid "Specify the character style for the selected part on the Structure line."
msgstr ""
#. 5nWPi
@@ -28226,10 +28311,10 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr "Стыль знакаў для асноўных складнікаў"
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
msgstr ""
#. r33aA
diff --git a/source/be/uui/messages.po b/source/be/uui/messages.po
index e3964752026..6558ac7e41d 100644
--- a/source/be/uui/messages.po
+++ b/source/be/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
"PO-Revision-Date: 2018-03-28 15:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,31 +17,31 @@ msgstr ""
"X-POOTLE-MTIME: 1522251407.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr "Аварыйны супын аперацыі над $(ARG1)."
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr "Не дазволены доступ да $(ARG1)."
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "$(ARG1) ужо існуе."
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Мэта ўжо існуе."
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -53,7 +53,7 @@ msgstr ""
"якія занадта вялікія, каб запісваць іх у бінарным фармаце. Калі вы жадаеце, каб карыстальнікі, якія не маюць доступу да паролю бібліятэкі, усё ж маглі б пускаць макрасы з гэтага модуля ці модуляў, трэба падзяліць гэты модуль ці модулі на некалькі меншых. Дык ці жадаеце працягваць запіс ці экспартаванне гэтай бібліятэкі?"
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -66,289 +66,289 @@ msgid ""
msgstr ""
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr "Даныя ад $(ARG1) маюць несапраўдную кантрольную суму."
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr "Немагчыма стварыць аб'ект $(ARG1) у каталогу $(ARG2)."
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr "Не ўдалося прачытаць даныя з $(ARG1)."
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr "Не ўдалося зрабіць пазіцыянаванне (seek) ў $(ARG1)."
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr "Не ўдалося атрымаць звесткі пра пазіцыю (tell) ў $(ARG1)."
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr "Не ўдалося запісаць даныя $(ARG1)."
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr "Немагчыма выканаць: $(ARG1) з'яўляецца актыўным каталогам."
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr "$(ARG1) не гатовы."
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr "Немагчыма выканаць: $(ARG1) і $(ARG2) гэта розныя прыстасаванні (дыскі)."
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr "Памылка уводу/вываду (агульная) пры звароце да $(ARG1)."
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr "Недапушчальны спосаб звароту да $(ARG1)."
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "Недапушчальныя знакі ў $(ARG1)."
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr "Несапраўднае прыстасаванне (дыск) $(ARG1)."
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr "Недапушчальны аб'ём/даўжыня даных з $(ARG1)."
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr "Недапушчальны параметр аперацыі над $(ARG1)."
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr "Не ўдалося выканаць, таму што $(ARG1) утрымлівае шаблонавыя выразы."
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr "Памылка пры супольным карыстанні $(ARG1)."
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "$(ARG1) утрымлівае няправільна расстаўленыя знакі."
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "Назва $(ARG1) утрымлівае зашмат знакаў."
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "$(ARG1) не існуе."
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "Шлях $(ARG1) не існуе."
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr "Аперацыі над $(ARG1) не падтрымліваюцца ў гэтай аперацыйнай сістэме."
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "$(ARG1) не каталог."
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "$(ARG1) не файл."
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr "Няма месца на прыстасаванні (дыску) $(ARG1)."
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr "Немагчыма выканаць аперацыю над $(ARG1), таму што занадта многа файлаў ужо адкрыта."
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr "Немагчыма выканаць аперацыю над $(ARG1), таму што няма незанятай памяці."
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr "Немагчыма працягваць аперацыю над $(ARG1), таму што застаюцца яшчэ даныя."
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr "Немагчыма капіраваць $(ARG1) сам на сябе."
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr "Памылка уводу/вываду (невядомая) пры звароце да $(ARG1)."
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "$(ARG1) засцерагаецца ад запісу."
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "Недапушчальны фармат $(ARG1)."
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "Недапушчальная версія $(ARG1)."
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "Дыск $(ARG1) не існуе."
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "Каталог $(ARG1) не існуе."
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr "Устаноўленая версія Java не падтрымліваецца."
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr "Устаноўленая версія Java $(ARG1) не падтрымліваецца."
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr "Устаноўленая версія Java не падтрымліваецца, патрабуецца версія мінімум $(ARG1)."
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr "Устаноўленая версія Java $(ARG1) не падтрымліваецца, патрабуецца версія мінімум $(ARG2)."
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr "Пашкоджаныя даныя, асацыяваныя з партнёрствам*."
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr "Пашкоджаныя даныя, асацыяваныя з партнёрствам $(ARG1)."
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr "Том (дыскавы) $(ARG1) не гатовы."
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr "$(ARG1) не гатовы; устаўце носьбіт."
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr "Том (дыскавы) $(ARG1) не гатовы; устаўце носьбіт."
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr "Устаўце дыск $(ARG1)."
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr "Немагчыма стварыць аб'ект у каталогу $(ARG1)."
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr "Калі ўжываецца гэты пратакол перасылання, %PRODUCTNAME не мае магчымасці засцерагаць файлы ад сцірання. Ці будзеце працягваць?"
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -370,13 +370,13 @@ msgstr ""
"Ці трэба, каб %PRODUCTNAME выправіў файл?\n"
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "Не ўдалося адрамантаваць файл '$(ARG1)', таму ён не можа быць адкрыты."
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -386,7 +386,7 @@ msgstr ""
"Ці жадаеце дазволіць працягваць старт %PRODUCTNAME без уліку пашкоджаных настаўленняў?"
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -396,13 +396,13 @@ msgstr ""
"Ці жадаеце дазволіць працягваць старт %PRODUCTNAME без уліку пашкоджаных настаўленняў?"
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr "Крыніца даных настаўленняў '$(ARG1)' недасягальная. Без гэтых даных частка функцый можа працаваць некарэктна."
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -412,31 +412,31 @@ msgstr ""
"Ці жадаеце дазволіць працягваць старт %PRODUCTNAME без уліку недасягальных настаўленняў?"
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr "Форма ўтрымлівае недапушчальныя даныя. Дык ці будзеце працягваць?"
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr "Дакумент $(ARG1) заблакіраваны іншым карыстальнікам. Таму зараз немагчыма дазволіць яшчэ адну крыніцу запісу ў гэты файл."
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr "Дакумент $(ARG1) заблакіраваны вамі. Таму зараз немагчыма дазволіць яшчэ адну крыніцу запісу ў гэты файл."
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr "Дакумент $(ARG1) вамі зараз не заблакіраваны."
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -446,7 +446,7 @@ msgstr ""
"This can happen due to problems on the server managing the file lock. It cannot be guaranteed that write operations on this file will not overwrite changes done by other users!"
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -460,7 +460,7 @@ msgstr ""
" $(ARG1)."
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -472,7 +472,7 @@ msgstr ""
"Перад тым, як прыймаць гэты сертыфікат, трэба ўважліва праверыць сертыфікат гэтай пляцоўкі. Ці жадаеце прыняць гэты сертыфікат, каб атаясамліваць сеціўную пляцоўку $(ARG1)?"
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -484,13 +484,13 @@ msgstr ""
"Праверце, ці правільна выстаўлены час на вашым камп'ютары."
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr "Папярэджанне бяспекі: недапушчальны сертыфікат сервера"
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -506,13 +506,13 @@ msgstr ""
"Працягваць?"
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr "Папярэджанне бяспекі: сертыфікат сервера нядзейсны"
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -524,7 +524,7 @@ msgstr ""
"Калі сертыфікат здаецца вам падазроным, скасуйце далучэнне і паведаміце адміністратару сайта."
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr "Папярэджанне бяспекі: розныя дамены"
@@ -595,55 +595,55 @@ msgid "_Yes"
msgstr ""
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr "Упішыце пароль, каб адкрыць файл: \n"
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr "Упішыце пароль, каб змяніць файл: \n"
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "Увядзіце пароль:"
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr "Яшчэ раз пароль:"
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "Задаць пароль"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "Увядзіце пароль"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Паролі не супадаюць. Задайце пароль ізноў, увёўшы адзін і той жа пароль у абодва палі."
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Дакумент зараз заняты"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -652,19 +652,19 @@ msgid ""
msgstr ""
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толькі для чытання"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Адкрыць"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -673,61 +673,61 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "Паўтарыць спробу запісу"
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "Запісаць"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "Памятаць пароль да заканчэння сеанса"
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Памятаць пароль"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Нешыфраваныя струмяні*"
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "Немагчыма заблакаваць дакумент"
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr "%PRODUCTNAME не змог стварыць блакавальны файл для манапольнага доступу, бо там, дзе знаходзіцца файл, няма дазволу на стварэнне файла, або не хапае месца на дыску."
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толькі для чытання"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Дакумент зараз заняты"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -738,7 +738,7 @@ msgid ""
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -746,31 +746,31 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толь~кі для чытання"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Адкрыць копію"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Невядомы карыстальнік"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Дакумент зменены іншымі"
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -779,19 +779,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "Запісаць абавязкова"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Дакумент зараз заняты"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -802,7 +802,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -813,19 +813,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "Паўтарыць спробу запісу"
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "Запісаць як..."
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -835,7 +835,7 @@ msgstr ""
"Для замены наяўнага файла, выберыце Замяніць, або дайце новую назву."
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -845,55 +845,55 @@ msgstr ""
"Дайце іншую назву."
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Дайце іншую назву файлу!"
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Няправільны пароль. Немагчыма адкрыць дакумент."
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Няправільны пароль. Немагчыма змяніць дакумент."
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Няправільны майстар-пароль."
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Няправільны пароль."
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Не супадаюць пароль і ягоны паўтор."
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "Файл блакавання пашкоджаны"
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr "Файл блакавання пашкоджаны і, імаверна, пусты. Адкрыццё дакумента толькі для чытання і паўторнае закрыццё сцірае пашкоджаны блакавальны файл."
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толькі для чытання"
diff --git a/source/be/vcl/messages.po b/source/be/vcl/messages.po
index e75eac6f5d7..7c8eadcee96 100644
--- a/source/be/vcl/messages.po
+++ b/source/be/vcl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+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"
@@ -665,150 +665,138 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "Аднавіць"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr "Выпасці ўніз"
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr "Скруціцца ўверх"
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "Даведка"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr "Зрабіць і пракаментаваць здымак экрану"
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "Паказваць"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "Не паказваць"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "Закрыць дакумент"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "OK"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "Нічога"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "ОК"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "Нічога"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "Так"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "Не"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "Паўтарыць"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~Даведка"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "Закрыць"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "Больш"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "Ігнараваць"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "Спыніць"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "Менш"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "Запісаць"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "~Адкрыць"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr "Здымак экрана"
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -818,357 +806,357 @@ msgstr ""
"Пусціце праграму ўстаноўкі з параметрам рамонту (repair)*."
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "Пра %PRODUCTNAME"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "Настаўленні..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "Усякі тып"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "Аўтаматычна дапісваць канчатак назвы файла"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "Запісаць з паролем"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr "Зашыфраваць ключом ~GPG"
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "Правіць настаўленні фільтра"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "Толькі-чытанае"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "Уставіць як спасылку"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "Перадпаказ"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "Узнавіць"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "Версія:"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "Стылі:"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "Стыль рамкі: "
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr ""
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "Пазначанае"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "Выберыце шлях"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "Выберыце каталог."
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "Файл з назвай \"$filename$\" ужо існуе. Замяніць яго?"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr "Такі файл ужо існуе ў \"$dirname$\". Замяніўшы яго, вы перапішаце яго змесціва."
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "Усе фарматы"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "Адкрыць"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "Запісаць"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "Тып файла"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "Не ўдалося знайсці ўстаноўленых шрыфтоў."
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "Няма старонак"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "Друкаваць у файл..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "Прадвызначаны прынтар"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "Увядзіце нумар факса"
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Свой"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "Устаўлены тэкст перавышае дазволены максімум для гэтага поля. Тэкст быў абрэзаны."
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "Патокі ЦП: "
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "АС:"
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "Рэндэр ІК: "
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr "GL"
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "прадвызначана"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Інфармацыя"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "Перасцярога"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "Памылка"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Пацвярджэнне"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "сцерці радок"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "сцерці некалькі радкоў"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "уставіць некалькі радкоў"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "уставіць '$1'"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "сцерці '$1'"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/be/writerperfect/messages.po b/source/be/writerperfect/messages.po
index 480dd609946..33809e4c647 100644
--- a/source/be/writerperfect/messages.po
+++ b/source/be/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
+"POT-Creation-Date: 2021-03-23 11:46+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"
@@ -17,49 +17,49 @@ msgstr ""
"X-POOTLE-MTIME: 1525785953.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "Імпарт файла"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr ""
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr "Імпарт файла MS Works"
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr "Імпарт файла MS Write"
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr "Імпарт файла MS Word для DOS"
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "Імпарт файла Lotus"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr "Імпарт файла Symphony"
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr "Імпарт файла Quattro Pro"
diff --git a/source/bg/accessibility/messages.po b/source/bg/accessibility/messages.po
index bc0ede54c96..17b09c3a004 100644
--- a/source/bg/accessibility/messages.po
+++ b/source/bg/accessibility/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2017-10-05 21:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/accessibilitymessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1507237550.000000\n"
#. be4e7
@@ -79,64 +79,64 @@ msgstr "Ред %ROWNUMBER"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/avmedia/messages.po b/source/bg/avmedia/messages.po
index f63ac337c1f..bb7dfd9ffbb 100644
--- a/source/bg/avmedia/messages.po
+++ b/source/bg/avmedia/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2020-02-16 14:15+0000\n"
+"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/avmediamessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/avmediamessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1511821494.000000\n"
#. FaxGP
@@ -151,64 +151,64 @@ msgstr "Изглед"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/basctl/messages.po b/source/bg/basctl/messages.po
index 05db02f22f9..e6b32578f08 100644
--- a/source/bg/basctl/messages.po
+++ b/source/bg/basctl/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2020-10-02 06:35+0000\n"
+"PO-Revision-Date: 2021-03-14 21:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/basctlmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/basctlmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1554813050.000000\n"
#. fniWp
@@ -296,7 +296,7 @@ msgid ""
"Continue?"
msgstr ""
"Програмата трябва да бъде рестартирана след тази редакция.\n"
-"Продължение?"
+"Искате ли да продължите?"
#. 4qWED
#: basctl/inc/strings.hrc:72
@@ -578,67 +578,67 @@ msgstr "Разширение"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. GaJFV
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:26
diff --git a/source/bg/basic/messages.po b/source/bg/basic/messages.po
index cec7e568e5d..50db23bfedb 100644
--- a/source/bg/basic/messages.po
+++ b/source/bg/basic/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:12+0100\n"
-"PO-Revision-Date: 2017-10-05 21:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-02-26 09:36+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/basicmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1507237552.000000\n"
#. CacXi
@@ -782,67 +782,67 @@ msgstr "$(ARG1)"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. Vtc9n
#: basic/inc/strings.hrc:24
diff --git a/source/bg/chart2/messages.po b/source/bg/chart2/messages.po
index ea87491bfc8..26e1899f196 100644
--- a/source/bg/chart2/messages.po
+++ b/source/bg/chart2/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2020-10-16 06:35+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1562351695.000000\n"
#. NCRDD
@@ -43,67 +43,67 @@ msgstr "Пирамида"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. v9sqX
#: chart2/inc/strings.hrc:24
@@ -1295,7 +1295,7 @@ msgstr "Надписи на данните от всички серии"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:107
msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Value as _number"
-msgstr ""
+msgstr "Стойност като число"
#. sDLeD
#: chart2/uiconfig/ui/dlg_DataLabel.ui:115
@@ -1307,7 +1307,7 @@ msgstr "Показват се абсолютните стойности на т
#: chart2/uiconfig/ui/dlg_DataLabel.ui:126
msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Value as _percentage"
-msgstr ""
+msgstr "Стойност като процент"
#. 5Hp8E
#: chart2/uiconfig/ui/dlg_DataLabel.ui:134
@@ -1319,7 +1319,7 @@ msgstr "Показва процентната стойност на точкат
#: chart2/uiconfig/ui/dlg_DataLabel.ui:145
msgctxt "dlg_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "Категория"
#. oJGQF
#: chart2/uiconfig/ui/dlg_DataLabel.ui:153
@@ -1331,7 +1331,7 @@ msgstr "Показват се надписите на точките от диа
#: chart2/uiconfig/ui/dlg_DataLabel.ui:164
msgctxt "dlg_DataLabel|CB_SYMBOL"
msgid "_Legend key"
-msgstr ""
+msgstr "Ключ на легендата"
#. 7WADc
#: chart2/uiconfig/ui/dlg_DataLabel.ui:172
@@ -1385,13 +1385,13 @@ msgstr "Числов формат за процентна стойност"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:259
msgctxt "dlg_DataLabel|CB_DATA_SERIES_NAME"
msgid "_Series name"
-msgstr ""
+msgstr "Име на серия"
#. 8bEui
#: chart2/uiconfig/ui/dlg_DataLabel.ui:268
msgctxt "dlg_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
-msgstr ""
+msgstr "Показва името на серията от данни в надписа."
#. mFeMA
#: chart2/uiconfig/ui/dlg_DataLabel.ui:289
@@ -1535,7 +1535,7 @@ msgstr "Задава разделителя между няколко текст
#: chart2/uiconfig/ui/dlg_DataLabel.ui:407
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "Настройки на атрибути"
#. gE7CA
#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
@@ -3611,7 +3611,7 @@ msgstr "Изберете основния тип на диаграмата."
#: chart2/uiconfig/ui/tp_DataLabel.ui:39
msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Value as _number"
-msgstr ""
+msgstr "Стойност като число"
#. uGdoi
#: chart2/uiconfig/ui/tp_DataLabel.ui:47
@@ -3623,7 +3623,7 @@ msgstr "Показват се абсолютните стойности на т
#: chart2/uiconfig/ui/tp_DataLabel.ui:58
msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Value as _percentage"
-msgstr ""
+msgstr "Стойност като процент"
#. FcaPo
#: chart2/uiconfig/ui/tp_DataLabel.ui:66
@@ -3635,7 +3635,7 @@ msgstr "Показва процентната стойност на точкат
#: chart2/uiconfig/ui/tp_DataLabel.ui:77
msgctxt "tp_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "Категория"
#. EZXZX
#: chart2/uiconfig/ui/tp_DataLabel.ui:85
@@ -3647,7 +3647,7 @@ msgstr "Показват се надписите на точките от диа
#: chart2/uiconfig/ui/tp_DataLabel.ui:96
msgctxt "tp_DataLabel|CB_SYMBOL"
msgid "_Legend key"
-msgstr ""
+msgstr "Ключ на легендата"
#. Bm8gp
#: chart2/uiconfig/ui/tp_DataLabel.ui:104
@@ -3701,13 +3701,13 @@ msgstr "Числов формат за процентна стойност"
#: chart2/uiconfig/ui/tp_DataLabel.ui:191
msgctxt "tp_DataLabel|CB_DATA_SERIES_NAME"
msgid "_Series name"
-msgstr ""
+msgstr "Име на серия"
#. 3tWYv
#: chart2/uiconfig/ui/tp_DataLabel.ui:200
msgctxt "tp_DataLabel|extended_tip|CB_DATA_SERIES_NAME"
msgid "Shows the data series name in the label."
-msgstr ""
+msgstr "Показва името на серията от данни в надписа."
#. 3BZrx
#: chart2/uiconfig/ui/tp_DataLabel.ui:221
@@ -3851,7 +3851,7 @@ msgstr "Задава разделителя между няколко текст
#: chart2/uiconfig/ui/tp_DataLabel.ui:339
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "Настройки на атрибути"
#. avLCL
#: chart2/uiconfig/ui/tp_DataLabel.ui:391
@@ -5036,13 +5036,13 @@ msgstr "Броят точки за изчисляване на пълзящот
#: chart2/uiconfig/ui/tp_Trendline.ui:320
msgctxt "tp_Trendline|label10"
msgid "_Type"
-msgstr ""
+msgstr "Тип"
#. P6TjC
#: chart2/uiconfig/ui/tp_Trendline.ui:325
msgctxt "tp_Trendline|extended_tip|label10"
msgid "How the trend line is calculated."
-msgstr ""
+msgstr "Начин на изчисляване на регресионната крива."
#. ptaCA
#: chart2/uiconfig/ui/tp_Trendline.ui:378
@@ -5180,19 +5180,19 @@ msgstr "Настройки"
#: chart2/uiconfig/ui/tp_Trendline.ui:708
msgctxt "tp_Trendline|liststore_moving_type"
msgid "Prior"
-msgstr ""
+msgstr "Предишни"
#. ZxUZe
#: chart2/uiconfig/ui/tp_Trendline.ui:711
msgctxt "tp_Trendline|liststore_moving_type"
msgid "Central"
-msgstr ""
+msgstr "Центрирано"
#. 4CBxe
#: chart2/uiconfig/ui/tp_Trendline.ui:714
msgctxt "tp_Trendline|liststore_moving_type"
msgid "Averaged Abscissa"
-msgstr ""
+msgstr "Усреднена абсциса"
#. ntcUA
#: chart2/uiconfig/ui/tp_axisLabel.ui:19
diff --git a/source/bg/connectivity/messages.po b/source/bg/connectivity/messages.po
index 2dc8ff8904b..dbb05bb5aa4 100644
--- a/source/bg/connectivity/messages.po
+++ b/source/bg/connectivity/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2020-03-11 17:15+0000\n"
+"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/connectivitymessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivitymessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1536274064.000000\n"
#. 9KHB8
@@ -615,64 +615,64 @@ msgstr "Не може да се покаже цялото съдържание
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index 6e1ffca9144..009515548e2 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2020-12-20 12:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/bg/>\n"
"Language: bg\n"
@@ -85,67 +85,67 @@ msgstr "Текст"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. E6GDh
#: cui/inc/strings.hrc:23
@@ -1913,248 +1913,176 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Затваряща кавичка"
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "Премахване на кантовете"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "Поставяне кантове само отвън"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Поставяне външни кантове и хоризонтални линии"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Поставяне външни кантове и всички вътрешни линии"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Поставяне външни кантове без промяна на вътрешните линии"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Задаване само на диагонални линии"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "Поставяне и на четирите канта"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "Поставяне само на ляв и десен кант"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Поставяне само на горен и долен кант"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "Поставяне само на ляв кант"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Задаване на горен и долен кант и всички вътрешни линии"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Задаване на ляв и десен кант и всички вътрешни линии"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Без сянка"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Сянка надолу и надясно"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Сянка нагоре и надясно"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Сянка надолу и наляво"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Сянка нагоре и наляво"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Подписано от: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Всички файлове"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Регистрирани бази от данни"
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "URL адресът <%1> не може да се преобразува в път на файловата система."
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr "© 2000–2021 сътрудниците на LibreOffice."
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Това издание е предоставено от %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice е базиран на OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME е производен на LibreOffice, който е базиран на OpenOffice.org."
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "ПИ: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Редактиране на пътища: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Надпис"
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Команда"
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Подсказка"
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "URL адресът или текстът е твърде дълъг за текущото ниво на коригиране на грешки. Скъсете текста или намалете нивото на коригиране."
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "Можете да изтривате само потребителски цветове."
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Моля, изберете цвета за изтриване."
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "Инсталиране"
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "Инсталирано"
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "Инсталира се"
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "Търсене..."
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "Зареждане..."
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "Разширения"
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "Прилагане върху %MODULE"
@@ -2196,7 +2124,7 @@ msgstr "Пишете книга? %PRODUCTNAME ви позволява да бо
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "С %PRODUCTNAME можете да създавате редактируеми хибридни PDF файлове."
#. LBkjN
#: cui/inc/tipoftheday.hrc:55
@@ -2214,7 +2142,7 @@ msgstr "Искате да сумирате клетка през няколко
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create fillable form documents (even PDFs) with %PRODUCTNAME."
-msgstr ""
+msgstr "С %PRODUCTNAME можете да създавате формуляри за попълване (дори във формат PDF)."
#. BSUoN
#: cui/inc/tipoftheday.hrc:58
@@ -2293,7 +2221,7 @@ msgstr "С командата „Изглед ▸ Осветяване на ст
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create different master pages in a presentation template: View ▸ Master Slide and Slide ▸ New Master (or per toolbar or right click in slide pane)."
-msgstr ""
+msgstr "Можете да създавате различни страници образци в шаблон за презентация: „Изглед ▸ Кадър образец“ и „Кадър ▸ Нов образец“ (или лентата с инструменти, или щракване с десния бутон в панела с кадри)."
#. b3KPF
#: cui/inc/tipoftheday.hrc:71
@@ -2331,14 +2259,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr "Искате да покажете съдържанието на друг документ в текущия документ? Изберете „Вмъкване ▸ Раздел“ и отметнете „Връзка“."
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
-msgstr "За автоматично номериране на редовете от таблица в Writer изберете съответната колона и приложете стил за номерация от „Стилове за списъци“."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
+msgstr "За да се номерират автоматично редовете от таблица в Writer изберете съответната колона и приложете стил за списъци."
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2520,1071 +2449,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr "%PRODUCTNAME поддържа четири нива на безопасност на макросите (от ниско до много високо) и надеждни източници."
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr "%PRODUCTNAME възнамерява да кандидатства като организация за Google Summer of Code (GSoC), вижте:"
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr "Знаете ли, че можете да прикрепвате коментари към откъси от текст? Просто използвайте комбинацията %MOD1+%MOD2+C."
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr "Искате да преместите един или няколко абзаца? Няма нужда от копиране и поставяне: използвайте клавишната комбинация %MOD1+%MOD2+стрелка (нагоре/надолу)."
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr "Можете да смените основните шрифтове за предварително дефинирания шаблон или текущия документ с „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Основни шрифтове“."
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr "Искате да намерите думи с повече от 10 знака? „Редактиране ▸ Търсене и замяна ▸ Търсене“ ▸ [а-я]{10,} ▸ „Други настройки“ ▸ отметнете „Регулярни изрази“."
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "За да отворите CSV файл като нов лист в текущата електронна таблица, използвайте „Лист ▸ Лист от файл“."
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr "Когато въвеждате получер, курсивен или подчертан текст в Writer, можете да продължите с подразбираните атрибути, като натиснете %MOD1+Shift+X (премахване на преките знакови формати)."
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr "За да поставите съдържанието на клипборда като неформатиран текст, използвайте %MOD1+%MOD2+Shift+V."
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr "Можете да персонализирате външния вид на бележките под линия с „Инструменти ▸ Бележки под линия/в края…“."
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr "С „Прожекция ▸ Прожекция по избор“ можете да пренареждате и избирате кадри, за да приспособите прожекцията към конкретна публика."
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr "Искате да промените правописната проверка за част от текста? Щракнете върху зоната за език в лентата на състоянието или – още по-добре – приложете съответен стил."
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr "Writer може да вмъква празна страница между две последователни нечетни (четни) страници. Отметнете „Отпечатване на автоматичните празни страници“ в раздела „Writer“ на диалога за печат."
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr "Не искате да отпечатвате всички колони? Скрийте или групирайте нежеланите."
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr "За да промените презентация с автоизпълнение, отворете я и след като изпълнението започне, щракнете с десния бутон и изберете „Редактиране“ от контекстното меню."
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr "Искате да позиционирате прецизно? %MOD2+клавишите със стрелки местят обектите (фигури, изображения, формули) с по един пиксел."
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr "Ако сте инсталирали вградената помощ, тя е достъпна с натискане на F1. Иначе вижте онлайн на адрес:"
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr "Щракнете с десния бутон в лентата на състоянието в %PRODUCTNAME Calc и изберете „Брой избрани клетки“, за да видите броя на избраните клетки."
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr "Искате само част от страницата в %PRODUCTNAME Writer да е с две колони? „Вмъкване ▸ Раздел“, задайте необходимото в секцията „Колони“ и въведете текст в раздела."
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr "Използвайте „Данни ▸ Статистика“ в %PRODUCTNAME Calc за извадки, дескриптивна статистика, дисперсионен анализ, корелация и т.н."
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr "Можете да копирате от един лист към друг без клипборда. Изберете областта източник, щракнете с %MOD1 върху етикета на листа местоназначение и използвайте „Лист ▸ Запълване на клетки ▸ Запълване на листове“."
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr "Можете да променяте облика на %PRODUCTNAME с „Инструменти ▸ Настройки ▸ Изглед ▸ Потребителски интерфейс“."
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr "С командата „Вмъкване ▸ Мултимедия ▸ Фотоалбум“ в %PRODUCTNAME Impress можете да създадете прожекция от поредица изображения."
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 "За да виждате самите формули вместо резултатите им, изберете „Изглед ▸ Показване на формула“ (или „Инструменти ▸ Настройки ▸ %PRODUCTNAME Calc ▸ Изглед ▸ Визуализиране ▸ Формули“)."
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr "%PRODUCTNAME се разработва от дружелюбна общност, съставена от стотици сътрудници по целия свят. Присъединете се към нея със своите умения – не само програмиране."
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr "Левичар ли сте? Разрешете „Инструменти ▸ Настройки ▸ Езикови настройки ▸ Езици ▸ Азиатски“ и отметнете полето „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Изглед ▸ Скала ▸ Дясно подравняване“, за да преместите лентата за превъртане отляво."
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr "Искате заглавията на главите винаги да са на нова страница? Редактирайте абзацния стил „Заглавие 1“ ▸ „Изливане на текста ▸ Знаци за прекъсване“ и отметнете „Вмъкване ▸ Страница ▸ Преди“."
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr "Стойностите за дата/час представляват просто брой дни от избран нулев ден; цялата част на числото представя датата, а дробната част – часа (изминалата част от деня), като 0,5 означава пладне."
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr "Shift+%MOD1+Del изтрива от курсора до края на текущото изречение."
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr "Във формулите можете да използвате етикети на редове или колони. Например, ако имате две колони, „Време“ и „км“, с формулата =Време/км ще получите минутите за километър."
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr "Ако бягащият пунктир около клетки в Calc ви дразни, натиснете Escape, за да го изключите; копираното съдържание остава налице за поставяне."
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr "Искате ли да станете посланик на %PRODUCTNAME? Предлагаме сертифициране за разработчици, администратори и преподаватели."
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr "Можете да смесвате портретна и пейзажна ориентация в електронна таблица на Calc, като прилагате върху листовете различни стилове за страници."
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr "Щракнете върху иконата за специални знаци в лентата с инструменти, за да достигнете бързо до предпочитаните и последно използваните знаци за вмъкване."
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr "Изберете „Йерархичен изглед“ в страничната лента „Стилове и формати“, за да видите отношенията между стиловете."
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr "Можете да постигнете съгласуван облик на таблиците в документа, като използвате стилове. Изберете някой от готовите с командата „Стилове“ (F11) или „Таблица ▸ Автоформат“."
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr "Искате хипервръзките да се отварят само с натиснат клавиш %MOD1? „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Сигурност ▸ Настройки ▸ Проследяване на хипервръзки с %MOD1+щракване“."
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr "Ако искате да проследите изчисляването на отделни елементи от формула, изберете съответните елементи и натиснете F9."
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr "Можете да защитавате клетки с „Форматиране ▸ Клетки ▸ Защита“. За да предотвратите вмъкване, изтриване, преименуване и местене/копиране на листове, използвайте „Инструменти ▸ Защитаване на лист“."
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr "Искате да пишете по протежението на крива? Нарисувайте линията, щракнете двукратно върху нея, въведете текста и изберете „Форматиране ▸ Текстово поле и фигура ▸ Обект Fontwork“."
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr "Искате да виждате само най-високите стойности в електронна таблица? Изберете „Данни ▸ Автофилтър“, щракнете върху стрелката надолу и изберете „Първи 10“."
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr "За да премахнете номера на страница от съдържанието, изберете „Вмъкване ▸ Съдържание и указател“ (или „Редактиране“ от контекстното меню на вмъкнато преди това съдържание). В раздела „Елементи“ изтрийте номера на страница (#) от реда „Структура“."
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr "С навигатора можете да избирате и местите нагоре/надолу заглавия и съответния им текст в самия навигатор и в документа."
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr "За да да създадете бързо обект на Math в Writer, въведете формулата, маркирайте я и използвайте „Вмъкване ▸ Обект ▸ Формула“, за да преобразувате текста."
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr "В %PRODUCTNAME е много лесно да инсталирате нов речник: речниците се предлагат като разширения."
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr "%PRODUCTNAME има преносима версия, която ви осигурява мобилност. Дори без администраторски права за компютъра можете да инсталирате %PRODUCTNAME Portable на твърдия диск."
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr "Writer позволява отделна номерация на бележките под линия във всяка страница, глава или документ: „Инструменти ▸ Бележки под линия/в края ▸ Броене“."
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr "Документът на Writer не се е отворил с курсора върху последната редактирана позиция? Въведете собствено или фамилно име в „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Данни за потребител ▸ Име/фамилия“."
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr "Искате да организирате цитати? Използвайте разширение."
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr "Искате да вмъкнете стойност на едно и също място в няколко листа? Преди въвеждането изберете листовете, като задържите клавиша %MOD1 и щракнете върху етикетите им."
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr "Искате да скриете даден текст в документа? Изберете текста. „Вмъкване ▸ Раздел“, отметнете „Скриване“."
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr "Можете да персонализирате средния бутон на мишката с „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Изглед ▸ Среден бутон на мишката“."
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr "Искате да отпечатате две страници в ориентация „портрет“ върху една в „пейзаж“ (като ги смалите от A4 на A5)? Изберете „Файл ▸ Печат“ и задайте 2 за „Страници на лист“."
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr "За бърз достъп до показалците в документа щракнете с десния бутон върху номера на страница в лентата на състоянието (долния ляв ъгъл на прозореца с документа)."
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr "За да изберете обект във фона на документа, използвайте инструмента „Избор“ от лентата „Рисуване“ и оградете желания обект."
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr "Задайте текстовете, които използвате често, като автотекстове. Впоследствие ще можете да ги вмъквате по име, с клавишна комбинация или бутон от лентата с инструменти в произволен документ на Writer."
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr "За да придружите прожекцията с музика, присвоете звука на първия преход към кадър, без да натискате бутона „Прилагане върху всички кадри“."
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr "%PRODUCTNAME не изчислява от ляво надясно, а спазва реда скоби – степенуване – умножение – деление – събиране – изваждане."
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr "Документация за %PRODUCTNAME и безплатни книги с ръководства за потребители можете да намерите на адрес:"
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr "Искате да отстраните наведнъж всички двойки <>, но оградените текстове да останат? „Редактиране ▸ Търсене и замяна“: „Търсене“ = [<>], „Замяна“ = празно, отметнете „Регулярни изрази“ в областта „Други настройки“."
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr "Трябва ви презентация за отчет, написан с Writer? „Файл ▸ Изпращане ▸ План към презентация“ автоматично създава прожекция от плана."
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr "Искате да управлявате представянето на хипервръзки в електронна таблица? Вмъквайте ги с функцията HYPERLINK."
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr "Изчистете отметката от „Инструменти ▸ Настройки ▸ %PRODUCTNAME Calc ▸ Изглед ▸ Увеличение ▸ Синхронизиране на листите“, ако искате всеки лист в Calc да има отделен коефициент на увеличение."
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr "Можете да зададете цвят за етикета на всеки лист: щракнете с десния бутон върху него и изберете „Лист ▸ Цвят на етикет на лист“."
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr "Можете да проследявате клетките, използвани в дадена формула (Shift+F9), както и зависещите от нея (Shift+F5) (също с командата „Инструменти ▸ Детектив“). С всяко натискане преминавате към следващата стъпка по веригата."
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr "За да вмъкнете и номерирате формула в една стъпка, въведете fn, последвано от F3. Ще се вмъкне автотекст с формула и номер, подравнени в таблица."
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr "Можете да създадете индекс на илюстрациите не само от надписи, но и от имена на обекти."
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr "Можете да управлявате дистанционно презентацията си в Impres чрез телефон с Android или iPhone."
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr "Искате да знаете колко дни има в текущия месец? Използвайте функцията DAYSINMONTH(TODAY())."
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr "Числата в електронната ви таблица се виждат като ###? Колоната е твърде тясна, за да се покажат всички цифри."
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr "С командата „Инструменти ▸ Настройки ▸ OpenCL“ можете да разрешите масивно паралелно изчисляване на клетките с формули."
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr "С инструмента за свързващи линии от лентата „Рисунка“ в Draw/Impress можете да чертаете прегледни блоксхеми и по желание да копирате и поставяте резултата в Writer."
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr "Даренията ви подкрепят нашата общност по целия свят."
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr "Искате да прибавите x месеца към дата? Използвайте =EDATE(дата;месеци)."
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr "За да изберете непрекъснат диапазон от клетки с данни, ограден от празен ред и колона, натиснете %MOD1+* (от цифровия блок)."
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr "Шаблонът за разпознаване на дати е неподходящ? Можете да го промените с „Инструменти ▸ Настройки ▸ Езикови настройки ▸ Език ▸ Шаблони за разпознаване на дати“."
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr "Искате да експортирате формули към CSV? „Файл ▸ Записване като ▸ Тип“: „Текст с разделители (CSV)“, отметнете „Настройки на филтъра“ и в следващия диалог отметнете „Записване формули вместо изчислени стойности в клетките“."
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr "Конзолата за водещия е много полезна възможност при работа с %PRODUCTNAME Impress. Изпробвали ли сте я?"
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr "За да изтриете няколко коментара, изберете клетките с коментари и използвайте „Лист ▸ Коментари на клетки ▸ Изтриване на коментар“."
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr "За да преобразувате документ към PDF, просто щракнете върху иконата PDF в лентата с инструменти."
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr "Искате да изберете голям диапазон от клетки, без да превъртате през него? Въведете обръщение към диапазона (напр. A1:A1000) в полето за име и натиснете Enter."
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr "Искате ли да знаете кои са валидните параметри на командния ред? Стартирайте soffice с аргумент --help, -h или -?."
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr "За да поберете листа или диапазоните за печат в страницата, използвайте „Форматиране ▸ Страница ▸ Лист ▸ Режим на мащабиране“."
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
-msgstr "Искате неномериран елемент в списък? Използвайте „Вмъкване на неномерирана позиция“ в лентата „Водачи и номерация“."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgstr "Искате да включите в списък елемент без номер или водещ символ? Използвайте „Вмъкване на неномерирана позиция“ в лентата „Водачи и номерация“."
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr "Можете да въртите ориентацията на клетките в таблица с „Таблица ▸ Свойства… ▸ Изливане на текст ▸ Ориентация на текста“."
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr "В %PRODUCTNAME Draw, за да смените точката 0/0 на скалите, плъзнете пресечната точка на двете скали в горния ляв ъгъл на работната площ."
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr "Как да преместите колона в Calc между две други в една стъпка? Щракнете върху заглавието, после върху клетка в колоната, задръжте бутона на мишката и преместете до целта с натиснат %MOD2."
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr "Елементите на азбучния указател могат да се маркират автоматично с помощта на файл за съгласуване."
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr "За прецизно позициониране на обекти в Draw/Impress използвайте командата „Форматиране ▸ Подравняване“ (или контекстното меню): тя центрира спрямо страницата, ако е избран един обект, или съответно работи върху цялата група."
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr "Не намествайте елементи в Writer чрез знаци за табулация. В зависимост от целта ви, таблицата без кантове може да е по-добър избор."
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr "Не е необходимо да превъртате списъка в „Инструменти ▸ Персонализиране ▸ Клавиатура“, за да намерите дадена клавишна комбинация – просто я натиснете."
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr "%PRODUCTNAME може автоматично да добавя номериран надпис, когато вмъкнете обект. Вижте „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Автонадпис“."
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr "С %PRODUCTNAME можете да използвате акаунта си в Google Mail, за да разпратите циркулярно писмо. Попълнете „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Циркулярни писма по е-поща“."
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr "За да задържите заглавията на колоните в листа видими, докато превъртате редовете, изберете „Изглед ▸ Фиксиране на клетки ▸ Фиксиране на първия ред“."
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr "Искате да започнете да работите с макроси на Basic? Вижте примерите в „Инструменти ▸ Макроси ▸ Редактиране на макроси“."
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 "Можете да прилагате заглавни стилове на абзаци в Writer с клавишни комбинации: %MOD1+1 прилага „Заглавие 1“, %MOD1+2 – „Заглавие 2“ и т.н."
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr "Не се губете в големи документи. Използвайте навигатора (F5), за да се ориентирате в съдържанието им."
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr "„Редактиране ▸ Търсене и замяна“ ви позволява да вмъквате специални знаци директно: щракнете с десния бутон в някое входно поле или натиснете Shift+%MOD1+S."
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr "Искате да зададете ваши собствени свойства в метаданните? Можете да ги зададете в раздела „Файл ▸ Свойства ▸ Потребителски свойства“."
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr "Искате да виждате обект в Draw, но не и да го отпечатвате? Нарисувайте го на слой, за който настройката „Печата се“ е изключена (щракнете с десния бутон върху етикета на слоя, изберете „Промяна на слой“)."
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr "За да вмъкнете текущата дата в документа, използвайте „Вмъкване ▸ Поле ▸ Дата“."
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr "Твърде много изображения в документ на Writer? Ускорете визуализацията му, като изключите „Изглед ▸ Изображения и диаграми“."
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr "С командата „Лист ▸ Запълване на клетки ▸ Случайно число“ можете да създавате случайни поредици, базирани на различни статистически разпределения."
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr "Преименувайте кадрите в Impress, за да задавате по-лесно команди „Преминаване към страница“ и да получите по-информативно резюме от „Кадър1, Кадър2,…“."
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr "Диалогът за номериране на глави позволява добавяне на текст преди номера. Например, въведете „Глава “, за да се изпише „Глава 1“."
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr "Искате да транспонирате таблица в Writer? Копирайте я и я поставете в Calc, транспонирайте я с „Копиране“/„Специално поставяне“, после я прехвърлете обратно в Writer с „Копиране“/„Специално поставяне ▸ Форматиран текст“."
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr "За да виждате инструмента „Вертикален текст“ в лентата „Рисунка“, отметнете „Инструменти ▸ Настройки ▸ Езикови настройки ▸ Езици ▸ Подразбирани езици ▸ Азиатски“ (и направете бутона видим чрез контекстното меню)."
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr "За да увеличите бързо избрания диапазон, щракнете с десния бутон върху областта за увеличение в лентата на състоянието и изберете „Оптимален изглед“."
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr "Можете да подписвате съществуващи PDF файлове и да проверявате вече нанесени подписи."
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr "Често създавате нов документ от съществуващ? Обмислете използването на шаблон."
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr "С командата „Форматиране ▸ Условно форматиране ▸ Управление“ в Calc можете да откриете за кои клетки е зададено условно форматиране."
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr "Командата „Инструменти ▸ Детектив ▸ Отбелязване на невалидните данни“ осветява всички клетки в листа, които съдържат стойности извън ограниченията за валидност."
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr "Използвайте вграждане на шрифтове за по-добра съвместимост с други офис пакети с „Файл ▸ Свойства ▸ Шрифт“."
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr "За да преобразувате формула в статична стойност не е необходимо да копирате и поставяте; използвайте „Данни ▸ Изчисляване ▸ Формула към стойност“."
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr "Можете да преформатирате всички коментари в документ, като щракнете върху стрелката надолу в коментар и изберете „Форматиране на всички коментари“."
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr "Искате еднакво оформление на екрана и при печатане? Отметнете „Инструменти ▸ Настройки ▸ %PRODUCTNAME Calc ▸ Общи ▸ Форматиране на текста чрез метриките на принтера“."
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr "Writer ви помага да създавате резервни копия: с „Файл ▸ Записване на копие“ създавате нов документ и продължавате да работите върху оригинала."
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr "Когато сте създали стил, базиран върху друг стил, можете да въведете стойност в проценти или в пунктове (например 110%, −2пкт или +5пкт)."
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr "За да копирате коментар, без да загубите съдържанието на клетката цел, трябва да използвате „Специално поставяне“ и да изчистите всички отметки в диалога освен „Коментари“. Използвайте „Операции ▸ Добавяне“, за да не заместите съществуващото съдържание."
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr "За пакетно конвертиране на документи от Microsoft Office във формат OpenDocument използвайте помощника „Преобразуване на документи“ – „Файл ▸ Помощници ▸ Преобразуване на документи“."
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr "Когато редактирате клетка на място, можете да щракнете с десния бутон и да вмъквате полета: Дата, Име на листа, Заглавие на документа и т.н."
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr "Трябва да местите таблица в Writer? „Таблица ▸ Избиране ▸ Таблица“, после „Вмъкване ▸ Рамка ▸ Рамка“ и местете таблицата, където желаете."
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr "С „Инструменти ▸ Автотекст ▸ Автотекст ▸ Импортиране“ можете да изберете документ или шаблон на Word, съдържащ записите за автотекст, които искате да импортирате."
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr "Не вмъквайте ръчни знаци за нов абзац, за да разделите два абзаца. Вместо това променете „Отстъпи и разредка ▸ Разредка ▸ Под абзаца“ в свойствата на стила/абзаца."
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr "За да запазите нулите в началото на число, използвайте форматния атрибут „водещи нули“ или форматирайте клетката като текст, преди да въведете число."
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr "Искате да се върнете към подразбирания формат след прилагане на стил за списък? Щракнете върху инструмента „Превключване на списък с водещи знаци/номера“ в лентата „Форматиране“."
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr "За да изтриете наведнъж всички области за печат, изберете всички листове, а после „Форматиране ▸ Области за печат ▸ Изчистване“."
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr "За да добавите фоново изображение в електронна таблица, използвайте „Вмъкване ▸ Изображение“ или плъзнете фон от галерията, после изберете „Форматиране ▸ Подреждане ▸ Към фона“."
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr "Имате проблеми с поставянето на текст от PDF файлове или уебстраници в документи? Опитайте да поставяте като неформатиран текст (%MOD1+%MOD2+Shift+V)."
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr "В Calc можете да използвате TRIMMEAN(), за да пресметнете средната стойност на съвкупност от данни, изключвайки най-високите и най-ниските стойности."
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr "Четвъртият незадължителен параметър на функцията VLOOKUP в Calc указва дали първата колона на данните е сортирана. Ако не е, въведете FALSE или нула."
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 "Лентите с инструменти са контекстни – отварят се в зависимост от контекста. Ако не желаете това, изчистете отметките им в „Изглед ▸ Ленти с инструменти“."
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
-msgstr ""
+msgstr "Можете да създадете главен документ от текущия документ на Writer: „Файл ▸ Изпращане ▸ Създаване на главен документ“ (ще бъдат създадени поддокументи в зависимост от плана)."
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr "Искате да центрирате клетки върху отпечатаната страница в Calc? „Форматиране ▸ Страница“, „Страница ▸ Настройки за оформление ▸ Подравняване на таблица“."
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr "Рамките могат да се свързват, така че текстът да тече от една към друга като в програма за настолна издателска дейност."
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
-msgstr ""
+msgstr "Можете да създадете диаграма, базирана на таблица в Writer, като щракнете върху таблицата и изберете „Вмъкване ▸ Диаграма“."
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr "Задайте съответни настройки в „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Помощ при форматиране ▸ Визуализиране“, за да укажете кои непечатаеми знаци да се показват."
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr "Искате да преминете към страница с определен номер? Щракнете върху най-левия елемент в лентата на състоянието, използвайте „Редактиране ▸ Преминаване към страница…“ или натиснете %MOD1+G."
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr "%PRODUCTNAME поддържа над 150 езика."
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr "Изчистете отметката от „Прожекция ▸ Настройки ▸ Презентацията е винаги отпред“, ако искате друга програма да показва прозореца си върху презентацията."
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 "Искате да намерите получерните думи в документ на Writer? Редактиране ▸ Търсене и замяна ▸ Други настройки ▸ Атрибути ▸ Тегло на шрифт."
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr "С командата „Инструменти ▸ Сортиране“ можете да сортирате абзаци или таблични редове в азбучен ред или като числа."
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr "За да вмъкнете абзац преди (след) раздел, натиснете %MOD2+Enter в началото (края) на раздела."
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr "%PRODUCTNAME предлага център с шаблони за подобряване външния вид на документите – разгледайте го."
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr "С Calc можете да изчислявате вноски по заем, например PMT(2%/12;36;2500) за месечна лихва 2%/12, 36 месеца и размер на заема 2500."
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr "Не можете да намерите желаните данни в Calc с функцията VLOOKUP? Ще успеете с INDEX и MATCH!"
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr "Искате да покажете скритата колона A? Щракнете върху клетка в колоната B, натиснете левия бутон на мишката, преместете мишката наляво и го отпуснете. После включете колоната с „Форматиране ▸ Колони ▸ Показване“."
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr "За да промените номера на страница в Writer, отворете свойствата на първия абзац, в раздела „Изливане на текста“ отметнете „Знаци за прекъсване ▸ Вмъкване“ и въведете номера."
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr "Можете да работите с %PRODUCTNAME през всеки браузър чрез rollApp."
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr "Непознат код за грешка в Calc – Err:, последвано от число? Обяснението е на тази страница:"
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr "За да включите в съдържанието абзац, който не е заглавие, задайте ниво от плана на „План и номерация“ в настройките на абзаца."
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr "Освен съдържания, %PRODUCTNAME може да създава азбучни указатели и индекси на илюстрациите, таблиците, обектите и библиографските позовавания, както и потребителски индекси."
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr "Не можете да промените или изтриете стил на клетка по избор? Проверете всички листове – сред тях не трябва да има защитени."
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 "Искате да попълните поредица? Изберете диапазона от клетки, после „Лист ▸ Запълване на клетки ▸ Запълване с поредица“ и изберете между „Линейна“, „Растеж“, „Дата“ и „Автозапълване“."
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr "Искате да знаете дали някоя клетка се използва във формулите на други клетки? „Инструменти ▸ Детектив ▸ Зависими клетки“ (Shift+F5)."
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr "В полето „Замяна“ на настройките за автокорекция можете да използвате заместващи знаци .*"
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr "Искате да повторите горния ред? Натиснете %MOD1+D или използвайте „Лист ▸ Запълване на клетки ▸ Запълване надолу“."
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr "За да търсите в няколко листа, изберете ги, преди да започнете търсенето."
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr "Плъзгането и пускането на клетки от Calc в нормалния изглед на кадър създава таблица, а в плана – по един ред за всяка клетка."
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr "%PRODUCTNAME ви помага да не въвеждате два или повече поредни интервала в Writer. Отметнете „Инструменти ▸ Настройки на автокорекция ▸ Настройки ▸ Игнориране на поредните интервали“."
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr "Искате курсорът да преминава в клетката отдясно след въвеждане на стойност в Calc? Използвайте клавиша Tab вместо Enter."
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr "За да преместите лентата за превъртане отляво, разрешете „Инструменти ▸ Настройки ▸ Езикови настройки ▸ Езици ▸ Сложни писмености“ и отметнете „Лист ▸ От дясно наляво“."
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr "Плъзнете форматиран обект в прозореца „Стилове и формати“. Ще се отвори диалогов прозорец – просто въведете името на новия стил."
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr "Новите версии на %PRODUCTNAME предлагат нова функционалност, корекции на дефекти и подобрения в сигурността. Използвайте актуална версия!"
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr "Разработвате нови XSLT и XML филтри?"
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 "Натиснете Shift+F1, за да видите разширените подсказки в диалоговите прозорци, когато „Разширени подсказки“ е изключено в „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Общи“."
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr "Помощ за %PRODUCTNAME"
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr "Още информация"
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr "Изпълняване на действието сега..."
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr "Съвет на деня: %CURRENT/%TOTAL"
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr "⌘ Cmd"
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr "Ctrl"
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr "Alt"
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr "⌥ Opt"
@@ -3593,55 +3516,55 @@ msgstr "⌥ Opt"
#: cui/inc/toolbarmode.hrc:22
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
-msgstr ""
+msgstr "Стандартен потребителски интерфейс с меню, лента с инструменти и свита странична лента. Предназначен за потребители, запознати с класическия интерфейс."
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
-msgstr ""
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgstr "Потребителският интерфейс с раздели е най-близък до лентите, използвани в Microsoft Office. Той организира функционалността в раздели и прави главното меню излишно."
-#. wKg2Q
+#. 8irik
#: 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 "Стандартен потребителски интерфейс с разгъната странична лента. За опитни потребители, които искат бързо да променят множество различни свойства."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgstr "Стандартен потребителски интерфейс, но с лента с инструменти само на един ред. Предназначен за употреба на малки екрани."
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
-msgstr ""
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
+msgstr "Стандартен потребителски интерфейс с разгъната странична лента. За опитни потребители, които искат бързо да променят множество различни свойства."
#. qXq4A
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
-msgstr ""
+msgstr "Компактният вариант с раздели цели близост с интерфейса на Microsoft Office, но заема по-малко място, за по-малки екрани."
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
-msgstr ""
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgstr "Лентата с групи предоставя достъп до функциите по групи, с икони за най-често използваните функции и падащи менюта за останалите. Този пълен вариант отдава по-голямо значение на функциите и е малко по-голям от другите."
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
-msgstr ""
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgstr "Компактната лента с групи предоставя достъп до функциите по групи, с икони за най-често използваните функции и падащи менюта за останалите. Този компактен вариант пести място по вертикала."
#. eGMCZ
#: cui/inc/toolbarmode.hrc:29
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Single interface shows functions in a single-line toolbar with context-dependent content."
-msgstr ""
+msgstr "Контекстният единичен интерфейс показва функциите в лента с инструменти от един ред, чието съдържание зависи от контекста."
#. KFPmR
#: cui/inc/toolbarmode.hrc:30
msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Contextual Groups interface focuses on beginners. It exposes 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 "Интерфейсът с контекстни групи е предназначен за начинаещи. Той показва най-често използваните функции в групи, като най-важното действие е с по-голяма икона, придружена от няколко по-дребни допълнителни функции. Всички функции са надписани. Допълнителен раздел предлага достъп до тези функции според контекста."
#. Xnz8J
#: cui/inc/treeopt.hrc:33
@@ -4361,7 +4284,7 @@ msgstr "Копиране на цялата информация за верси
#: cui/uiconfig/ui/accelconfigpage.ui:80
msgctxt "accelconfigpage|tooltip|shortcuts"
msgid "To quickly find a shortcut in this list, simply press the key combination."
-msgstr ""
+msgstr "За да намерите бързо клавишна комбинация в този списък, просто я натиснете на клавиатурата."
#. s4GiG
#: cui/uiconfig/ui/accelconfigpage.ui:117
@@ -4369,7 +4292,7 @@ msgctxt "accelconfigpage|extended_tip|shortcuts"
msgid ""
"Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the Function list, click a shortcut in this list, and then click Modify.\n"
"To quickly find a shortcut in this list, simply press the key combination."
-msgstr ""
+msgstr "Изброява клавишните комбинации и свързаните с тях команди. Зада присвоите или промените клавишната комбинация за командата, избрана в списъка „Функция“, щракнете върху клавишна комбинация в списъка, после върху „Промяна“. За да намерите бързо клавишна комбинация в този списък, просто я натиснете на клавиатурата."
#. MP3WF
#: cui/uiconfig/ui/accelconfigpage.ui:129
@@ -4459,7 +4382,7 @@ msgstr "Въведете търсения текст"
#: cui/uiconfig/ui/accelconfigpage.ui:352
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
-msgstr ""
+msgstr "Въвеждайте тук, за да търсите в списъка на функциите."
#. T5FGo
#: cui/uiconfig/ui/accelconfigpage.ui:374
@@ -4519,19 +4442,19 @@ msgstr "Въведете съкращение, последвано от точ
#: cui/uiconfig/ui/acorexceptpage.ui:67
msgctxt "acorexceptpage|autoabbrev"
msgid "Auto_Include"
-msgstr ""
+msgstr "Автовключване"
#. KRr5y
#: cui/uiconfig/ui/acorexceptpage.ui:73
msgctxt "acorexceptpage|autoabbrev"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
-msgstr ""
+msgstr "Автоматично добавяне към списъка с изключения, ако автокорекцията бъде незабавно отменена."
#. 7qDG3
#: cui/uiconfig/ui/acorexceptpage.ui:76
msgctxt "acorexceptpage|extended_tip|autoabbrev"
msgid "Adds autocorrected abbreviations to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective when Capitalize first letter of every sentence option is selected in the [T] column on the Options tab of this dialog."
-msgstr ""
+msgstr "Добавя автокоригирани съкращения към списъка с изключения, ако автокорекцията бъде незабавно отменена. Тази функция работи само когато е отметнато „Превръщане на първата буква от изречение в главна“ в колоната [В] на раздела „Настройки“ в този диалог."
#. tpV8t
#: cui/uiconfig/ui/acorexceptpage.ui:103
@@ -4567,7 +4490,7 @@ msgstr "Съкращения (продължаване без главна бу
#: cui/uiconfig/ui/acorexceptpage.ui:248
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
-msgstr ""
+msgstr "Въведете думата или съкращението с две начални главни букви или начална малка буква, за което не желаете %PRODUCTNAME да извършва замяна с една начална главна буква. Например, въведете „PC“, за да забраните на %PRODUCTNAME да замества „PC“ с „Pc“, или „eBook“, за да предотвратите заместване с „Ebook“."
#. kAzxB
#: cui/uiconfig/ui/acorexceptpage.ui:259
@@ -4579,13 +4502,13 @@ msgstr "_Автовключване"
#: cui/uiconfig/ui/acorexceptpage.ui:265
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
-msgstr ""
+msgstr "Автоматично добавяне към списъка с изключения, ако автокорекцията бъде незабавно отменена."
#. 7u9Af
#: cui/uiconfig/ui/acorexceptpage.ui:268
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
-msgstr ""
+msgstr "Добавя автокоригирани думи с две начални главни букви към списъка с изключения, ако автокорекцията бъде незабавно отменена. Тази функция работи само когато е отметнато „Коригиране на ДВе ГЛавни БУкви“ в колоната [В] на раздела „Настройки“ в този диалог."
#. AcEEf
#: cui/uiconfig/ui/acorexceptpage.ui:295
@@ -5192,7 +5115,7 @@ msgstr "Цвят"
#: cui/uiconfig/ui/areatabpage.ui:75
msgctxt "areatabpage|extended_tip|btncolor"
msgid "Fills the object with a color selected on this page."
-msgstr ""
+msgstr "Запълва обекта с цвят, избран на тази страница."
#. zXDcA
#: cui/uiconfig/ui/areatabpage.ui:87
@@ -5216,7 +5139,7 @@ msgstr "Растерно изображение"
#: cui/uiconfig/ui/areatabpage.ui:111
msgctxt "areatabpage|extended_tip|btnbitmap"
msgid "Fills the object with a bitmap image selected on this page."
-msgstr ""
+msgstr "Запълва обекта с растерно изображение, избрано на тази страница."
#. 9q7GD
#: cui/uiconfig/ui/areatabpage.ui:123
@@ -5228,7 +5151,7 @@ msgstr "Шарка"
#: cui/uiconfig/ui/areatabpage.ui:129
msgctxt "areatabpage|extended_tip|btnpattern"
msgid "Fills the object with a dot pattern selected on this page."
-msgstr ""
+msgstr "Запълва обекта с шарка от точки, избрана на тази страница."
#. 5y6vj
#: cui/uiconfig/ui/areatabpage.ui:141
@@ -5852,7 +5775,7 @@ msgstr "Обединяване със следващ абзац"
#: cui/uiconfig/ui/borderpage.ui:608
msgctxt "borderpage|mergewithnext"
msgid "Merge indent, border and shadow style of current paragraph with next paragraph, if they are the same."
-msgstr ""
+msgstr "Обединява отстъпа, кантовете и сянката на текущия абзац с тези на следващия, ако са еднакви."
#. xkm5N
#: cui/uiconfig/ui/borderpage.ui:617
@@ -8432,13 +8355,13 @@ msgstr "Мостра"
#: cui/uiconfig/ui/effectspage.ui:75
msgctxt "effectspage|effectsft"
msgid "_Case:"
-msgstr ""
+msgstr "Регистър:"
#. hhfhW
#: cui/uiconfig/ui/effectspage.ui:89
msgctxt "effectspage|reliefft"
msgid "R_elief:"
-msgstr ""
+msgstr "Релеф:"
#. HSdYT
#: cui/uiconfig/ui/effectspage.ui:104
@@ -8558,19 +8481,19 @@ msgstr "Изберете къде да се показват диакритич
#: cui/uiconfig/ui/effectspage.ui:186
msgctxt "effectspage|positionft"
msgid "_Position:"
-msgstr ""
+msgstr "Позиция:"
#. 5okoC
#: cui/uiconfig/ui/effectspage.ui:200
msgctxt "effectspage|emphasisft"
msgid "Emphasis _mark:"
-msgstr ""
+msgstr "Знак за открояване:"
#. cDkSo
#: cui/uiconfig/ui/effectspage.ui:212
msgctxt "effectspage|outlinecb"
msgid "Outli_ne"
-msgstr ""
+msgstr "Контур"
#. fXVDq
#: cui/uiconfig/ui/effectspage.ui:221
@@ -8582,7 +8505,7 @@ msgstr "Показва очертанието на избраните знаци
#: cui/uiconfig/ui/effectspage.ui:232
msgctxt "effectspage|shadowcb"
msgid "Shado_w"
-msgstr ""
+msgstr "Сянка"
#. 8tyio
#: cui/uiconfig/ui/effectspage.ui:241
@@ -8594,7 +8517,7 @@ msgstr "Добавя хвърлена сянка надолу и надясно
#: cui/uiconfig/ui/effectspage.ui:252
msgctxt "effectspage|hiddencb"
msgid "Hi_dden"
-msgstr ""
+msgstr "Скрит"
#. wFPA3
#: cui/uiconfig/ui/effectspage.ui:261
@@ -8612,19 +8535,19 @@ msgstr "Ефекти"
#: cui/uiconfig/ui/effectspage.ui:323
msgctxt "effectspage|label46"
msgid "O_verlining:"
-msgstr ""
+msgstr "Надчертаване:"
#. ceoHc
#: cui/uiconfig/ui/effectspage.ui:337
msgctxt "effectspage|label47"
msgid "Stri_kethrough:"
-msgstr ""
+msgstr "Зачертаване:"
#. Qisd2
#: cui/uiconfig/ui/effectspage.ui:351
msgctxt "effectspage|label48"
msgid "_Underlining:"
-msgstr ""
+msgstr "Подчертаване:"
#. EGta9
#: cui/uiconfig/ui/effectspage.ui:366 cui/uiconfig/ui/effectspage.ui:400
@@ -8798,7 +8721,7 @@ msgstr "Изберете цвета на надчертаването."
#: cui/uiconfig/ui/effectspage.ui:498
msgctxt "effectspage|individualwordscb"
msgid "_Individual words"
-msgstr ""
+msgstr "Дума по дума"
#. AP5Gy
#: cui/uiconfig/ui/effectspage.ui:506
@@ -8816,7 +8739,7 @@ msgstr "Украса на текста"
#: cui/uiconfig/ui/effectspage.ui:582
msgctxt "effectspage|fontcolorft"
msgid "_Font color:"
-msgstr ""
+msgstr "Цвят на шрифта:"
#. ttwFt
#: cui/uiconfig/ui/effectspage.ui:605
@@ -10413,7 +10336,7 @@ msgstr "Тук можете да създадете хипервръзка къ
#: cui/uiconfig/ui/hyperlinkdialog.ui:183
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLINETTP"
msgid "_Internet"
-msgstr ""
+msgstr "Интернет"
#. TwuBW
#: cui/uiconfig/ui/hyperlinkdialog.ui:244
@@ -10425,7 +10348,7 @@ msgstr "Тук можете да създадете хипервръзка къ
#: cui/uiconfig/ui/hyperlinkdialog.ui:258
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLMAILTP"
msgid "_Mail"
-msgstr ""
+msgstr "Поща"
#. MXhAV
#: cui/uiconfig/ui/hyperlinkdialog.ui:320
@@ -10437,7 +10360,7 @@ msgstr "Тук можете да създадете хипервръзка къ
#: cui/uiconfig/ui/hyperlinkdialog.ui:334
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCTP"
msgid "_Document"
-msgstr ""
+msgstr "Документ"
#. xFvuL
#: cui/uiconfig/ui/hyperlinkdialog.ui:396
@@ -10449,7 +10372,7 @@ msgstr "Тук можете да създадете нов документ, к
#: cui/uiconfig/ui/hyperlinkdialog.ui:410
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCNTP"
msgid "_New Document"
-msgstr ""
+msgstr "Нов документ"
#. rYEqo
#: cui/uiconfig/ui/hyperlinkdocpage.ui:45
@@ -10701,7 +10624,7 @@ msgstr "Рамка:"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:313
msgctxt "hyperlinkinternetpage|name_label"
msgid "N_ame:"
-msgstr ""
+msgstr "Име:"
#. ZdkMh
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:331
@@ -12843,7 +12766,7 @@ msgstr "Изберете знаковия стил, който желаете д
#: cui/uiconfig/ui/numberingoptionspage.ui:202
msgctxt "numberingoptionspage|extended_tip|sublevels"
msgid "Enter the number of previous levels to include in the numbering scheme. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering, the numbering scheme for the current level becomes: \"A.1\"."
-msgstr ""
+msgstr "Въведете броя на предишните нива, които да бъдат включени в схемата за номериране. Например, ако въведете „2“ и в предишното ниво е използвано номериране „A, B, C...“, схемата за номериране на текущото ниво ще стане: „A.1“."
#. ST2Co
#: cui/uiconfig/ui/numberingoptionspage.ui:220
@@ -12861,7 +12784,7 @@ msgstr "Започване от:"
#: cui/uiconfig/ui/numberingoptionspage.ui:249
msgctxt "numberingoptionspage|extended_tip|numfmtlb"
msgid "Select a numbering scheme for the selected levels."
-msgstr ""
+msgstr "Изберете схема за номериране на избраните нива."
#. EDSiA
#: cui/uiconfig/ui/numberingoptionspage.ui:262
@@ -12987,7 +12910,7 @@ msgstr "Изберете графиката или посочете графич
#: cui/uiconfig/ui/numberingoptionspage.ui:435
msgctxt "numberingoptionspage|extended_tip|color"
msgid "Select a color for the current numbering scheme."
-msgstr ""
+msgstr "Изберете цвят за текущата схема за номериране."
#. hJgCL
#: cui/uiconfig/ui/numberingoptionspage.ui:453
@@ -13019,11 +12942,11 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Разделител"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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 "Въведете знак или текст, който да се показва след номера в списъка. Ако желаете да създадете списък с номера от вида „1.)“, въведете „.)“ в това поле."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
+msgstr "Въведете знак или текст, който да се показва след номера в списъка. За да създадете схема за номериране „1.)“, въведете „.)“ в това поле."
#. wVrAN
#: cui/uiconfig/ui/numberingoptionspage.ui:532
@@ -13597,7 +13520,7 @@ msgstr "Схема:"
#: cui/uiconfig/ui/optappearancepage.ui:44
msgctxt "optappearancepage|save"
msgid "_Save"
-msgstr ""
+msgstr "Записване"
#. k8ACj
#: cui/uiconfig/ui/optappearancepage.ui:51
@@ -14809,23 +14732,47 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Настройки"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr "Незаписаните промени в този раздел се отменят."
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr "Анулира промените, зададени в текущия раздел, и връща стойностите от момента на отваряне на диалоговия прозорец."
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr "Записване на всички промени без затваряне на диалога. Не може да се отмени чрез „Нулиране“."
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr "Записване на всички промени и затваряне на диалога."
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr "Записва всички промени и затваря диалоговия прозорец."
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr "Отхвърляне на всички незаписани промени и затваряне на диалога."
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
-msgstr "Затваря диалоговия прозорец, отхвърляйки всички промени."
+msgid "Closes dialog and discards all unsaved changes."
+msgstr "Затваря диалога и отхвърля всички незаписани промени."
#. CgiEq
#: cui/uiconfig/ui/optjsearchpage.ui:31
@@ -17160,7 +17107,7 @@ msgstr "Отдолу:"
#: cui/uiconfig/ui/pageformatpage.ui:456
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
-msgstr ""
+msgstr "За подвързване:"
#. Tvwu6
#: cui/uiconfig/ui/pageformatpage.ui:490
@@ -17257,19 +17204,19 @@ msgstr "Отправен _стил:"
#: cui/uiconfig/ui/pageformatpage.ui:679
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
-msgstr ""
+msgstr "Страна за подвързване:"
#. LF4Ex
#: cui/uiconfig/ui/pageformatpage.ui:694
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
-msgstr ""
+msgstr "Отляво"
#. DSBY5
#: cui/uiconfig/ui/pageformatpage.ui:695
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
-msgstr ""
+msgstr "Отгоре"
#. xdECe
#: cui/uiconfig/ui/pageformatpage.ui:715
@@ -17966,7 +17913,7 @@ msgstr "Показва различните графики, които може
#: cui/uiconfig/ui/picknumberingpage.ui:37
msgctxt "picknumberingpage|extended_tip|valueset"
msgid "Click the numbering scheme that you want to use."
-msgstr ""
+msgstr "Щракнете върху желаната схема за номериране."
#. 9JnpQ
#: cui/uiconfig/ui/picknumberingpage.ui:50
@@ -17978,7 +17925,7 @@ msgstr "Избор"
#: cui/uiconfig/ui/picknumberingpage.ui:58
msgctxt "picknumberingpage|extended_tip|PickNumberingPage"
msgid "Displays the different numbering schemes that you can apply."
-msgstr ""
+msgstr "Показва различните схеми за номериране, които можете да прилагате."
#. BDFqB
#: cui/uiconfig/ui/pickoutlinepage.ui:37
@@ -19324,7 +19271,7 @@ msgstr "Сертификат:"
#: cui/uiconfig/ui/signsignatureline.ui:151
msgctxt "signsignatureline|btn_select_certificate"
msgid "Select X.509 Certificate"
-msgstr ""
+msgstr "Избор на сертификат X.509"
#. uJ9EC
#: cui/uiconfig/ui/signsignatureline.ui:157
@@ -19763,7 +19710,7 @@ msgstr "Отваря диалогов прозорец, в който может
#: cui/uiconfig/ui/spellingdialog.ui:80
msgctxt "spellingdialog|undo"
msgid "_Undo"
-msgstr ""
+msgstr "Отмяна"
#. yuEBN
#: cui/uiconfig/ui/spellingdialog.ui:87
@@ -19811,7 +19758,7 @@ msgstr "Отметнете Граматическа проверка, за да
#: cui/uiconfig/ui/spellingdialog.ui:275
msgctxt "spellingdialog|notindictft"
msgid "_Not in Dictionary"
-msgstr ""
+msgstr "Липсва в речника"
#. R7k8J
#: cui/uiconfig/ui/spellingdialog.ui:295
@@ -19883,19 +19830,19 @@ msgstr "Заменя всички срещания на непознатата
#: cui/uiconfig/ui/spellingdialog.ui:485
msgctxt "spellingdialog|autocorrect"
msgid "Add to _AutoCorrect"
-msgstr ""
+msgstr "Добавяне за автокорекция"
#. xpvWk
#: cui/uiconfig/ui/spellingdialog.ui:489
msgctxt "spellingdialog|autocorrect|tooltip_text"
msgid "Add selected suggestion as replacement for incorrect word in AutoCorrect replacement table."
-msgstr ""
+msgstr "Добавяне на избраното предложение като заместител за неправилната дума в таблицата за заместване на „Автокорекция“."
#. DGBWv
#: cui/uiconfig/ui/spellingdialog.ui:495
msgctxt "spellingdialog|extended_tip|autocorrect"
msgid "Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacement table."
-msgstr ""
+msgstr "Добавя текущата комбинация от неправилна дума и заместваща дума в таблицата за заместване на функцията „Автокорекция“."
#. DoqLo
#: cui/uiconfig/ui/spellingdialog.ui:519
@@ -19937,7 +19884,7 @@ msgstr "При проверка на граматиката натиснете
#: cui/uiconfig/ui/spellingdialog.ui:579
msgctxt "spellingdialog|add"
msgid "Add to _Dictionary"
-msgstr ""
+msgstr "Добавяне в речника"
#. JAsBm
#: cui/uiconfig/ui/spellingdialog.ui:588
@@ -19949,7 +19896,7 @@ msgstr "Добавя непознатата дума към потребител
#: cui/uiconfig/ui/spellingdialog.ui:599
msgctxt "spellingdialog|addmb"
msgid "Add to _Dictionary"
-msgstr ""
+msgstr "Добавяне в речника"
#. YFz8g
#: cui/uiconfig/ui/spellingdialog.ui:613
@@ -21038,13 +20985,13 @@ msgid "_Next Tip"
msgstr "Следващ съвет"
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Знаете ли, че..."
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Връзка"
@@ -21056,79 +21003,79 @@ msgid "Select Your Preferred User Interface"
msgstr "Изберете предпочитания от вас потребителски интерфейс."
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr "Прилагане върху всички"
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr "Прилагане върху %MODULE"
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr "Стандартна лента с инструменти"
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
-msgstr "С раздели"
+msgstr ""
+
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr "С раздели, компактна"
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
-msgstr "Лента с групи"
+msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
-msgstr "Лента с групи, компактна"
+msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr "Контекстно, обединени"
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr "Контекстни групи"
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr "Единична лента с инструменти"
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr "Странична лента"
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr "Варианти на ПИ"
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr "Мостра"
diff --git a/source/bg/dbaccess/messages.po b/source/bg/dbaccess/messages.po
index a3baf9a79d2..a84019dfcea 100644
--- a/source/bg/dbaccess/messages.po
+++ b/source/bg/dbaccess/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: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2020-10-31 11:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-13 13:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562324222.000000\n"
#. BiN6g
@@ -37,67 +37,67 @@ msgstr "Операторът на SQL"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. FAMGa
#: dbaccess/inc/strings.hrc:24
@@ -2327,7 +2327,7 @@ msgstr "Връзката към базата от данни е прекъсна
#: dbaccess/inc/strings.hrc:401
msgctxt "STR_TAB_INDEX_SORTORDER"
msgid "Sort order"
-msgstr "Ред за сортиране"
+msgstr "Ред на сортиране"
#. 67TCR
#: dbaccess/inc/strings.hrc:402
@@ -2567,13 +2567,13 @@ msgstr " - %PRODUCTNAME Base: проектиране на релации"
#: dbaccess/inc/strings.hrc:447
msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
msgid "The database does not support relations."
-msgstr "Базата от данни не поддържа релации."
+msgstr "Базата от данни не поддържа връзки между таблици."
#. CG2Pd
#: dbaccess/inc/strings.hrc:448
msgctxt "STR_QUERY_REL_DELETE_WINDOW"
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
-msgstr "Когато бъде изтрита таблицата, всички релации към нея също ще бъдат изтрити. Продължение?"
+msgstr "Когато бъде изтрита таблицата, всички връзки към нея също ще бъдат изтрити. Искате ли да продължите?"
#. Wzf9T
#: dbaccess/inc/strings.hrc:449
@@ -3217,7 +3217,7 @@ msgstr "Пример за формат"
#: dbaccess/uiconfig/ui/fielddescpage.ui:172
msgctxt "fielddescpage|STR_BUTTON_FORMAT"
msgid "_Format Field"
-msgstr ""
+msgstr "Форматиране на поле"
#. Ff2B8
#: dbaccess/uiconfig/ui/fielddescpage.ui:194
@@ -3347,13 +3347,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "Изберете типа на базата от данни, с която искате да се установи връзка."
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "_Тип на базата от данни:"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
@@ -4314,7 +4314,7 @@ msgstr "Каскадно обновяване"
#: dbaccess/uiconfig/ui/relationdialog.ui:229
msgctxt "relationdialog|addnull"
msgid "_Set NULL"
-msgstr "Задаване на NULL"
+msgstr "Попълване с NULL"
#. xNWHg
#: dbaccess/uiconfig/ui/relationdialog.ui:244
@@ -4344,7 +4344,7 @@ msgstr "Каскадно изтриване"
#: dbaccess/uiconfig/ui/relationdialog.ui:323
msgctxt "relationdialog|delnull"
msgid "_Set NULL"
-msgstr "Задаване на NULL"
+msgstr "Попълване с NULL"
#. hZGB8
#: dbaccess/uiconfig/ui/relationdialog.ui:338
diff --git a/source/bg/desktop/messages.po b/source/bg/desktop/messages.po
index f730adc45ae..43d7faa4c90 100644
--- a/source/bg/desktop/messages.po
+++ b/source/bg/desktop/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2020-09-11 22:13+0000\n"
+"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/desktopmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1536274147.000000\n"
#. v2iwK
@@ -815,67 +815,67 @@ msgstr "ГРЕШКА: "
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. Qcv5A
#: desktop/uiconfig/ui/dependenciesdialog.ui:18
diff --git a/source/bg/dictionaries/es.po b/source/bg/dictionaries/es.po
index 505e98b11c9..c271a2dd66c 100644
--- a/source/bg/dictionaries/es.po
+++ b/source/bg/dictionaries/es.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: 2021-01-14 18:08+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: 2021-02-26 09:37+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionarieses/bg/>\n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
#. RvfxU
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus for all variants of Spanish."
-msgstr ""
+msgstr "Испански правописен и синонимен речник и сричкопренасяне, за всички варианти на испански"
diff --git a/source/bg/dictionaries/pt_PT.po b/source/bg/dictionaries/pt_PT.po
index 281a601010b..e636811aac2 100644
--- a/source/bg/dictionaries/pt_PT.po
+++ b/source/bg/dictionaries/pt_PT.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: 2021-01-14 18:08+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: 2021-02-26 09:37+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariespt_pt/bg/>\n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
#. H9tN6
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Portuguese, Portugal spelling and hyphenation dictionaries and thesaurus."
-msgstr ""
+msgstr "Португалски правописен речник и правила за сричкопренасяне (Португалия)"
diff --git a/source/bg/dictionaries/sq_AL.po b/source/bg/dictionaries/sq_AL.po
index 90265b949a9..e9467ba13d1 100644
--- a/source/bg/dictionaries/sq_AL.po
+++ b/source/bg/dictionaries/sq_AL.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:08+0100\n"
-"PO-Revision-Date: 2017-11-27 22:30+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariessq_al/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1511821824.000000\n"
#. WxvKp
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Albanian spelling dictionary, and hyphenation rules"
-msgstr ""
+msgstr "Албански правописен речник и правила за сричкопренасяне"
diff --git a/source/bg/editeng/messages.po b/source/bg/editeng/messages.po
index ec6c5a353d8..3268475ffbd 100644
--- a/source/bg/editeng/messages.po
+++ b/source/bg/editeng/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2020-01-22 12:09+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/editengmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1562356920.000000\n"
#. BHYB4
@@ -100,67 +100,67 @@ msgstr "Разпределено двустранно подравняване"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. 2Lzx7
#: editeng/uiconfig/ui/spellmenu.ui:12
diff --git a/source/bg/extensions/messages.po b/source/bg/extensions/messages.po
index 777854c8963..418ade6b650 100644
--- a/source/bg/extensions/messages.po
+++ b/source/bg/extensions/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-22 17:16+0100\n"
-"PO-Revision-Date: 2020-10-16 06:35+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1562351698.000000\n"
#. cBx8W
@@ -37,67 +37,67 @@ msgstr "Команда на SQL"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. hEBQd
#: extensions/inc/showhide.hrc:29
diff --git a/source/bg/filter/messages.po b/source/bg/filter/messages.po
index 2f4d662f91e..d30cd3323d2 100644
--- a/source/bg/filter/messages.po
+++ b/source/bg/filter/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1562424692.000000\n"
#. 5AQgJ
@@ -292,67 +292,67 @@ msgstr "Експортирането на PDF бе прекратено"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. AwX66
#: filter/uiconfig/ui/pdfgeneralpage.ui:42
@@ -1138,7 +1138,7 @@ msgstr "Отваря диалоговия прозорец Избор на се
#: filter/uiconfig/ui/pdfsignpage.ui:88
msgctxt "pdfsignpage|clear"
msgid "_Clear"
-msgstr ""
+msgstr "Изчистване"
#. UQz9i
#: filter/uiconfig/ui/pdfsignpage.ui:131
diff --git a/source/bg/forms/messages.po b/source/bg/forms/messages.po
index 4a5023b6f55..04771b03f28 100644
--- a/source/bg/forms/messages.po
+++ b/source/bg/forms/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2018-07-19 08:14+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/formsmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1531988068.000000\n"
#. naBgZ
@@ -371,64 +371,64 @@ msgstr "Този тип е вграден и не може да се према
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/formula/messages.po b/source/bg/formula/messages.po
index 883db6fa509..cc1721a6f70 100644
--- a/source/bg/formula/messages.po
+++ b/source/bg/formula/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2020-05-04 14:16+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/formulamessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1554813074.000000\n"
#. YfKFn
@@ -2522,67 +2522,67 @@ msgstr "RANDBETWEEN.NV"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. iySox
#: formula/inc/strings.hrc:25
diff --git a/source/bg/fpicker/messages.po b/source/bg/fpicker/messages.po
index 0933eeec10c..c5d9c15f4ad 100644
--- a/source/bg/fpicker/messages.po
+++ b/source/bg/fpicker/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2020-01-07 12:10+0000\n"
+"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/fpickermessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1538496593.000000\n"
#. SJGCw
@@ -93,67 +93,67 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. D3iME
#: fpicker/uiconfig/ui/explorerfiledialog.ui:129
@@ -219,13 +219,13 @@ msgstr "Дата на промяна"
#: fpicker/uiconfig/ui/explorerfiledialog.ui:504
msgctxt "explorerfiledialog|open"
msgid "_Open"
-msgstr ""
+msgstr "Отваряне"
#. JnE2t
#: fpicker/uiconfig/ui/explorerfiledialog.ui:548
msgctxt "explorerfiledialog|play"
msgid "_Play"
-msgstr ""
+msgstr "Пускане"
#. dWNqZ
#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
@@ -321,13 +321,13 @@ msgstr "Отдалечени файлове"
#: fpicker/uiconfig/ui/remotefilesdialog.ui:142
msgctxt "remotefilesdialog|open"
msgid "_Open"
-msgstr ""
+msgstr "Отваряне"
#. kKETY
#: fpicker/uiconfig/ui/remotefilesdialog.ui:157
msgctxt "remotefilesdialog|save"
msgid "_Save"
-msgstr ""
+msgstr "Записване"
#. uGwr4
#: fpicker/uiconfig/ui/remotefilesdialog.ui:186
diff --git a/source/bg/framework/messages.po b/source/bg/framework/messages.po
index cca503ae7e7..e5518a13034 100644
--- a/source/bg/framework/messages.po
+++ b/source/bg/framework/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: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2020-03-04 14:15+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-09 11:41+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/frameworkmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1507237583.000000\n"
#. 5dTDC
@@ -223,67 +223,187 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr "Език на текста. Щракнете с десен бутон за задаване език на знаци или абзац."
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Текстово поле"
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr "Поле за отметка"
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "Комбинирано поле"
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr "Списъчно поле"
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr "Поле за дата"
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr "Поле за час"
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr "Числово поле"
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr "Поле за валута"
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr "Поле с маска"
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Форматирано поле"
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Бутон"
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "Бутон за избор"
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Поле за етикет"
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Групираща рамка"
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Бутон с изображение"
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Контрола с изображение"
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Избор на файл"
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr "Плъзгач"
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr "Брояч"
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr "Лента за навигация"
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/helpcontent2/source/text/sbasic/python.po b/source/bg/helpcontent2/source/text/sbasic/python.po
index 6f21048e129..b62e61d842b 100644
--- a/source/bg/helpcontent2/source/text/sbasic/python.po
+++ b/source/bg/helpcontent2/source/text/sbasic/python.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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-10-17 21:35+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-21 21:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicpython/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562421617.000000\n"
#. naSFZ
@@ -86,7 +86,7 @@ msgctxt ""
"par_id131568902936659\n"
"help.text"
msgid "The %PRODUCTNAME scripting framework for Python is optional on some GNU/Linux distributions. If it is installed, selecting <menuitem>Tools - Macros - Run Macro</menuitem> and checking <literal>%PRODUCTNAME Macros</literal> for the presence of <literal>HelloWorld – HelloWorldPython</literal> macro is sufficient. If absent, please refer to your distribution documentation in order to install the %PRODUCTNAME scripting framework for Python."
-msgstr ""
+msgstr "Средата на %PRODUCTNAME за скриптове на Python не е задължителна в някои дистрибуции на GNU/Linux. Ако е инсталирана, е достатъчно да изберете <menuitem>Инструменти - Макроси - Стартиране на макрос</menuitem> и да се уверите, че в <literal>Макроси на %PRODUCTNAME</literal> присъства макросът <literal>HelloWorld – HelloWorldPython</literal>. Ако го няма, вижте документацията на дистрибуцията, за да инсталирате средата на %PRODUCTNAME за скриптове на Python."
#. naZBV
#: python_2_basic.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"N0336\n"
"help.text"
msgid "The %PRODUCTNAME Application Programming Interface (API) Scripting Framework supports inter-language script execution between Python and Basic, or other supported programming languages for that matter. Arguments can be passed back and forth across calls, provided that they represent primitive data types that both languages recognize, and assuming that the Scripting Framework converts them appropriately."
-msgstr ""
+msgstr "Обкръжението за скриптове (Scripting Framework) на интерфейса за приложно програмиране (API) на %PRODUCTNAME поддържа многоезиково изпълнение между Python и Basic, както и между други езици. При обръщенията могат да се предават аргументи в двете посоки, стига да представят разпознавани и от двата езика примитивни типове данни, които Scripting Framework е в състояние да преобразува правилно."
#. Gn9Bv
#: python_2_basic.xhp
@@ -169,13 +169,13 @@ msgctxt ""
msgid "It is recommended to have knowledge of Python standard modules and %PRODUCTNAME API features prior to perform inter-language calls from Python to Basic, JavaScript or any other script engine."
msgstr "Преди да използвате междуезикови обръщения от Python към Basic, JavaScript или друга скриптова машина, е препоръчително да се запознаете със стандартните модули на Python и възможностите на %PRODUCTNAME API."
-#. yXTrk
+#. Sffwq
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0338\n"
"help.text"
-msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME nested Basic engine may be absent. Avoid Python to %PRODUCTNAME Basic calls in such context. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
+msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
msgstr "Когато стартирате скриптове на Python от интегрирана развойна среда (IDE), вградената машина за Basic на %PRODUCTNAME може да отсъства. В такъв контекст избягвайте обръщения от Python към %PRODUCTNAME Basic. Обкръжението на Python и Universal Networks Objects (UNO) обаче са изцяло достъпни. Вижте <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Инсталиране на интегрирана развойна среда за Python</link> за повече информация."
#. NcuDF
@@ -448,14 +448,14 @@ msgctxt ""
msgid "My Macros or %PRODUCTNAME Macros dialogs"
msgstr "Диалози в „Моите макроси“ и „Макроси на %PRODUCTNAME“"
-#. jCE4m
+#. pcUEy
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0339\n"
"help.text"
-msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
-msgstr "Долните примери отварят конзолата <literal>Access2Base Trace</literal> или импортирания диалог <literal>TutorialsDialog</literal> с менюто <menuitem>Инструменти - Макроси - Стартиране на макрос...</menuitem>:"
+msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
+msgstr "Долните примери отварят конзолата <literal>Access2Base Trace</literal> или импортирания диалог <literal>TutorialsDialog</literal> с менюто <menuitem>Инструменти - Макроси - Стартиране на макрос</menuitem>:"
#. ChW9B
#: python_dialogs.xhp
@@ -466,13 +466,13 @@ msgctxt ""
msgid "Document embedded dialogs"
msgstr "Диалози, вградени в документи"
-#. SsPGJ
+#. uHH6H
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0365\n"
"help.text"
-msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr "Долният пример отваря току-що редактиран диалог <literal>Dialog1</literal> от документ с менюто <menuitem>Инструменти - Макроси - Стартиране на макрос</menuitem>:"
#. mMo7w
@@ -545,7 +545,7 @@ msgctxt ""
"N0530\n"
"help.text"
msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <literal>Open Document</literal> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
-msgstr ""
+msgstr "Наблюдението е илюстрирано тук с обектноориентирано програмиране за езиците Basic и Python. За започване и прекъсване на наблюдението на събития в документ е достатъчно да се присвои скриптът <literal>OnLoad</literal> на събитието <literal>Отваряне на документ</literal>. Приписването на скриптове става с командата <menuitem>Инструменти - Персонализиране</menuitem>,в раздела <menuitem>Събития</menuitem>."
#. 27Dcq
#: python_document_events.xhp
@@ -851,7 +851,7 @@ msgctxt ""
"N0650\n"
"help.text"
msgid "The <literal>Onload</literal> script is assigned to <literal>Open document</literal> event using <menuitem>Tools - Customize</menuitem> menu <menuitem>Events</menuitem> tab. Events monitoring starts from the moment a <literal>ConsoleLogger</literal> object is instantiated and ultimately stops when Basic engine releases it. <literal>OnLoad</literal> event loads necessary Basic libraries, while caught events are reported using <literal>Access2Base.Trace</literal> module."
-msgstr ""
+msgstr "Скриптът <literal>Onload</literal> се приписва на събитието <literal>Отваряне на документ</literal> с командата <menuitem>Инструменти - Персонализиране</menuitem>, раздел <menuitem>Събития</menuitem>. Наблюдението на събития започва от момента, когато се създаде обект от клас <literal>ConsoleLogger</literal> и приключва, когато средата на Basic освободи обекта. Събитието <literal>OnLoad</literal> зарежда необходимите библиотеки на Basic, а уловените събития се докладват чрез модула <literal>Access2Base.Trace</literal>."
#. TAiMF
#: python_document_events.xhp
@@ -896,7 +896,7 @@ msgctxt ""
"N0664\n"
"help.text"
msgid "' ADAPTER design pattern object to be instantiated in the \"Open Document\" event"
-msgstr ""
+msgstr "' АДАПТЕР – обект, който се създава при събитието „Отваряне на документ“"
#. 9ZNpG
#: python_document_events.xhp
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index 3476e9f0678..1a5e1bea493 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared.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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-12-13 23:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-21 21:37+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"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562357378.000000\n"
#. yzYVt
@@ -536,7 +536,7 @@ msgctxt ""
"par_id631529990528928\n"
"help.text"
msgid "Open <item type=\"menuitem\">Tools - Macros - Organize Dialogs</item> and select <item type=\"menuitem\">%PRODUCTNAME Dialogs</item> container."
-msgstr ""
+msgstr "Отворете <item type=\"menuitem\">Инструменти - Макроси - Управление на диалогови прозорци</item> и изберете контейнера <item type=\"menuitem\">Диалогови прозорци на %PRODUCTNAME</item>."
#. C3yvQ
#: 00000003.xhp
@@ -554,7 +554,7 @@ msgctxt ""
"par_id971529072633266\n"
"help.text"
msgid "<variable id=\"basiclibrarynote\">This library must be loaded before execution. Execute the following statement before running any macro that uses this library:</variable>"
-msgstr ""
+msgstr "<variable id=\"basiclibrarynote\">Тази библиотека трябва да бъде заредена преди изпълнение. Осигурете изпълнението на следния оператор преди стартирането на който и да е макрос, използващ тази библиотека:</variable>"
#. 8ipLK
#: 00000003.xhp
@@ -4741,13 +4741,13 @@ msgctxt ""
msgid "-no UI-"
msgstr "- няма потребителски интерфейс -"
-#. FsrLe
+#. AUk3A
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id961599839198859\n"
"help.text"
-msgid "When the document disk location has changed, for example after a <emph>File - Save As...</emph> action."
+msgid "When the document disk location has changed, for example after a <emph>File - Save As</emph> action."
msgstr "Когато дисковото местоположение на документа се е променило, например след команда <emph>Файл - Записване като...</emph>."
#. n5TCf
@@ -11489,7 +11489,7 @@ msgctxt ""
"par_id461605879610611\n"
"help.text"
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
-msgstr ""
+msgstr "Някои специфични за DOS функции за файлове и директории вече не се предлагат в %PRODUCTNAME или функционалността им е ограничена. Например, не се предлага поддръжка за функциите <literal>ChDir</literal>, <literal>ChDrive</literal> и <literal>CurDir</literal>. Някои специфични за DOS свойства вече не се използват във функциите, които очакват файлови свойства като параметри (например, за да се отличават скрити и системни файлове). Така се осигурява възможно най-високо ниво на платформена независимост за %PRODUCTNAME. Затова тази функционалност ще бъде премахната в бъдещо издание."
#. WXPPp
#: 03020401.xhp
@@ -11615,7 +11615,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "<variable id=\"CurDir_h1\"><link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"CurDir_h1\"><link href=\"text/sbasic/shared/03020403.xhp\">Функция CurDir</link></variable>"
#. e8mAC
#: 03020403.xhp
@@ -11624,7 +11624,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "Returns a variant string that represents the current path <switchinline select=\"sys\"><caseinline select=\"WIN\">or that of the specified Windows drive</caseinline></switchinline>."
-msgstr ""
+msgstr "Връща вариантен низ, който представлява текущия път<switchinline select=\"sys\"><caseinline select=\"WIN\"> или този на зададеното устройство на Windows</caseinline></switchinline>."
#. 3ABqD
#: 03020403.xhp
@@ -11651,7 +11651,7 @@ msgctxt ""
"par_id3153193\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that specifies an existing drive, for example \"C\" for the first partition of the first hard drive. This parameter is used solely under Windows."
-msgstr ""
+msgstr "<emph>Text:</emph> Низов израз, указващ съществуващо устройство, например \"C\" за първия дял на първия твърд диск. Този параметър се използва само в Windows."
#. f7Di8
#: 03020403.xhp
@@ -11660,7 +11660,7 @@ msgctxt ""
"par_id3155133\n"
"help.text"
msgid "If no drive is specified or if the drive is a zero-length string (\"\"), <literal>CurDir</literal> returns the path for the current drive. %PRODUCTNAME Basic reports an error if the syntax of the drive description is incorrect or if the drive does not exist."
-msgstr ""
+msgstr "Ако не е указано устройство или ако за устройство е зададен низ с нулева дължина (\"\"), <literal>CurDir</literal> връща пътя на текущото устройство. %PRODUCTNAME Basic докладва грешка, ако синтаксисът на описанието на устройство е неправилен или ако устройството не съществува."
#. jsyuK
#: 03020403.xhp
@@ -16232,7 +16232,7 @@ msgctxt ""
"par_id491610993401822\n"
"help.text"
msgid "The <literal>Now</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>Timer</literal> service</link>."
-msgstr ""
+msgstr "Функцията <literal>Now</literal> измерва времето в секунди. За да измервате времето в милисекунди, използвайте <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\">услугата <literal>Timer</literal></link>."
#. LDkTk
#: 03030203.xhp
@@ -16241,7 +16241,7 @@ msgctxt ""
"par_id531610970649205\n"
"help.text"
msgid "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
#. 6Y7Bi
#: 03030204.xhp
@@ -16970,7 +16970,7 @@ msgctxt ""
"par_id491610993401822\n"
"help.text"
msgid "The <literal>Timer</literal> function measures time in seconds. To measure time in milliseconds use the <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>Timer</literal> service</link>."
-msgstr ""
+msgstr "Функцията <literal>Timer</literal> измерва времето в секунди. За да измервате времето в милисекунди, използвайте <link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\">услугата <literal>Timer</literal></link>."
#. fsCiJ
#: 03030303.xhp
@@ -16979,7 +16979,7 @@ msgctxt ""
"par_id531610970649205\n"
"help.text"
msgid "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
#. ATnCy
#: 03040000.xhp
@@ -29300,7 +29300,7 @@ msgctxt ""
"hd_id3154422\n"
"help.text"
msgid "<variable id=\"Set_h1\"><link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement\">Set Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"Set_h1\"><link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement\">Оператор Set</link></variable>"
#. qNuUW
#: 03103700.xhp
@@ -29795,7 +29795,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<variable id=\"Array_h1\"><link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function\">Array Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"Array_h1\"><link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function\">Функция Array</link></variable>"
#. ZFAuc
#: 03104200.xhp
@@ -34376,7 +34376,7 @@ msgctxt ""
"par_id531610970649205\n"
"help.text"
msgid "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/sbasic/shared/03/sf_timer.xhp#TimerService\"/>"
#. s5v8i
#: 03130800.xhp
@@ -35069,7 +35069,7 @@ msgctxt ""
"hd_id3150682\n"
"help.text"
msgid "<variable id=\"GlobalScope_h1\"><link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link></variable>"
-msgstr ""
+msgstr "<variable id=\"GlobalScope_h1\"><link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">Спецификатор GlobalScope</link></variable>"
#. BKWJA
#: 03131900.xhp
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared/03.po b/source/bg/helpcontent2/source/text/sbasic/shared/03.po
index e3f02afbfcd..134a1f19094 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2020-08-01 07:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared03/bg/>\n"
@@ -16,6 +16,87 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559418514.000000\n"
+#. ViEWM
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"tit\n"
+"help.text"
+msgid "(Un)Available since release"
+msgstr ""
+
+#. CeSww
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasMeth\n"
+"help.text"
+msgid "This method is not available in Basic."
+msgstr ""
+
+#. LDXQx
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_BasProp\n"
+"help.text"
+msgid "This property is not available in Basic."
+msgstr ""
+
+#. 4GDXo
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycMeth\n"
+"help.text"
+msgid "This method is not available in Python."
+msgstr ""
+
+#. 3ZUdq
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"not_PycProp\n"
+"help.text"
+msgid "This property is not available in Python."
+msgstr ""
+
+#. GXE45
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id281613660174140\n"
+"help.text"
+msgid "These methods are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. qjuHF
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id981613655373210\n"
+"help.text"
+msgid "This control is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. bAYUN
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id831613654401663\n"
+"help.text"
+msgid "These event properties are available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
+#. kVj8c
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id201613654395537\n"
+"help.text"
+msgid "This property is available from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. EziC4
#: lib_ScriptForge.xhp
msgctxt ""
@@ -43,15 +124,6 @@ msgctxt ""
msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value>"
msgstr ""
-#. MHX92
-#: lib_ScriptForge.xhp
-msgctxt ""
-"lib_ScriptForge.xhp\n"
-"par_id901528999850603\n"
-"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#basiclibrarynote\" markup=\"keep\"/><br/> <item type=\"literal\">GlobalScope.BasicLibraries.LoadLibrary(\"ScriptForge\")</item>"
-msgstr ""
-
#. WLejn
#: lib_ScriptForge.xhp
msgctxt ""
@@ -79,15 +151,69 @@ msgctxt ""
msgid "The <literal>ScriptForge</literal> Basic library is available from %PRODUCTNAME 7.1 onwards."
msgstr ""
-#. acPUv
+#. Depaw
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
-"par_id891611613601554\n"
+"hd_id851613836643580\n"
"help.text"
msgid "Services provided by the ScriptForge library"
msgstr ""
+#. dw2Fe
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838858931\n"
+"help.text"
+msgid "Category"
+msgstr ""
+
+#. TmFbF
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id441613838858931\n"
+"help.text"
+msgid "Services"
+msgstr ""
+
+#. ZZKBq
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id851613847558931\n"
+"help.text"
+msgid "%PRODUCTNAME Basic"
+msgstr ""
+
+#. jv7Z3
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613838825831\n"
+"help.text"
+msgid "Document Content"
+msgstr ""
+
+#. 8fZtg
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613947858931\n"
+"help.text"
+msgid "User Interface"
+msgstr ""
+
+#. dAomL
+#: lib_ScriptForge.xhp
+msgctxt ""
+"lib_ScriptForge.xhp\n"
+"par_id131613866258931\n"
+"help.text"
+msgid "Utilities"
+msgstr ""
+
#. 6gvZc
#: lib_ScriptForge.xhp
msgctxt ""
@@ -178,14 +304,14 @@ msgctxt ""
msgid "Its entry points are:"
msgstr "Входните ѝ точки са:"
-#. SBNCb
+#. puNwN
#: lib_euro.xhp
msgctxt ""
"lib_euro.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Euro Converter…</emph> wizard loads the following libraries in memory:"
-msgstr "Избирането на помощника <emph>Преобразуване към евро…</emph> зарежда в паметта следните библиотеки:"
+msgid "Selecting the <emph>Euro Converter</emph> wizard loads the following libraries in memory:"
+msgstr ""
#. TGAHA
#: lib_euro.xhp
@@ -268,13 +394,13 @@ msgctxt ""
msgid "Description"
msgstr ""
-#. kN4F6
+#. ewcAB
#: lib_gimmicks.xhp
msgctxt ""
"lib_gimmicks.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText...</emph> wizard."
+msgid "The <emph>Gimmicks</emph> library is used by the <emph>AutoText</emph> wizard."
msgstr ""
#. kHzUe
@@ -358,14 +484,14 @@ msgctxt ""
msgid "Description"
msgstr "Описание"
-#. asxd6
+#. Anhsb
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id921593518140986\n"
"help.text"
-msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document converter...</emph> wizard."
-msgstr "Библиотеката <emph>ImportWizard</emph> се използва от помощника <emph>Преобразуване на документи...</emph>."
+msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document Converter</emph> wizard."
+msgstr ""
#. FaGZt
#: lib_importwiz.xhp
@@ -376,14 +502,14 @@ msgctxt ""
msgid "Its entry point is:"
msgstr "Входната ѝ точка е:"
-#. EyBsL
+#. foGsC
#: lib_importwiz.xhp
msgctxt ""
"lib_importwiz.xhp\n"
"par_id381593519742529\n"
"help.text"
-msgid "Selecting the <emph>Document Converter...</emph> wizard loads the following libraries in memory:"
-msgstr "Избирането на помощника <emph>Преобразуване на документи...</emph> зарежда в паметта следните библиотеки:"
+msgid "Selecting the <emph>Document Converter</emph> wizard loads the following libraries in memory:"
+msgstr ""
#. vV4TD
#: lib_importwiz.xhp
@@ -2230,13 +2356,13 @@ msgctxt ""
msgid "Definitions"
msgstr ""
-#. nXWRV
+#. 4gE5A
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id511591016999246\n"
"help.text"
-msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>)."
+msgid "Many methods require a \"<emph>Sheet</emph>\" or a \"<emph>Range</emph>\" as argument. Single cells are considered a special case of a <literal>Range</literal>."
msgstr ""
#. kq2Br
@@ -2275,15 +2401,6 @@ msgctxt ""
msgid "The example below copies data from document A (opened as read-only and hidden) to document B."
msgstr ""
-#. 22mej
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id941591020321580\n"
-"help.text"
-msgid "SheetName"
-msgstr ""
-
#. iED65
#: sf_calc.xhp
msgctxt ""
@@ -2302,15 +2419,6 @@ msgctxt ""
msgid "The shortcut \"~\" (tilde) represents the current sheet."
msgstr ""
-#. pL4FD
-#: sf_calc.xhp
-msgctxt ""
-"sf_calc.xhp\n"
-"hd_id101591020737697\n"
-"help.text"
-msgid "RangeName"
-msgstr ""
-
#. nskFb
#: sf_calc.xhp
msgctxt ""
@@ -4282,6 +4390,636 @@ msgctxt ""
msgid "'Sort range based on columns A (ascending) and C (descending)"
msgstr ""
+#. zNFY6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDatabases.Database service"
+msgstr ""
+
+#. K7nuj
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id371587913266310\n"
+"help.text"
+msgid "<variable id=\"DatabaseService\"><link href=\"text/sbasic/shared/03/sf_database.xhp\" name=\"Database service\"><literal>SFDatabases</literal>.<literal>Database</literal> service</link></variable>"
+msgstr ""
+
+#. RByov
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407198144\n"
+"help.text"
+msgid "The <literal>Database</literal> service provides access to databases either embedded or described in Base documents. This service provides methods to:"
+msgstr ""
+
+#. 7dqXS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924481\n"
+"help.text"
+msgid "Get access to data in database tables."
+msgstr ""
+
+#. 29pT5
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924285\n"
+"help.text"
+msgid "Run <literal>SELECT</literal> queries and perform aggregate functions."
+msgstr ""
+
+#. LYsPD
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551615386924111\n"
+"help.text"
+msgid "Run SQL action statements such as <literal>INSERT</literal>, <literal>UPDATE</literal>, <literal>DELETE</literal>, etc."
+msgstr ""
+
+#. ABgYk
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id811599407236602\n"
+"help.text"
+msgid "Each instance of the <literal>Database</literal> service represents a single database and gives access to its tables, queries and data. This service does not provide access to forms or reports in the Base document."
+msgstr ""
+
+#. Snu6R
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231615386789950\n"
+"help.text"
+msgid "All exchanges between this service and the database are done using SQL only."
+msgstr ""
+
+#. MiGUE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id121599407322804\n"
+"help.text"
+msgid "SQL statements may be run in <emph>direct</emph> or <emph>indirect</emph> mode. In direct mode the statement is transferred to the database engine without any syntax checking or review."
+msgstr ""
+
+#. Kg5Cn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id681599407189019\n"
+"help.text"
+msgid "The provided interfaces include simple tables and queries lists, as well as access to database data."
+msgstr ""
+
+#. N3J98
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id891599407280007\n"
+"help.text"
+msgid "To make SQL statements more readable, you can use optional square brackets to enclose tables, queries and fields instead of using other enclosing characters that may be exclusive to certain Relational Database Management Systems (RDBMS)."
+msgstr ""
+
+#. CAFnK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id91587913266988\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. GBCxf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id541599408159668\n"
+"help.text"
+msgid "The code snippet below shows how to access any database with the <literal>Database</literal> service."
+msgstr ""
+
+#. RApNW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id471599408248873\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. f2tV4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id111615146818256\n"
+"help.text"
+msgid "<emph>FileName</emph>: The name of the Base file. Must be expressed using <literal>SF_FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. yg5bv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id771615146944307\n"
+"help.text"
+msgid "<emph>RegistrationName</emph>: The name of a registered database. If a file name is provided, this argument should not be used."
+msgstr ""
+
+#. RM9c6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id491615147048748\n"
+"help.text"
+msgid "Conversely, if a <literal>RegistrationName</literal> is specified, the <literal>FileName</literal> parameter should not be defined."
+msgstr ""
+
+#. 3d6NY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id841615147168279\n"
+"help.text"
+msgid "<emph>ReadOnly</emph>: Determines if the database will be opened as readonly (Default = True)."
+msgstr ""
+
+#. Gn7AF
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id291615147236001\n"
+"help.text"
+msgid "<emph>User, Password</emph>: Additional connection parameters to the database server."
+msgstr ""
+
+#. Z2VVg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id771615147491563\n"
+"help.text"
+msgid "Accessing Databases with the UI Service"
+msgstr ""
+
+#. 6s3Hr
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id901599408410712\n"
+"help.text"
+msgid "It is also possible to access the database associated with a Base document using the <link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"UI Service\"><literal>ScriptForge.UI</literal></link> service, as shown in the example below:"
+msgstr ""
+
+#. T6mkQ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id631615147843278\n"
+"help.text"
+msgid "' User and password are supplied below, if needed"
+msgstr ""
+
+#. 88wGG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id921599408791887\n"
+"help.text"
+msgid "' ... Run queries, SQL statements, ..."
+msgstr ""
+
+#. EF9Lc
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"hd_id841587913266618\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. x4Z5A
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521587913266568\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. QUrYT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587913266368\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. 3kQCm
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id631587914939732\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. RYuuo
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id951587913266220\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. BzLQb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id651587913266754\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. up8WT
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id421587914989890\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. dGoYp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id351587913266349\n"
+"help.text"
+msgid "The list of stored queries."
+msgstr ""
+
+#. bfdLR
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id931599409717463\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 2DDTs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599409717945\n"
+"help.text"
+msgid "Array of strings"
+msgstr ""
+
+#. rGTvw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id341599409717612\n"
+"help.text"
+msgid "The list of stored tables."
+msgstr ""
+
+#. u5YE4
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id741599409777967\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. evuSw
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id551599409777759\n"
+"help.text"
+msgid "The UNO object representing the current database connection."
+msgstr ""
+
+#. w9YZG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599409887585\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NeTGg
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id861599409887284\n"
+"help.text"
+msgid "The UNO object representing the metadata describing the database system attributes."
+msgstr ""
+
+#. ApsdK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the Database Service"
+msgstr ""
+
+#. emrA2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id201587913266596\n"
+"help.text"
+msgid "Closes the current database connection."
+msgstr ""
+
+#. nwbSh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id13159655484952\n"
+"help.text"
+msgid "Computes the given aggregate function on a field or expression belonging to a table."
+msgstr ""
+
+#. E9LsG
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id101615148468548\n"
+"help.text"
+msgid "Optionally, a SQL <literal>WHERE</literal> clause can be specified as a filter that will be applied prior to the aggregate function."
+msgstr ""
+
+#. rKxVP
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441596554849949\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 3PSmS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id381596554849698\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. F4AAZ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id521596554849185\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. AGBFS
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id781615150306678\n"
+"help.text"
+msgid "The example below assumes the file <literal>Employees.odb</literal> has a table named <literal>EmployeeData</literal>."
+msgstr ""
+
+#. KAqZB
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id871615150277916\n"
+"help.text"
+msgid "' Counts the number of employees in the table"
+msgstr ""
+
+#. AVstM
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id291615150373387\n"
+"help.text"
+msgid "' Returns the sum of all salaries in the table"
+msgstr ""
+
+#. cMiVJ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id931615150423062\n"
+"help.text"
+msgid "' Below are some examples of how tables can be filtered"
+msgstr ""
+
+#. kCmmv
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id41599488113961\n"
+"help.text"
+msgid "Computes a SQL expression on a single record returned by a <literal>WHERE</literal> clause defined by the <literal>Criteria</literal> parameter."
+msgstr ""
+
+#. 8yUaz
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id601615381471954\n"
+"help.text"
+msgid "If the query returns multiple records, only the first one is considered. Use the <literal>OrderClause</literal> parameter to determine how query results are sorted."
+msgstr ""
+
+#. CNwh2
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id671599488113986\n"
+"help.text"
+msgid "<emph>Expression</emph>: A SQL expression in which the field names are surrounded with square brackets."
+msgstr ""
+
+#. 5DGVh
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id441599488113247\n"
+"help.text"
+msgid "<emph>TableName</emph>: A table name (without square brackets)."
+msgstr ""
+
+#. jtrX7
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id40159948811316\n"
+"help.text"
+msgid "<emph>Criteria</emph>: A <literal>WHERE</literal> clause without the \"WHERE\" keyword, in which field names are surrounded with square brackets."
+msgstr ""
+
+#. X5HJp
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id71599488689029\n"
+"help.text"
+msgid "<emph>OrderClause</emph>: An <literal>ORDER BY</literal> clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets."
+msgstr ""
+
+#. CPoBx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id481599489278579\n"
+"help.text"
+msgid "Stores the contents of a table or the results of a <literal>SELECT</literal> query or of an SQL statement in a two-dimensional array. The first index in the array corresponds to the rows and the second index refers to the columns."
+msgstr ""
+
+#. GXji8
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id821615384762425\n"
+"help.text"
+msgid "An upper limit can be specified to the number of returned rows. Optionally column names may be inserted in the first row of the array."
+msgstr ""
+
+#. gX7AY
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599490209915\n"
+"help.text"
+msgid "The returned array will be empty if no rows are returned and the column headers are not required."
+msgstr ""
+
+#. dURZU
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id451599489278429\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A table or query name (without square brackets) or a <literal>SELECT</literal> SQL statement."
+msgstr ""
+
+#. fFFFd
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id271599489278141\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. This argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
+#. unoDn
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id941599489278747\n"
+"help.text"
+msgid "<emph>Header</emph>: When <literal>True</literal>, the first row of the returned array contains the column headers."
+msgstr ""
+
+#. BZxwK
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id591599489278926\n"
+"help.text"
+msgid "<emph>MaxRows</emph>: The maximum number of rows to return. The default is zero, meaning there is no limit to the number of returned rows."
+msgstr ""
+
+#. 3XZPf
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id721615385125947\n"
+"help.text"
+msgid "Below are a few examples of how the <literal>GetRows</literal> method can be used:"
+msgstr ""
+
+#. zkeuW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id171615385196045\n"
+"help.text"
+msgid "' Returns all rows in the table with column headers"
+msgstr ""
+
+#. eFmmE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"bas_id371615385230721\n"
+"help.text"
+msgid "' Returns the first 50 employee records ordered by the 'FirstName' field"
+msgstr ""
+
+#. FMBEy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id31599490609759\n"
+"help.text"
+msgid "Executes an action query of an SQL statement such as creating a table, as well as inserting, updating and deleting records."
+msgstr ""
+
+#. gyiQy
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id331615385491925\n"
+"help.text"
+msgid "The method returns <literal>True</literal> when successful."
+msgstr ""
+
+#. G5bDE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id21599490810021\n"
+"help.text"
+msgid "The <literal>RunSql</literal> method is rejected with an error message in case the database was previously opened in read-only mode."
+msgstr ""
+
+#. cMjus
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id701599490609473\n"
+"help.text"
+msgid "<emph>SQLCommand</emph>: A query name (without square brackets) or a SQL statement."
+msgstr ""
+
+#. kngXb
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id51599490609377\n"
+"help.text"
+msgid "<emph>DirectSQL</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. (Default = <literal>False</literal>). For queries, the applied option is the one set when the query was defined."
+msgstr ""
+
#. BC4Sc
#: sf_dialog.xhp
msgctxt ""
@@ -4363,13 +5101,13 @@ msgctxt ""
msgid "Service invocation and usage"
msgstr ""
-#. hZcuK
+#. v8RcL
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The dialog service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
+msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three arguments to specify the dialog box to activate:"
msgstr ""
#. Ntzqh
@@ -4444,6 +5182,15 @@ msgctxt ""
msgid "Note that in previous examples, the prefix <literal>\"SFDialogs.\"</literal> may be omitted."
msgstr ""
+#. zLWvF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id251612628336779\n"
+"help.text"
+msgid "Properties or methods marked below as <emph>(7.2)</emph> are available as from %PRODUCTNAME 7.2 onwards."
+msgstr ""
+
#. nXGkZ
#: sf_dialog.xhp
msgctxt ""
@@ -4669,121 +5416,301 @@ msgctxt ""
msgid "The UNO object representing the dialog view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControl interface\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog-members.html\" name=\"UnoControlDialog interface\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. gTQjc
+#. q8eyc
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id921606472825856\n"
+"hd_id421612628828054\n"
"help.text"
-msgid "Methods"
+msgid "Event properties"
msgstr ""
-#. DiCyL
+#. EbGWN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id871583933076448\n"
+"par_id41612629140856\n"
"help.text"
-msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
msgstr ""
-#. 7QdPA
+#. XCC7C
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id151598178880227\n"
+"par_id961612628879819\n"
"help.text"
-msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgid "Name"
msgstr ""
-#. L9qDh
+#. V3bin
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id61583933076171\n"
+"par_id401612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "ReadOnly"
msgstr ""
-#. iFcFd
+#. uW85z
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id26158393307687\n"
+"par_id281612628879819\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Basic IDE Description"
msgstr ""
-#. eYDfG
+#. dFkbN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"bas_id841598179117184\n"
+"par_id111612629836630\n"
"help.text"
-msgid "' Dialog stored in current document's standard library"
+msgid "Yes"
msgstr ""
-#. 4qLn9
+#. aKBvg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id161584541257982\n"
+"par_id1001612629836902\n"
"help.text"
-msgid "Return either:"
+msgid "When receiving focus"
msgstr ""
-#. isSnB
+#. 4FBaJ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id421598179770993\n"
+"par_id291612629836294\n"
"help.text"
-msgid "the list of the controls contained in the dialog"
+msgid "Yes"
msgstr ""
-#. 4EuYK
+#. 8U7FZ
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id81598185229301\n"
+"par_id62161262983683\n"
"help.text"
-msgid "a dialog control class instance based on its name"
+msgid "When losing focus"
msgstr ""
-#. 2RFtC
+#. wBCKi
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id601584541257443\n"
+"par_id81612629836634\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functsyntax\"/>"
+msgid "Yes"
msgstr ""
-#. 7PGuV
+#. CK5vU
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id291584541257237\n"
+"par_id881612629836744\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functparameters\"/>"
+msgid "Key pressed"
msgstr ""
-#. AEAHd
+#. gXJGu
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id1001584541257789\n"
+"par_id591612629836830\n"
"help.text"
-msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
+msgid "Yes"
msgstr ""
-#. atHXa
+#. CJwi7
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"hd _id32158454125769\n"
+"par_id161612629836775\n"
"help.text"
-msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
+msgid "Key released"
+msgstr ""
+
+#. wS7GH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. GcDU7
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. eUS49
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QrByH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. CRGTF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 69s4B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. ojLRr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. XaS8A
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. MnMUF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NtqPz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. czknv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. J2uzg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. gTQjc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id921606472825856\n"
+"help.text"
+msgid "Methods"
+msgstr ""
+
+#. DiCyL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the current <literal>Dialog</literal> instance. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 7QdPA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is called from a dialog or control event, or when a dialog is displayed in non-modal mode."
+msgstr ""
+
+#. eYDfG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id841598179117184\n"
+"help.text"
+msgid "' Dialog stored in current document's standard library"
+msgstr ""
+
+#. 4qLn9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161584541257982\n"
+"help.text"
+msgid "Return either:"
+msgstr ""
+
+#. isSnB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id421598179770993\n"
+"help.text"
+msgid "the list of the controls contained in the dialog"
+msgstr ""
+
+#. 4EuYK
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id81598185229301\n"
+"help.text"
+msgid "a dialog control class instance based on its name"
+msgstr ""
+
+#. AEAHd
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001584541257789\n"
+"help.text"
+msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
msgstr ""
#. j8x9C
@@ -4876,22 +5803,13 @@ msgctxt ""
msgid "' Dialog stored in current document's standard library"
msgstr ""
-#. FrCG7
-#: sf_dialog.xhp
-msgctxt ""
-"sf_dialog.xhp\n"
-"bas_id781612273203518\n"
-"help.text"
-msgid "End Select"
-msgstr ""
-
-#. DYy75
+#. ARCGg
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id21598187953679\n"
"help.text"
-msgid "Terminate the dialog service for the current instance. Return <literal>True</literal> if the termination was successful."
+msgid "Terminate the <literal>Dialog</literal> service for the current instance. Return <literal>True</literal> if the termination was successful."
msgstr ""
#. BFfGX
@@ -4921,31 +5839,31 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service manages the controls belonging to a dialog defined with the Basic <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Dialog Editor\">Dialog Editor</link>. Each instance of the current service represents a single control within a dialog box."
msgstr ""
-#. 3oXnC
+#. 7dDgL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bm_id331612167249331\n"
+"par_id701598191157426\n"
"help.text"
-msgid "<bookmark_value>API;awt.XControl</bookmark_value> <bookmark_value>API;awt.XControlModel</bookmark_value>"
+msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
msgstr ""
-#. 7dDgL
+#. fFfwe
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id701598191157426\n"
+"par_id981598191184526\n"
"help.text"
-msgid "The focus is set on getting and setting the values displayed by the controls of the dialog box. Formatting is accessible via the <literal>XControlModel</literal> and <literal>XControlView</literal> properties."
+msgid "Note that the unique <literal>DialogControl.Value</literal> property content varies according to the control type."
msgstr ""
-#. GqHgy
+#. MBrzA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id981598191184526\n"
+"par_id991612698027551\n"
"help.text"
-msgid "Note that <literal>DialogControl.Value</literal> property content varies according to UNO control types."
+msgid "A special attention is given to controls of type tree control. It is easy to populate a tree, either branch by branch, or with a set of branches at once. Populating a tree control can be performed statically or dynamically."
msgstr ""
#. 9LpGF
@@ -5029,6 +5947,15 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service is available for these control types:"
msgstr ""
+#. ScLTk
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612698897514\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
#. 7xddb
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5092,6 +6019,15 @@ msgctxt ""
msgid "No"
msgstr ""
+#. jqpFz
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id231598538847029\n"
+"help.text"
+msgid "Button"
+msgstr ""
+
#. aTyMC
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5146,6 +6082,33 @@ msgctxt ""
msgid "One of the types listed above."
msgstr ""
+#. oMipU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id67161270548283\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. 59ovD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341612705482566\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. w2ZhT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612705482919\n"
+"help.text"
+msgid "The currently upmost node selected in the tree control. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. veivJ
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5200,13 +6163,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. DrmM6
+#. 6L9ke
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id491598539231618\n"
+"par_id491598529331618\n"
"help.text"
-msgid "DateField, TimeField, FormattedField (read-only)"
+msgid "(read-only)"
msgstr ""
#. QbN5U
@@ -5425,6 +6388,33 @@ msgctxt ""
msgid "Specifies the file name containing a bitmap or other type of graphic to be displayed on the specified control. The filename must comply with the <literal>FileNaming</literal> attribute of the <literal>ScriptForge.FileSystem</literal> service."
msgstr ""
+#. LZLsc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612700624650\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. QxAW9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612700624483\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. m4N4j
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id11612700624514\n"
+"help.text"
+msgid "An object representing the lowest root node (usually there is only one such root node). Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XmutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
#. PqsSY
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5515,13 +6505,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. fk87j
+#. ZHrsm
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id991598517671916\n"
+"par_id1001598540024225\n"
"help.text"
-msgid "Read below."
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\" name=\"Value property\">Value property</link>"
msgstr ""
#. PqKgo
@@ -5623,13 +6613,49 @@ msgctxt ""
msgid "The UNO object representing the control view. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControl.html\" name=\"awt.XControl\">XControl</link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1awt_1_1UnoControlDialog.html)\" name=\"awt.UnoControlDialog\">UnoControlDialog</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. agJv5
+#. SAkJX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612699446459\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. yuAdF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612699446893\n"
+"help.text"
+msgid "UNO<br/>object"
+msgstr ""
+
+#. 3Dmwo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id25161269944611\n"
+"help.text"
+msgid "TreeControl"
+msgstr ""
+
+#. 7XckG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id691612699446892\n"
+"help.text"
+msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\" name=\"awt.tree.XMutableTreeDataModel\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
+msgstr ""
+
+#. dfWTW
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"hd_id81598540704978\n"
"help.text"
-msgid "The Value property"
+msgid "The <variable id=\"ValueProperty\">Value property</variable>"
msgstr ""
#. JHK7w
@@ -5659,6 +6685,15 @@ msgctxt ""
msgid "Description"
msgstr ""
+#. kfK2B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id271598543254590\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. jEyx9
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5686,6 +6721,15 @@ msgctxt ""
msgid "0, False: not checked<br/>1, True: checked<br/>2: grayed, don't know"
msgstr ""
+#. EKHtH
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781598543254887\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. nZVA5
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5704,6 +6748,24 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. DoCfT
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401598543254743\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. XzBhY
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id731598543254544\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. kgfXR
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5749,6 +6811,15 @@ msgctxt ""
msgid "Numeric"
msgstr ""
+#. CCkkF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81598543254625\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. YvPAp
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5767,6 +6838,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. veFie
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id561598543254115\n"
+"help.text"
+msgid "Boolean"
+msgstr ""
+
#. ZragT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5794,6 +6874,15 @@ msgctxt ""
msgid "Must be within the predefined bounds"
msgstr ""
+#. 5VuCQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id751598543254299\n"
+"help.text"
+msgid "String"
+msgstr ""
+
#. a9AMF
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5803,6 +6892,348 @@ msgctxt ""
msgid "The text appearing in the field"
msgstr ""
+#. wGGjL
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id341598543254600\n"
+"help.text"
+msgid "Date"
+msgstr ""
+
+#. CABLr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"hd_id421612628828054\n"
+"help.text"
+msgid "Event properties"
+msgstr ""
+
+#. c7srp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612629140856\n"
+"help.text"
+msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.openoffice.org/wiki/Documentation/DevGuide/Scripting/Scripting_Framework_URI_Specification\" name=\"URI specification\">scripting framework URI specification</link>."
+msgstr ""
+
+#. fkFAt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id961612628879819\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. 2sB8F
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id401612628879819\n"
+"help.text"
+msgid "ReadOnly"
+msgstr ""
+
+#. 2A2Ex
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id281612628879819\n"
+"help.text"
+msgid "Description as labeled in the Basic IDE"
+msgstr ""
+
+#. rSRBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id91612707166532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. aABgD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612707166258\n"
+"help.text"
+msgid "Execute action"
+msgstr ""
+
+#. KnFdW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id79161270716675\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JrRob
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id831612707166731\n"
+"help.text"
+msgid "While adjusting"
+msgstr ""
+
+#. mpuj3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id111612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 7Swj5
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001612629836902\n"
+"help.text"
+msgid "When receiving focus"
+msgstr ""
+
+#. Mp4i7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291612629836294\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. ozGia
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id62161262983683\n"
+"help.text"
+msgid "When losing focus"
+msgstr ""
+
+#. TR5uW
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612707354544\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. HREcr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612707354899\n"
+"help.text"
+msgid "Item status changed"
+msgstr ""
+
+#. L6e2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id81612629836634\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. sVo6A
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612629836744\n"
+"help.text"
+msgid "Key pressed"
+msgstr ""
+
+#. pPBHX
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612629836830\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. P6NX8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id161612629836775\n"
+"help.text"
+msgid "Key released"
+msgstr ""
+
+#. XJGHA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id891612629836630\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. oCDXm
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id461612629836679\n"
+"help.text"
+msgid "Mouse moved while key presses"
+msgstr ""
+
+#. nLbMG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id131612629836291\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9XdcG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612629836151\n"
+"help.text"
+msgid "Mouse inside"
+msgstr ""
+
+#. BZ7sC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id211612629836725\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. mzbBD
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id361612629836624\n"
+"help.text"
+msgid "Mouse outside"
+msgstr ""
+
+#. fAD8Y
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id311612629836481\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. FCBxu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id721612629836752\n"
+"help.text"
+msgid "Mouse moved"
+msgstr ""
+
+#. 4DCtC
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id981612629836116\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 8B9ct
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id381612629836635\n"
+"help.text"
+msgid "Mouse button pressed"
+msgstr ""
+
+#. krueU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id711612629836704\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4c5qE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id35161262983642\n"
+"help.text"
+msgid "Mouse button released"
+msgstr ""
+
+#. FkyLb
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id851612707606863\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. VudpK
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id351612707606197\n"
+"help.text"
+msgid "(Not in Basic IDE) when the expansion button is pressed on a node in a tree control"
+msgstr ""
+
+#. TkEgQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id121612707606251\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. quWBQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id881612707606121\n"
+"help.text"
+msgid "(Not in Basic IDE) when a node in a tree control is selected"
+msgstr ""
+
+#. qyb3B
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id811612707606330\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. th6Kr
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id621612707606219\n"
+"help.text"
+msgid "Text modified"
+msgstr ""
+
#. YFbGT
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5821,33 +7252,222 @@ msgctxt ""
msgid "List of Methods in the DialogControl Service"
msgstr ""
-#. 3oU3L
+#. 5jtfg
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id871583933076448\n"
+"par_id831612711823126\n"
"help.text"
-msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgid "Create and return a new node of the tree control as a UNO object subordinate to a parent node. <variable id=\"XMutableTreeNode\">Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeNode.html\" name=\"awt.tree.XMutableTreeNode\">XMutableTreeNode</link> in Application Programming Interface (API) documentation for detailed information.</variable>"
msgstr ""
-#. 6YvuU
+#. MrQnS
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id151598178880227\n"
+"par_id741612711823706\n"
"help.text"
-msgid "This method is often called from a dialog or control event."
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. B7sAb
+#. cK7HA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id841598179117184\n"
+"par_id761612711823834\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. g2Ubo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id791612711823819\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. GV6Gp
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id911612711823382\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. qbb2x
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id401612711823779\n"
"help.text"
msgid "'Dialog stored in current document's standard library"
msgstr ""
+#. 8B3qP
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id221612713087885\n"
+"help.text"
+msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
+msgstr ""
+
+#. UkE9k
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781612713087722\n"
+"help.text"
+msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgstr ""
+
+#. 2FTD4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id36161271308759\n"
+"help.text"
+msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgstr ""
+
+#. r5QNj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id61612716027443\n"
+"help.text"
+msgid "Flat tree >>>> Resulting subtree"
+msgstr ""
+
+#. SQH7v
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id51612713087915\n"
+"help.text"
+msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgstr ""
+
+#. fWnhZ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151612780723320\n"
+"help.text"
+msgid "Returns a new root node of the tree control, as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. The new tree root is inserted below pre-existing root nodes. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. YT845
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id821612780723965\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
+msgstr ""
+
+#. QiXVA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id671612780723837\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgstr ""
+
+#. Cw3b9
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id31612780723267\n"
+"help.text"
+msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgstr ""
+
+#. Ynpwt
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id171612781589503\n"
+"help.text"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgstr ""
+
+#. 5Jxkj
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id741612782475457\n"
+"help.text"
+msgid "When not found, the method returns <literal>Nothing</literal>, to be tested with the <literal>IsNull()</literal> builtin function."
+msgstr ""
+
+#. n7pE8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id41612781589363\n"
+"help.text"
+msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
+msgstr ""
+
+#. t5Kcc
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id541613670199211\n"
+"help.text"
+msgid "One argument out of <literal>DisplayValue</literal>or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgstr ""
+
+#. KMPVF
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id591612781589560\n"
+"help.text"
+msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"Sting service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgstr ""
+
+#. CF4o6
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id481612781589626\n"
+"help.text"
+msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
+msgstr ""
+
+#. g7uEG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id141582384726168\n"
+"help.text"
+msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgstr ""
+
+#. 3oU3L
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id871583933076448\n"
+"help.text"
+msgid "Set the focus on the control. Return <literal>True</literal> if focusing was successful."
+msgstr ""
+
+#. 6YvuU
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id151598178880227\n"
+"help.text"
+msgid "This method is often called from a dialog or control event."
+msgstr ""
+
#. HNmmm
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -5866,13 +7486,13 @@ msgctxt ""
msgid "An error is raised if the actual control is not of the type <literal>TextField</literal> or is not multiline."
msgstr ""
-#. MwNhE
+#. AKiEA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Line</emph> : The string to insert. Default = an empty line."
+msgid "<emph>Line</emph>: The string to insert. Default is an empty line."
msgstr ""
#. opNus
@@ -8017,15 +9637,6 @@ msgctxt ""
msgid "The following code snippet invokes the <literal>FileSystem</literal> service. The method <literal>BuildPath</literal> was used as an example."
msgstr ""
-#. hUmn8
-#: sf_filesystem.xhp
-msgctxt ""
-"sf_filesystem.xhp\n"
-"bm_id901612991354326\n"
-"help.text"
-msgid "<bookmark_value>FileSystem service;FileNaming property</bookmark_value> <bookmark_value>FileSystem service;ConfigFolder property</bookmark_value> <bookmark_value>FileSystem service;ExtensionsFolder property</bookmark_value> <bookmark_value>FileSystem service;HomeFolder property</bookmark_value> <bookmark_value>FileSystem service;InstallFolder property</bookmark_value> <bookmark_value>FileSystem service;TemplatesFolder property</bookmark_value> <bookmark_value>FileSystem service;TemporaryFolder property</bookmark_value> <bookmark_value>FileSystem service;UserTemplatesFolder property</bookmark_value>"
-msgstr ""
-
#. Gsznv
#: sf_filesystem.xhp
msgctxt ""
@@ -8269,22 +9880,22 @@ msgctxt ""
msgid "Joins a folder path and the name of a file and returns the full file name with a valid path separator. The path separator is added only if necessary."
msgstr ""
-#. dbCP6
+#. EDmLL
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id90158393307695\n"
"help.text"
-msgid "<emph>FolderName</emph> : The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
+msgid "<emph>FolderName</emph>: The path with which <literal>Name</literal> will be combined. The specified path does not need to be an existing folder."
msgstr ""
-#. LaGBv
+#. TqBVA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id891583933076975\n"
"help.text"
-msgid "<emph>Name</emph> : The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
+msgid "<emph>Name</emph>: The name of the file to be appended to <literal>FolderName</literal>. This parameter uses the notation of the current operating system."
msgstr ""
#. DwTpc
@@ -8305,22 +9916,22 @@ msgctxt ""
msgid "Depending on the value of the <literal>CompareContents</literal> argument, the comparison between both files can be either based only on file attributes (such as the last modified date), or based on the file contents."
msgstr ""
-#. dLpG4
+#. kYy2f
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481601118910755\n"
"help.text"
-msgid "<emph>FileName1, FileName2</emph> : The files to compare."
+msgid "<emph>FileName1, FileName2</emph>: The files to compare."
msgstr ""
-#. TAPBR
+#. mXZPN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111601118910848\n"
"help.text"
-msgid "<emph>CompareContents</emph> : When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
+msgid "<emph>CompareContents</emph>: When <literal>True</literal>, the contents of the files are compared (default = <literal>False</literal>)."
msgstr ""
#. EZNG5
@@ -8350,22 +9961,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ErB6x
+#. cxNda
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001584541257789\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be copied."
msgstr ""
-#. A3qtd
+#. pwEq9
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id111584542310166\n"
"help.text"
-msgid "<emph>Destination</emph> : It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: It can be either a <literal>FileName</literal> specifying where the single <literal>Source</literal> file is to be copied, or a <literal>FolderName</literal> into which the multiple files from <literal>Source</literal> are to be copied."
msgstr ""
#. FCpqn
@@ -8386,13 +9997,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. 53E5r
+#. 48FYf
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431558\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. KerV3
@@ -8440,22 +10051,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. ygWn7
+#. isESD
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id851584544734202\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be copied."
msgstr ""
-#. EgL3W
+#. 5fFnt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id321584544734273\n"
"help.text"
-msgid "<emph>Destination</emph> : Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
+msgid "<emph>Destination</emph>: Specifies the <literal>FolderName</literal> into which the single or multiple folders defined in <literal>Source</literal> are to be copied."
msgstr ""
#. CzQ9A
@@ -8476,13 +10087,13 @@ msgctxt ""
msgid "Wildcard characters are not allowed in <literal>Destination</literal>."
msgstr ""
-#. KCfZf
+#. 2ziFA
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id251584542431525\n"
"help.text"
-msgid "<emph>Overwrite</emph> : If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
+msgid "<emph>Overwrite</emph>: If <literal>True</literal> (default), files may be overwritten. The method will fail if <literal>Destination</literal> is readonly, regardless of the value specified in <literal>Overwrite</literal>."
msgstr ""
#. niaPD
@@ -8512,13 +10123,13 @@ msgctxt ""
msgid "If the specified folder has a parent folder that does not exist, it is created."
msgstr ""
-#. ZFWUY
+#. G2A8N
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id491584540675469\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be created. If the folder already exists, an exception will be raised."
+msgid "<emph>FolderName</emph>: A string representing the folder to be created. If the folder already exists, an exception will be raised."
msgstr ""
#. EYSCS
@@ -8539,31 +10150,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. tykpH
+#. hBQSN
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id901585322689715\n"
"help.text"
-msgid "<emph>FileName</emph> : The name of the file to be created."
+msgid "<emph>FileName</emph>: The name of the file to be created."
msgstr ""
-#. ZcmDb
+#. VkGyb
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id501585322689209\n"
"help.text"
-msgid "<emph>Overwrite</emph> : Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
+msgid "<emph>Overwrite</emph>: Boolean value that determines if <literal>FileName</literal> can be overwritten (default = <literal>True</literal>)."
msgstr ""
-#. X7GW9
+#. Zp6H3
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585322689192\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. eoE92
@@ -8611,13 +10222,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. D8kDv
+#. 2k57M
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id441584882040860\n"
"help.text"
-msgid "<emph>FileName</emph> : It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
+msgid "<emph>FileName</emph>: It can be a <literal>FileName</literal> or a <literal>NamePattern</literal> indicating one or more files to be deleted."
msgstr ""
#. YtAfH
@@ -8665,13 +10276,13 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. zdaKv
+#. ecg9D
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id451584882542247\n"
"help.text"
-msgid "<emph>FolderName</emph> : It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
+msgid "<emph>FolderName</emph>: It can be a <literal>FolderName</literal> or a <literal>NamePattern</literal> indicating one or more folders to be deleted."
msgstr ""
#. ECKGi
@@ -8701,13 +10312,13 @@ msgctxt ""
msgid "If the <literal>FileName</literal> parameter is actually an existing folder name, the method returns <literal>False</literal>."
msgstr ""
-#. 5sCo3
+#. 7pDFB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id361583764426547\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file to be tested."
+msgid "<emph>FileName</emph>: A string representing the file to be tested."
msgstr ""
#. ChDCL
@@ -8737,22 +10348,22 @@ msgctxt ""
msgid "The resulting list may be filtered with wildcards."
msgstr ""
-#. QFJEd
+#. YsYdQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id731583944543140\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. 6qDtR
+#. V95Bm
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id591585648450060\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of files (default = \"\")."
msgstr ""
#. HJ9vL
@@ -8782,13 +10393,13 @@ msgctxt ""
msgid "If the <literal>FolderName</literal> parameter is actually an existing file name, the method returns <literal>False</literal>."
msgstr ""
-#. SQVF8
+#. Z46FB
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id1001583765642211\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing the folder to be tested."
+msgid "<emph>FolderName</emph>: A string representing the folder to be tested."
msgstr ""
#. eAFVs
@@ -8809,13 +10420,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. kotiz
+#. B3jVo
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id691584110618308\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. VcGyZ
@@ -8863,13 +10474,13 @@ msgctxt ""
msgid "If this method is applied to a folder name or to a file without an extension, then an empty string is returned."
msgstr ""
-#. tQpBe
+#. GDoGW
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821584032680311\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. Am6Bu
@@ -8890,13 +10501,13 @@ msgctxt ""
msgid "The <literal>GetFileLen</literal> method can handle files with much larger sizes by returning a <literal>Currency</literal> value."
msgstr ""
-#. cC9GE
+#. FvwV6
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id161600685050367\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. o2GGJ
@@ -8908,13 +10519,13 @@ msgctxt ""
msgid "Returns the last modified date of a given file."
msgstr ""
-#. ssSmV
+#. dxpgz
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id25158481147822\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
#. VEZR6
@@ -8935,13 +10546,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. DHaix
+#. VWPoq
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671584032366193\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing the file name and its path."
+msgid "<emph>FileName</emph>: A string representing the file name and its path."
msgstr ""
#. ffxFe
@@ -8962,13 +10573,13 @@ msgctxt ""
msgid "The method does not check if the specified file or folder exists."
msgstr ""
-#. Gqc5k
+#. XDmYQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471584113432231\n"
"help.text"
-msgid "<emph>FileName</emph> : A string with the file or folder name to be analyzed."
+msgid "<emph>FileName</emph>: A string with the file or folder name to be analyzed."
msgstr ""
#. Uc93M
@@ -9025,22 +10636,22 @@ msgctxt ""
msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
msgstr ""
-#. 5FXjQ
+#. jTMPS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id28160104251451\n"
"help.text"
-msgid "<emph>FileName</emph> : A string representing an existing file."
+msgid "<emph>FileName</emph>: A string representing an existing file."
msgstr ""
-#. 88LmG
+#. F86KG
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id71601042959846\n"
"help.text"
-msgid "<emph>Algorithm</emph> : One of the supported algorithms."
+msgid "<emph>Algorithm</emph>: One of the supported algorithms."
msgstr ""
#. HzFs2
@@ -9070,22 +10681,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. RY5vD
+#. LAeis
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id721584791330406\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FileName</literal> or <literal>NamePattern</literal> to designate one or more files to be moved."
msgstr ""
-#. 5CsKP
+#. rgNqi
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id291584791330181\n"
"help.text"
-msgid "<emph>Destination</emph> : If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
+msgid "<emph>Destination</emph>: If <literal>Source</literal> is a <literal>FileName</literal> then this parameter indicates the new path and file name of the moved file."
msgstr ""
#. E7BHq
@@ -9151,22 +10762,22 @@ msgctxt ""
msgid "The method stops immediately after it encounters an error. The method does not roll back nor does it undo changes made before the error occurred."
msgstr ""
-#. wBkni
+#. tLxAt
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id541584791330777\n"
"help.text"
-msgid "<emph>Source</emph> : It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
+msgid "<emph>Source</emph>: It can be a <literal>FolderName</literal> or <literal>NamePattern</literal> to designate one or more folders to be moved."
msgstr ""
-#. By4Cy
+#. bTWWF
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551584791330279\n"
"help.text"
-msgid "<emph>Destination</emph> : If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
+msgid "<emph>Destination</emph>: If the move operation involves a single folder, then <literal>Destination</literal> is the name and path of the moved folder and it must not exist."
msgstr ""
#. upwt8
@@ -9214,31 +10825,31 @@ msgctxt ""
msgid "The method returns a <literal>Null</literal> object if an error occurred."
msgstr ""
-#. CBiwE
+#. R5a4m
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id551585320922678\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open."
+msgid "<emph>FileName</emph>: Identifies the file to open."
msgstr ""
-#. wr4wi
+#. FUxVH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id671585320922388\n"
"help.text"
-msgid "<emph>IOMode</emph> : Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
+msgid "<emph>IOMode</emph>: Indicates the input/output mode. It can be one of three constants: <literal>FSO.ForReading</literal> (default), <literal>FSO.ForWriting</literal>, or <literal>FSO.ForAppending</literal>."
msgstr ""
-#. 25nRj
+#. ttSYS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id21585321398586\n"
"help.text"
-msgid "<emph>Create</emph> : Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
+msgid "<emph>Create</emph>: Boolean value that indicates whether a new file can be created if the specified filename doesn't exist:"
msgstr ""
#. VDFAi
@@ -9259,13 +10870,13 @@ msgctxt ""
msgid "If <literal>False</literal> then new files are not created (default)."
msgstr ""
-#. WzDqZ
+#. BoVQQ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id771585321576210\n"
"help.text"
-msgid "<emph>Encoding</emph> : The character set to be used. The default encoding is \"UTF-8\"."
+msgid "<emph>Encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
#. FuYwe
@@ -9286,13 +10897,13 @@ msgctxt ""
msgid "If the <literal>SAVE</literal> mode is set and the picked file exists, a warning message will be displayed."
msgstr ""
-#. gi6um
+#. PAaAH
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id481583670342502\n"
"help.text"
-msgid "<emph>DefaultFile</emph> : This argument is a string composed of a folder and file name:"
+msgid "<emph>DefaultFile</emph>: This argument is a string composed of a folder and file name:"
msgstr ""
#. fyVCs
@@ -9313,22 +10924,22 @@ msgctxt ""
msgid "The file part designates the default file to open or save."
msgstr ""
-#. CyhXn
+#. rcast
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id981583670342502\n"
"help.text"
-msgid "<emph>Mode</emph> : <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
+msgid "<emph>Mode</emph>: <literal>OPEN</literal> (input file) or <literal>SAVE</literal> (output file). The default value is <literal>OPEN</literal>."
msgstr ""
-#. Ym5VM
+#. Dtmio
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id31583670342502\n"
"help.text"
-msgid "<emph>Filter</emph> : The extension of the files displayed when the dialog is opened (default = no filter)."
+msgid "<emph>Filter</emph>: The extension of the files displayed when the dialog is opened (default = no filter)."
msgstr ""
#. 8WirR
@@ -9349,22 +10960,22 @@ msgctxt ""
msgid "Opens a dialog box to select a folder."
msgstr ""
-#. nQtNH
+#. coL3A
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id951583671701872\n"
"help.text"
-msgid "<emph>DefaultFolder</emph> : A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
+msgid "<emph>DefaultFolder</emph>: A string containing the folder name that will be displayed when the dialog is opened (default = the last selected folder)."
msgstr ""
-#. hspKF
+#. esSGJ
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id821583671701764\n"
"help.text"
-msgid "<emph>FreeText</emph> : Text to display in the dialog (default = \"\")."
+msgid "<emph>FreeText</emph>: Text to display in the dialog (default = \"\")."
msgstr ""
#. GMYtx
@@ -9394,22 +11005,22 @@ msgctxt ""
msgid "The list may be filtered with wildcards."
msgstr ""
-#. vXLY5
+#. ApGN7
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id701584016761945\n"
"help.text"
-msgid "<emph>FolderName</emph> : A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
+msgid "<emph>FolderName</emph>: A string representing a folder. The folder must exist. <literal>FolderName</literal> must not designate a file."
msgstr ""
-#. XSBWe
+#. zHooS
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id471585648674921\n"
"help.text"
-msgid "<emph>Filter</emph> : A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
+msgid "<emph>Filter</emph>: A string containing wildcards (\"?\" and \"*\") that will be applied to the resulting list of folders (default = \"\")."
msgstr ""
#. WVhEh
@@ -9430,6 +11041,1005 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
msgstr ""
+#. VCRTD
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.L10N service"
+msgstr ""
+
+#. q7BSh
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id521585843652750\n"
+"help.text"
+msgid "<variable id=\"L10NService\"><link href=\"text/sbasic/shared/03/sf_l10n.xhp\" name=\"L10N service\"><literal>ScriptForge</literal>.<literal>L10N</literal> service</link></variable>"
+msgstr ""
+
+#. FRAiJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652556\n"
+"help.text"
+msgid "This service provides a number of methods related to the translation of strings with minimal impact on the program's source code. The methods provided by the <literal>L10N</literal> service can be used mainly to:"
+msgstr ""
+
+#. gw2rW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id601614351922212\n"
+"help.text"
+msgid "Create POT files that can be used as templates for translation of all strings in the program."
+msgstr ""
+
+#. sbVQL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id131614352196513\n"
+"help.text"
+msgid "Get translated strings at runtime for the language defined in the <literal>Locale</literal> property."
+msgstr ""
+
+#. kCrgU
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id971614966420419\n"
+"help.text"
+msgid "The acronym <literal>L10N</literal> stands for Localization and refers to a set of procedures for translating software to a specific country or region."
+msgstr ""
+
+#. supr5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652438\n"
+"help.text"
+msgid "PO files have long been promoted in the free software community as a means to providing multilingual user interfaces. This is accomplished through the use of human-readable text files with a well defined structure that specifies, for any given language, the source language string and the localized string."
+msgstr ""
+
+#. j6xsd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652814\n"
+"help.text"
+msgid "The main advantage of the PO format is dissociation of the programmer and the translator. PO files are independent text files, so the programmer can send POT template files to translators, who will then translate their contents and return the translated PO files for each supported language."
+msgstr ""
+
+#. iBQxR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id811614352321187\n"
+"help.text"
+msgid "The <literal>L10N</literal> service is based on the GNU implementation of PO (portable object) files. To learn more about this file format, visit <link href=\"https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html\" name=\"GetText\">GNU gettext Utilities: PO Files</link>."
+msgstr ""
+
+#. 4CMir
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id91585843652832\n"
+"help.text"
+msgid "This service implements the three methods listed below:"
+msgstr ""
+
+#. fBXDW
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1158584365237\n"
+"help.text"
+msgid "<emph>AddText</emph>: Used by the programmer to build a set of strings that will be translated later."
+msgstr ""
+
+#. cm7fq
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id681585843652331\n"
+"help.text"
+msgid "<emph>ExportToPOTFile</emph>: Exports the strings added by the <literal>AddText</literal> method to a POT file."
+msgstr ""
+
+#. Z7dU5
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id531585843652697\n"
+"help.text"
+msgid "<emph>GetText</emph>: Gets the translated strings at runtime."
+msgstr ""
+
+#. D4Fyf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id361614361362393\n"
+"help.text"
+msgid "Note that the first two methods are used to build a set of translatable strings and export them to a POT file. However, it is not mandatory to create POT files using these methods. Since they are text files, the programmer could have created them using any text editor."
+msgstr ""
+
+#. Rn7FL
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id351585843652312\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. nkcFt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614353247163\n"
+"help.text"
+msgid "To invoke the <literal>L10N</literal> service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below."
+msgstr ""
+
+#. u3ENa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652877\n"
+"help.text"
+msgid "<emph>FolderName</emph>: The folder containing the PO files. It must be expressed in the <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. 8PpqQ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585843652789\n"
+"help.text"
+msgid "<emph>Locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
+msgstr ""
+
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
+#. 3YPqe
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891614358528334\n"
+"help.text"
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods."
+msgstr ""
+
+#. XUTWZ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id611614358672609\n"
+"help.text"
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings."
+msgstr ""
+
+#. RmYkJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id451614358683971\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\")"
+msgstr ""
+
+#. Ab7iH
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id321614358809763\n"
+"help.text"
+msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French."
+msgstr ""
+
+#. zEgWG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id661614358846464\n"
+"help.text"
+msgid "Set myPO = CreateScriptService(\"L10N\", \"C:\\myPOFiles\\\", \"fr-BE\")"
+msgstr ""
+
+#. UGFWB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id411585843652496\n"
+"help.text"
+msgid "PO files must be named in the form \"la-CO.po\" or \"la.po\", where \"la\" refers to the language and \"CO\" is the country. Some examples are: \"en-US.po\", \"fr-BE.po\" or \"fr.po\"."
+msgstr ""
+
+#. zQhHX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id171585843652545\n"
+"help.text"
+msgid "It is recommended to free resources after use:"
+msgstr ""
+
+#. M9GLd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bm_id871614359551930\n"
+"help.text"
+msgid "<bookmark_value>L10N service;Folder</bookmark_value> <bookmark_value>L10N service;Languages</bookmark_value> <bookmark_value>L10N service;Locale</bookmark_value>"
+msgstr ""
+
+#. 6mcLb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"hd_id561585843652465\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. mJaFd
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id181585843652958\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. FFbDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id741585843652162\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. X3tJK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291585843652823\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 8ECBX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id351585843652638\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. j3wEj
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id451585843652928\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. uED9S
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id751585843652642\n"
+"help.text"
+msgid "The folder containing the PO files (see the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#bm_id901612991354326\" name=\"FileNaming property\"><literal>FileSystem.FileNaming</literal></link> property to learn about the notation used)."
+msgstr ""
+
+#. Zsp7p
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id96158584365279\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. vdfiw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id331585843652912\n"
+"help.text"
+msgid "A zero-based array listing all the base names (without the \".po\" extension) of the PO-files found in the specified <literal>Folder</literal>."
+msgstr ""
+
+#. NWxhu
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961585843652589\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LSNA3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id561585843652947\n"
+"help.text"
+msgid "The currently active language-COUNTRY combination. This property will be initially empty if the service was instantiated without any of the optional arguments."
+msgstr ""
+
+#. 5cs7h
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231614360519973\n"
+"help.text"
+msgid "List of Methods in the L10N Service"
+msgstr ""
+
+#. Q24j9
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id1001585843652271\n"
+"help.text"
+msgid "Adds a new entry in the list of localizable strings. It must not exist yet."
+msgstr ""
+
+#. WPVrn
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id391585843652753\n"
+"help.text"
+msgid "<emph>Context</emph>: The key to retrieve the translated string with the <literal>GetText</literal> method. This parameter has a default value of \"\"."
+msgstr ""
+
+#. EC7wb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581585844419114\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. The <literal>MsgId</literal> becomes the key to retrieve the translated string via <literal>GetText</literal> method when <literal>Context</literal> is empty."
+msgstr ""
+
+#. X3F7E
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id311614361926844\n"
+"help.text"
+msgid "The <literal>MsgId</literal> string may contain any number of placeholders (%1 %2 %3 ...) for dynamically modifying the string at runtime."
+msgstr ""
+
+#. 9Jgn8
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id541585844475331\n"
+"help.text"
+msgid "<emph>Comment</emph>: Optional comment to be added alongside the string to help translators."
+msgstr ""
+
+#. TAyPG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id461614364298440\n"
+"help.text"
+msgid "The example below creates a set of strings in English:"
+msgstr ""
+
+#. DqFBf
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281586102707242\n"
+"help.text"
+msgid "Exports a set of untranslated strings as a POT file."
+msgstr ""
+
+#. zTKQ4
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id711586102939257\n"
+"help.text"
+msgid "To build a set of strings you can use either a succession of <literal>AddText</literal> method calls, or by a successful invocation of the <literal>L10N</literal> service with the <literal>FolderName</literal> argument present. It is also possible to use a combination of both techniques."
+msgstr ""
+
+#. WiqHy
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id31586102707537\n"
+"help.text"
+msgid "<emph>FileName</emph>: The output file in <literal>FileSystem.FileNaming</literal> notation."
+msgstr ""
+
+#. BkEjG
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id851586102707579\n"
+"help.text"
+msgid "<emph>Header</emph>: Comments that will be added on top of the generated POT file."
+msgstr ""
+
+#. qfPvB
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id111614364686973\n"
+"help.text"
+msgid "Do not include any leading \"#\" characters. If you want the header to be broken into multiple lines, insert escape sequences (\\n) where relevant. A standard header will be added alongside the text specified in the <literal>Header</literal> argument."
+msgstr ""
+
+#. rUUCt
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id5158610270728\n"
+"help.text"
+msgid "<emph>Encoding</emph>: The character set to be used (Default = \"UTF-8\")."
+msgstr ""
+
+#. uDu7z
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id581614364494235\n"
+"help.text"
+msgid "The generated file should successfully pass the <literal>msgfmt --check</literal> GNU command."
+msgstr ""
+
+#. wBAjb
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id891586165768715\n"
+"help.text"
+msgid "Gets the translated string corresponding to the given <literal>MsgId</literal> argument."
+msgstr ""
+
+#. NzGZC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id291614365296959\n"
+"help.text"
+msgid "A list of arguments may be specified to replace the placeholders (%1, %2, ...) in the string."
+msgstr ""
+
+#. 9DBFa
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id231586166181909\n"
+"help.text"
+msgid "If no translated string is found, the method returns the untranslated string after replacing the placeholders with the specified arguments."
+msgstr ""
+
+#. bAcmJ
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id871586352505927\n"
+"help.text"
+msgid "This method can be called either by the full name <literal>GetText</literal> or by the shortcut <literal>_</literal> (a single underscore):"
+msgstr ""
+
+#. NzdBC
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id421614967136502\n"
+"help.text"
+msgid "In the ScriptForge library, all methods starting with the \"_\" character are reserved for internal use only. However, the shortcut <literal>_</literal> used for <literal>GetText</literal> is the only exception to this rule, hence it can be safely used in Basic scripts."
+msgstr ""
+
+#. rNrAw
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id51586165768525\n"
+"help.text"
+msgid "<emph>MsgId</emph>: The untranslated string, which is the text appearing in the program code. It must not be empty. It may contain any number of placeholders (%1 %2 %3 ...) that can be used to dynamically insert text at runtime."
+msgstr ""
+
+#. Fummg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id11614365537450\n"
+"help.text"
+msgid "Besides using a single <literal>MsgId</literal> string, this method also accepts the following formats:"
+msgstr ""
+
+#. fD2Bg
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id961614365557277\n"
+"help.text"
+msgid "The <literal>Context</literal> string with which the method will retrieve the <literal>MsgId</literal> in the PO file, or;"
+msgstr ""
+
+#. v6nVR
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id981614365589866\n"
+"help.text"
+msgid "A combination <literal>Context|MsgId</literal>, instructing the method to retrieve the <literal>MsgId</literal> using specified <literal>Context</literal> value. The second part of the argument is used to improve code readability."
+msgstr ""
+
+#. 5zB4f
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id571586165768106\n"
+"help.text"
+msgid "<emph>Arg1, ...</emph>: Values to be inserted into the placeholders. Any variable type is allowed, however only strings, numbers and dates will be considered."
+msgstr ""
+
+#. cCZDK
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id701614365961454\n"
+"help.text"
+msgid "Consider the following code is running on a %PRODUCTNAME installation with locale set to \"es-ES\". Additionally, there is a file \"es-ES.po\" inside the specified folder that translates the string passed to the <literal>GetText</literal> method:"
+msgstr ""
+
+#. Kz4S7
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id171614366110835\n"
+"help.text"
+msgid "myPO = CreateScriptService(\"L10N\", \"c:\\MyPOFolder\\\")"
+msgstr ""
+
+#. EcBzr
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"bas_id1001586166834936\n"
+"help.text"
+msgid "' \"¡Bienvenido John! Espero que disfrutes de este programa\""
+msgstr ""
+
+#. H4aXx
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/guide/translation.xhp\" name=\"Controls Translation\"> Translation of Controls in the Dialog Editor</link>"
+msgstr ""
+
+#. Ah5Gj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.Platform service"
+msgstr ""
+
+#. PCkEG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"bm_id681600788076499\n"
+"help.text"
+msgid "<variable id=\"PlatformService\"><link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"Platform service\"><literal>ScriptForge</literal>.<literal>Platform</literal> service</link></variable>"
+msgstr ""
+
+#. 7D6Dx
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id181600788076612\n"
+"help.text"
+msgid "The <literal>Platform</literal> service provides a collection of properties about the current execution environment and context, such as:"
+msgstr ""
+
+#. FDJFB
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600788076785\n"
+"help.text"
+msgid "The hardware platform (architecture, CPU count, machine type, etc)"
+msgstr ""
+
+#. i9FbJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id1001600788076848\n"
+"help.text"
+msgid "Operating system information (OS type, release, version, etc)"
+msgstr ""
+
+#. uPLtj
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807676\n"
+"help.text"
+msgid "The LibreOffice version"
+msgstr ""
+
+#. BrEr7
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id671600788076855\n"
+"help.text"
+msgid "The current user name"
+msgstr ""
+
+#. ZvBqs
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id951614903258253\n"
+"help.text"
+msgid "All properties of the <literal>Platform</literal> service are read-only."
+msgstr ""
+
+#. iK4Gv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id281600788076359\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. Emisv
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id321614902851541\n"
+"help.text"
+msgid "The code snippet below instantiates the <literal>Platform</literal> service and accesses the <literal>Architecture</literal> property."
+msgstr ""
+
+#. KC5eN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"hd_id711600788076834\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. VXJ8a
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id461600788076917\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. JN68D
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id221600788076591\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. ZndAt
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id761600788076328\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. dAoKA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id67160078807636\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. XdLGG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id311600788076756\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. EEWuL
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id441600788076826\n"
+"help.text"
+msgid "The hardware bit architecture. Example: '<literal>32bit</literal>' or '<literal>64bit</literal>'"
+msgstr ""
+
+#. 8EZ8A
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id49160078807654\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iG4iH
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id81600788076419\n"
+"help.text"
+msgid "The computer's network name."
+msgstr ""
+
+#. hvAeY
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id711600788076534\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. g5EUJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600788076645\n"
+"help.text"
+msgid "The number of central processor units."
+msgstr ""
+
+#. 89Lo8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id891600788076190\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. rmGRV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id91600788076674\n"
+"help.text"
+msgid "The name of the currently logged user."
+msgstr ""
+
+#. Dt7J5
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id391600788076253\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. LA6EN
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076541\n"
+"help.text"
+msgid "The machine type. Examples are: '<literal>i386</literal>' or '<literal>x86_64</literal>'."
+msgstr ""
+
+#. tqwyD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id211600788076138\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 9uRw8
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id521600788076371\n"
+"help.text"
+msgid "The actual LibreOffice version expressed as<br/>'<literal>LibreOffice w.x.y.z (The Document Foundation)</literal>'."
+msgstr ""
+
+#. 4bpcJ
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id621614902220807\n"
+"help.text"
+msgid "Example: '<literal>LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
+msgstr ""
+
+#. 7WDer
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id21600788076758\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. NUSby
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id781600788076694\n"
+"help.text"
+msgid "The operating system type. Example: '<literal>Darwin</literal>, <literal>Linux</literal>' or '<literal>Windows</literal>'."
+msgstr ""
+
+#. cLiaw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id261600788076841\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. nepQ6
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id11600788076757\n"
+"help.text"
+msgid "A single string identifying the underlying platform with as much useful and human-readable information as possible."
+msgstr ""
+
+#. EH36m
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id501614902381381\n"
+"help.text"
+msgid "Example: '<literal>Linux-5.8.0-44-generic-x86_64-with-glibc2.32</literal>'"
+msgstr ""
+
+#. hbyth
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id531600789141795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4iEvV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301600789141619\n"
+"help.text"
+msgid "The operating system's release. Example: '<literal>5.8.0-44-generic</literal>'"
+msgstr ""
+
+#. 2fBtD
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id541600789286532\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. iukPq
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id701600789286280\n"
+"help.text"
+msgid "The operating system's build or version."
+msgstr ""
+
+#. DWQNA
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id351614902520555\n"
+"help.text"
+msgid "Example: '<literal>#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021</literal>'"
+msgstr ""
+
+#. fCdYi
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id941600789527698\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wkthE
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id631600789527859\n"
+"help.text"
+msgid "The real processor name. Example: '<literal>amdk6</literal>'."
+msgstr ""
+
+#. MYY9M
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id111614902598396\n"
+"help.text"
+msgid "This property may return the same value as the <literal>Machine</literal> property."
+msgstr ""
+
+#. 4pnPw
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/python/python_platform.xhp\" name=\"OS python\">Identifying the operating system</link>"
+msgstr ""
+
+#. UCfLb
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301613065794148\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Platform information with Calc INFO formula\">Platform information with INFO(\"system\") Calc formula</link>"
+msgstr ""
+
+#. PqDHG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id103613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType function</link>"
+msgstr ""
+
+#. DAfoV
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id301316075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools library</link>"
+msgstr ""
+
#. GpvmN
#: sf_services.xhp
msgctxt ""
@@ -11392,13 +14002,13 @@ msgctxt ""
msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
msgstr ""
-#. WSwjJ
+#. TFfR3
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id151611951803163\n"
"help.text"
-msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as Capitalize, Escape, etc return a new string after their execution."
+msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as <literal>Capitalize</literal>, <literal>Escape</literal>, etc return a new string after their execution."
msgstr ""
#. jaBZR
@@ -12652,13 +15262,13 @@ msgctxt ""
msgid "If <literal>OldStr</literal> and <literal>NewStr</literal> are arrays, replacements occur one by one up to the <literal>UBound(NewStr)</literal>."
msgstr ""
-#. HDGCx
+#. qUhcr
#: sf_string.xhp
msgctxt ""
"sf_string.xhp\n"
"par_id241612385058264\n"
"help.text"
-msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, than the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
+msgid "If <literal>OldStr</literal> has more entries than <literal>NewStr</literal>, then the residual elements in <literal>OldStr</literal> are replaced by the last element in <literal>NewStr</literal>."
msgstr ""
#. oTqRh
@@ -13129,6 +15739,564 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String function\">String built-in function</link>"
msgstr ""
+#. HjZDB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"tit\n"
+"help.text"
+msgid "ScriptForge.TextStream service"
+msgstr ""
+
+#. cEA5U
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id351585330787295\n"
+"help.text"
+msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
+msgstr ""
+
+#. nBJsE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id511585330787205\n"
+"help.text"
+msgid "The <literal>TextStream</literal> service is used to sequentially read from and write to files opened or created using the <literal>ScriptForge.FileSystem</literal> service."
+msgstr ""
+
+#. TeRTa
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id41613596903894\n"
+"help.text"
+msgid "The methods <literal>OpenTextFile</literal> and <literal>CreateTextFile</literal> from the <literal>FileSystem</literal> service return an instance of the <literal>TextStream</literal> service."
+msgstr ""
+
+#. MVFWC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id161585330787262\n"
+"help.text"
+msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system."
+msgstr ""
+
+#. GDkir
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id831613598137669\n"
+"help.text"
+msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the <literal>SF_String.sfNEWLINE</literal> property."
+msgstr ""
+
+#. SvXzF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id851613597445432\n"
+"help.text"
+msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run."
+msgstr ""
+
+#. U6RHd
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id83158533078741\n"
+"help.text"
+msgid "Service instantiation"
+msgstr ""
+
+#. c7WYC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id351613598192725\n"
+"help.text"
+msgid "The code snippet below uses the <literal>OpenTextFile</literal> method to create an instance of the <literal>TextStream</literal> Service."
+msgstr ""
+
+#. UUudg
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id371585330787197\n"
+"help.text"
+msgid "The file must be closed with the <literal>CloseFile</literal> method after all read or write operations have been executed:"
+msgstr ""
+
+#. uCC2B
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id91613599192241\n"
+"help.text"
+msgid "myFile.CloseFile()"
+msgstr ""
+
+#. zNveN
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891582733781994\n"
+"help.text"
+msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
+msgstr ""
+
+#. LnYGk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id761613599333614\n"
+"help.text"
+msgid "Set myFile = myFile.Dispose()"
+msgstr ""
+
+#. nsGCZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id121612917368946\n"
+"help.text"
+msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
+msgstr ""
+
+#. JAmgD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"hd_id941585330787948\n"
+"help.text"
+msgid "Properties"
+msgstr ""
+
+#. aZttT
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bm_id1001613600572485\n"
+"help.text"
+msgid "<bookmark_value>TextStream service;AtEndOfStream</bookmark_value> <bookmark_value>TextStream service;Encoding</bookmark_value> <bookmark_value>TextStream service;FileName</bookmark_value> <bookmark_value>TextStream service;IOMode</bookmark_value> <bookmark_value>TextStream service;Line</bookmark_value> <bookmark_value>TextStream service;NewLine</bookmark_value>"
+msgstr ""
+
+#. aN9zM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id631585330787267\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. vwGC5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id401585330787370\n"
+"help.text"
+msgid "Readonly"
+msgstr ""
+
+#. GpL38
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id581585330787700\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. 6FDuM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id551585330787608\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. ECkTm
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id181585330787752\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. YFkaY
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id901585330787680\n"
+"help.text"
+msgid "Used in read mode. A <literal>True</literal> value indicates that the end of the file has been reached. A test using this property should precede calls to the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. EFEnA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787568\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. cVCoJ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id741585330787777\n"
+"help.text"
+msgid "The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. p5s3X
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id641585330787207\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. JjEqX
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id281585330787614\n"
+"help.text"
+msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
+msgstr ""
+
+#. goEnw
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id111585330787410\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. MZS6Z
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id861585330787417\n"
+"help.text"
+msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"."
+msgstr ""
+
+#. 7nTb9
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id87158533078795\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. j45gC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id561585330787741\n"
+"help.text"
+msgid "Returns the number of lines read or written so far."
+msgstr ""
+
+#. CLAvQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id531585330787157\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. rdA5M
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id691585330787279\n"
+"help.text"
+msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
+msgstr ""
+
+#. dCeHZ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. hKJkD
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id891611613601554\n"
+"help.text"
+msgid "List of Methods in the TextStream Service"
+msgstr ""
+
+#. DBBKM
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421585330787675\n"
+"help.text"
+msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns <literal>True</literal> if the file was successfully closed."
+msgstr ""
+
+#. MCW3q
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id65158533078799\n"
+"help.text"
+msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed."
+msgstr ""
+
+#. Vr34D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id71613600347125\n"
+"help.text"
+msgid "The resulting string can be split in lines either by using the <literal>Split</literal> built-in Basic function if the line delimiter is known, or with the <literal>SF_String.SplitLines</literal> method."
+msgstr ""
+
+#. VRLGn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id91585330787373\n"
+"help.text"
+msgid "For large files, using the <literal>ReadAll</literal> method wastes memory resources. In such cases it is recommended to read the file line by line using the <literal>ReadLine</literal> method."
+msgstr ""
+
+#. BuBVA
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id921613595637851\n"
+"help.text"
+msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):"
+msgstr ""
+
+#. dUSey
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id391613596019750\n"
+"help.text"
+msgid "The example below uses the <literal>ReadAll</literal> and <literal>SplitLines</literal> methods to read the contents of the file into an array of strings:"
+msgstr ""
+
+#. BuRJE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id251613595640550\n"
+"help.text"
+msgid "'Loads the FileSystem service"
+msgstr ""
+
+#. L2a3D
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id181613595641087\n"
+"help.text"
+msgid "'Opens the text file with the names to be read"
+msgstr ""
+
+#. fArny
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id651613595641754\n"
+"help.text"
+msgid "Set inputFile = FSO.OpenTextFile(\"~/Documents/Students.txt\")"
+msgstr ""
+
+#. 9sFB5
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id81613595642474\n"
+"help.text"
+msgid "Dim allData as String"
+msgstr ""
+
+#. a9b3r
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613595642766\n"
+"help.text"
+msgid "allData = inputFile.ReadAll()"
+msgstr ""
+
+#. 7Fq9E
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id871585330787885\n"
+"help.text"
+msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string."
+msgstr ""
+
+#. 6iDcF
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id431613600221626\n"
+"help.text"
+msgid "The <literal>AtEndOfStream</literal> test should precede the <literal>ReadLine</literal> method like in the example below."
+msgstr ""
+
+#. GRRkq
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id171585330787774\n"
+"help.text"
+msgid "An error will be raised if the <literal>AtEndOfStream</literal> was reached during the previous <literal>ReadLine</literal> or <literal>SkipLine</literal> method call."
+msgstr ""
+
+#. mAty4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id11585330787847\n"
+"help.text"
+msgid "Skips the next line in the input stream when reading a <literal>TextStream</literal> file."
+msgstr ""
+
+#. FDMJB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id441613600704766\n"
+"help.text"
+msgid "This method can result in <literal>AtEndOfStream</literal> being set to <literal>True</literal>."
+msgstr ""
+
+#. D4JVb
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id141585330787657\n"
+"help.text"
+msgid "Writes a specified number of empty lines to the output stream."
+msgstr ""
+
+#. NqNwE
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id291585330787357\n"
+"help.text"
+msgid "<emph>Lines</emph>: The number of empty lines to write."
+msgstr ""
+
+#. GCPCC
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id101585330787215\n"
+"help.text"
+msgid "Writes the given string to the output stream as a single line."
+msgstr ""
+
+#. Eska7
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id421613601002074\n"
+"help.text"
+msgid "The character defined in the <literal>NewLine</literal> property is used as the line delimiter."
+msgstr ""
+
+#. YRTuQ
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id491585330787650\n"
+"help.text"
+msgid "<emph>Line</emph>: The line to write, may be empty."
+msgstr ""
+
+#. 39u4o
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id21613321528612\n"
+"help.text"
+msgid "'Instantiates the FileSystem Service"
+msgstr ""
+
+#. FnTiG
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id191613321529277\n"
+"help.text"
+msgid "'Creates a text file"
+msgstr ""
+
+#. f5RSB
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id641613321530181\n"
+"help.text"
+msgid "'Writes the Value and Value squared, separated by \";\""
+msgstr ""
+
+#. FCowk
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id141613321530960\n"
+"help.text"
+msgid "myFile.WriteLine(\"Value;Value Squared\")"
+msgstr ""
+
+#. m9Mo4
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"bas_id881613321532598\n"
+"help.text"
+msgid "'Closes the file and free resources"
+msgstr ""
+
+#. nrDCn
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id301613075694148\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input function\">Input Function</link>"
+msgstr ""
+
+#. FnNRc
+#: sf_textstream.xhp
+msgctxt ""
+"sf_textstream.xhp\n"
+"par_id271612398715438\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open statement\">Open Statement</link>"
+msgstr ""
+
#. PCSPY
#: sf_timer.xhp
msgctxt ""
@@ -13435,15 +16603,6 @@ msgctxt ""
msgid "Returned value"
msgstr ""
-#. S6Gay
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id31582734180676\n"
-"help.text"
-msgid "Continue"
-msgstr ""
-
#. C2QQ4
#: sf_timer.xhp
msgctxt ""
@@ -13462,15 +16621,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not suspended"
msgstr ""
-#. ASHCm
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id881582734649304\n"
-"help.text"
-msgid "Restart"
-msgstr ""
-
#. nkUs3
#: sf_timer.xhp
msgctxt ""
@@ -13489,15 +16639,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is inactive"
msgstr ""
-#. 7VHEX
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id201582734802443\n"
-"help.text"
-msgid "Start"
-msgstr ""
-
#. AkgAy
#: sf_timer.xhp
msgctxt ""
@@ -13516,15 +16657,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is already started"
msgstr ""
-#. QdjDi
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id781582734905507\n"
-"help.text"
-msgid "Suspend"
-msgstr ""
-
#. D7CoH
#: sf_timer.xhp
msgctxt ""
@@ -13543,15 +16675,6 @@ msgctxt ""
msgid "<literal>False</literal> if the timer is not started or already suspended"
msgstr ""
-#. BUjcE
-#: sf_timer.xhp
-msgctxt ""
-"sf_timer.xhp\n"
-"par_id771582734996722\n"
-"help.text"
-msgid "Terminate"
-msgstr ""
-
#. sgXra
#: sf_timer.xhp
msgctxt ""
@@ -13579,6 +16702,33 @@ msgctxt ""
msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#functexample\"/>"
msgstr ""
+#. UgBnC
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id141582735926821\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as suspended time"
+msgstr ""
+
+#. 4jHcj
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id901582735961725\n"
+"help.text"
+msgid "'The time elapsed while the Dialog box is open will be counted as running time"
+msgstr ""
+
+#. 7QhZU
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id941610739926687\n"
+"help.text"
+msgid "'Shows the final time measurements"
+msgstr ""
+
#. J6XGB
#: sf_timer.xhp
msgctxt ""
@@ -13615,6 +16765,33 @@ msgctxt ""
msgid "The following example illustrates how to create two <literal>Timer</literal> objects and start them separately."
msgstr ""
+#. PtA4E
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id481610989853679\n"
+"help.text"
+msgid "'Starts myTimerA"
+msgstr ""
+
+#. VUdGW
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id331610989849501\n"
+"help.text"
+msgid "'Starts myTimerB"
+msgstr ""
+
+#. t98Fv
+#: sf_timer.xhp
+msgctxt ""
+"sf_timer.xhp\n"
+"bas_id931610989837747\n"
+"help.text"
+msgid "'Terminate both timers"
+msgstr ""
+
#. CpzL5
#: sf_timer.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc.po b/source/bg/helpcontent2/source/text/scalc.po
index 56dd27a9cc0..6f1ed6c01d9 100644
--- a/source/bg/helpcontent2/source/text/scalc.po
+++ b/source/bg/helpcontent2/source/text/scalc.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-08 12:09+0100\n"
-"PO-Revision-Date: 2020-10-30 22:36+0000\n"
+"PO-Revision-Date: 2021-03-02 12:22+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356855.000000\n"
@@ -222,7 +222,7 @@ msgctxt ""
"hd_id10272015110909623\n"
"help.text"
msgid "View Grid lines"
-msgstr ""
+msgstr "Показване на мрежа"
#. TvxiA
#: main0103.xhp
@@ -267,7 +267,7 @@ msgctxt ""
"hd_id102720151147488697\n"
"help.text"
msgid "<embedvar href=\"text/scalc/01/04080000.xhp#function_list_title\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/scalc/01/04080000.xhp#function_list_title\"/>"
#. f3nqY
#: main0103.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/00.po b/source/bg/helpcontent2/source/text/scalc/00.po
index 1f97f2ad275..776f9007414 100644
--- a/source/bg/helpcontent2/source/text/scalc/00.po
+++ b/source/bg/helpcontent2/source/text/scalc/00.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: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2020-12-05 20:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-14 15: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-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1555408153.000000\n"
@@ -1178,14 +1178,14 @@ msgctxt ""
msgid "Window Menu"
msgstr "Меню Прозорец"
-#. dH2aq
+#. ry53A
#: 00000407.xhp
msgctxt ""
"00000407.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "<variable id=\"fete\">Choose ><menuitem>View - Split Window</menuitem>.</variable>"
-msgstr ""
+msgid "<variable id=\"fete\">Choose <menuitem>View - Split Window</menuitem>.</variable>"
+msgstr "<variable id=\"fete\">Изберете <menuitem>Изглед - Разделяне на прозореца</menuitem>.</variable>"
#. dr9Aq
#: 00000407.xhp
@@ -1194,7 +1194,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "<variable id=\"fefix\">Choose <menuitem>View - Freeze Rows and Columns</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"fefix\">Изберете <menuitem>Изглед - Фиксиране на редове и колони</menuitem>.</variable>"
#. DrJ2d
#: 00000407.xhp
@@ -1203,7 +1203,7 @@ msgctxt ""
"par_id631612313719480\n"
"help.text"
msgid "<variable id=\"freezefirstcol\">Choose <menuitem>View - Freeze Cells - Freeze First Column</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"freezefirstcol\">Изберете <menuitem>Изглед - Фиксиране на клетки - Фиксиране на първата колона</menuitem>.</variable>"
#. 5YHvr
#: 00000407.xhp
@@ -1212,7 +1212,7 @@ msgctxt ""
"par_id251612313725513\n"
"help.text"
msgid "<variable id=\"freezefirstrow\">Choose <menuitem>View - Freeze Cells - Freeze First Row</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"freezefirstrow\">Изберете <menuitem>Изглед - Фиксиране на клетки - Фиксиране на първия ред</menuitem>.</variable>"
#. BkQfX
#: 00000412.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index c682c1b950d..c73015c0abd 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-23 11:02+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -1034,14 +1034,14 @@ msgctxt ""
msgid "<emph>Filling cells using context menus:</emph>"
msgstr "<emph>Попълване на клетки чрез контекстни менюта:</emph>"
-#. hRJz3
+#. 2j5RS
#: 02140000.xhp
msgctxt ""
"02140000.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
-msgstr "Извикайте <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"контекстно меню\">контекстното меню</link>, когато курсорът е в клетка, и изберете <emph>Списък за избор</emph>."
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgstr "Извикайте <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">контекстното меню</link>, когато курсорът е в клетка, и изберете <emph>Списък за избор</emph>."
#. BzAsX
#: 02140000.xhp
@@ -5901,7 +5901,7 @@ msgctxt ""
"par_id421612299085248\n"
"help.text"
msgid "An asset was acquired on 2020-02-01 at a cost of 2000 currency units. The end date of the first settlement period was 2020-12-31. The salvage value of the asset at the end of its depreciable life will be 10 currency units. The rate of depreciation is 0.1 (10%) and the year is calculated using the US method (Basis 0). Assuming degressive depreciation, what is the amount of depreciation in the fourth depreciation period?"
-msgstr ""
+msgstr "Актив е придобит на 2020-02-01 за 2000 парични единици. Крайната дата на първия счетоводен период е 2020-12-31. Ликвидационната стойност на актива в края на амортизационния срок ще бъде 10 парични единици. Нормата на амортизация е 0,1 (10%) и годината се изчислява по метода за САЩ (основа 0). Ако използваме дегресивен метод, колко е амортизацията за четвъртия период?"
#. qyD4t
#: 04060103.xhp
@@ -5910,7 +5910,7 @@ msgctxt ""
"par_id901612299089478\n"
"help.text"
msgid "<input>=AMORDEGRC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0.1; 0)</input> returns a depreciation amount of 163 currency units."
-msgstr ""
+msgstr "<input>=AMORDEGRC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0,1; 0)</input> връща амортизация от 163 парични единици."
#. UCPgp
#: 04060103.xhp
@@ -6009,7 +6009,7 @@ msgctxt ""
"par_id641612299092454\n"
"help.text"
msgid "An asset was acquired on 2020-02-01 at a cost of 2000 currency units. The end date of the first settlement period was 2020-12-31. The salvage value of the asset at the end of its depreciable life will be 10 currency units. The rate of depreciation is 0.1 (10%) and the year is calculated using the US method (Basis 0). Assuming linear depreciation, what is the amount of depreciation in the fourth depreciation period?"
-msgstr ""
+msgstr "Актив е придобит на 2020-02-01 за 2000 парични единици. Крайната дата на първия счетоводен период е 2020-12-31. Ликвидационната стойност на актива в края на амортизационния срок ще бъде 10 парични единици. Нормата на амортизация е 0,1 (10%) и годината се изчислява по метода за САЩ (основа 0). Ако използваме линеен метод, колко е амортизацията за четвъртия период?"
#. zcGNo
#: 04060103.xhp
@@ -6018,7 +6018,7 @@ msgctxt ""
"par_id391612299096511\n"
"help.text"
msgid "<input>=AMORLINC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0.1; 0)</input> returns a depreciation amount of 200 currency units."
-msgstr ""
+msgstr "<input>=AMORLINC(2000; \"2020-02-01\"; \"2020-12-31\"; 10; 4; 0,1; 0)</input> връща амортизация от 200 парични единици."
#. DHKDL
#: 04060103.xhp
@@ -6216,7 +6216,7 @@ msgctxt ""
"par_id3159204\n"
"help.text"
msgid "<emph>Par</emph> (optional) is the par value of the security. If omitted, a default value of 1000 is used."
-msgstr ""
+msgstr "<emph>Номинал</emph> (незадължителен) е номиналната стойност на ценната книга. Ако бъде пропуснат, се подразбира стойност 1000."
#. EJaKm
#: 04060103.xhp
@@ -6225,7 +6225,7 @@ msgctxt ""
"par_id481612296978513\n"
"help.text"
msgid "We recommend that you always specify the value that you require for ACCRINTM’s <emph>Par</emph> argument, rather than allowing Calc to apply an arbitrary default. This will make your formula easier to understand and easier to maintain."
-msgstr ""
+msgstr "Препоръчваме винаги да задавате желаната от вас стойност за параметъра <emph>Номинал</emph> на ACCRINTM, вместо да оставяте на Calc да попълни произволна подразбирана стойност. Така формулата ви ще бъде по-разбираема и по-лесна за поддръжка."
#. nB5zK
#: 04060103.xhp
@@ -7584,7 +7584,7 @@ msgctxt ""
"par_id3156147\n"
"help.text"
msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three-year period. The salvage value is to be 1,000 currency units. The first period of depreciation comprises 6 months. What is the fixed-declining balance depreciation of the computer system in the second period, which is a full year starting from the end of the first six-month period?"
-msgstr ""
+msgstr "Компютър с начална стойност 25 000 парични единици трябва да се амортизира за срок от три години. Ликвидационната стойност трябва да е 1000 парични единици. Първият период на амортизацията обхваща 6 месеца. Каква е амортизацията на компютъра по метода на фиксирано намаляване на остатъка за втория период, който е пълна година, започваща от края на първия, шестмесечен период?"
#. 4CQGc
#: 04060103.xhp
@@ -7593,7 +7593,7 @@ msgctxt ""
"par_id3149513\n"
"help.text"
msgid "<input>=DB(25000; 1000; 3; 2; 6)</input> returns 11,037.95 currency units."
-msgstr ""
+msgstr "<input>=DB(25000; 1000; 3; 2; 6)</input> връща 11 037,95 парични единици."
#. fWK6h
#: 04060103.xhp
@@ -8043,7 +8043,7 @@ msgctxt ""
"par_id5863826\n"
"help.text"
msgid "<input>=A2+B2+STYLE(IF(CURRENT()>10;\"Red\";\"Default\"))</input>"
-msgstr ""
+msgstr "<input>=A2+B2+STYLE(IF(CURRENT()>10;\"Червен текст\";\"По подразбиране\"))</input>"
#. fNamE
#: 04060104.xhp
@@ -10248,7 +10248,7 @@ msgctxt ""
"par_id3154558\n"
"help.text"
msgid "IF(Test [; [ThenValue] [; [OtherwiseValue]]])"
-msgstr ""
+msgstr "IF(Проверка [; [СтойностПриTRUE] [; [СтойностПриFALSE]]])"
#. JnjcT
#: 04060105.xhp
@@ -10284,7 +10284,7 @@ msgctxt ""
"par_id3150867\n"
"help.text"
msgid "<input>=IF(A1>5;100;\"too small\")</input> If the value in <literal>A1</literal> is greater than <literal>5</literal>, the value <literal>100</literal> is returned; otherwise, the text <literal>too small</literal> is returned."
-msgstr ""
+msgstr "<input>=IF(A1>5;100;\"твърде малко\")</input> Ако стойността в <literal>A1</literal> е по-голяма от <literal>5</literal>, се връща стойност <literal>100</literal>; в противен случай се връща текстът <literal>твърде малко</literal>."
#. jvk3H
#: 04060105.xhp
@@ -10293,7 +10293,7 @@ msgctxt ""
"par_id71607569817532\n"
"help.text"
msgid "<input>=IF(A1>5;;\"too small\")</input> If the value in <literal>A1</literal> is greater than <literal>5</literal>, the value <literal>0</literal> is returned because empty parameters are considered to be <literal>0</literal>; otherwise, the text <literal>too small</literal> is returned."
-msgstr ""
+msgstr "<input>=IF(A1>5;;\"твърде малко\")</input> Ако стойността в <literal>A1</literal> е по-голяма от <literal>5</literal>, се връща стойност <literal>0</literal>, защото празните параметри се приемат за <literal>0</literal>; в противен случай се връща текстът <literal>твърде малко</literal>."
#. Q6yTs
#: 04060105.xhp
@@ -10302,7 +10302,7 @@ msgctxt ""
"par_id11607570458867\n"
"help.text"
msgid "<input>=IF(A1>5;100;)</input> If the value in <literal>A1</literal> is less than <literal>5</literal>, the value <literal>0</literal> is returned because the empty <emph>OtherwiseValue</emph> is interpreted as <literal>0</literal>; otherwise <literal>100</literal> is returned."
-msgstr ""
+msgstr "<input>=IF(A1>5;100;)</input> Ако стойността в <literal>A1</literal> е по-малка от <literal>5</literal>, се връща стойност <literal>0</literal>, защото празният <emph>СтойностПриFALSE</emph> се интерпретира като <literal>0</literal>; В противен случай се връща <literal>100</literal>."
#. BKYkX
#: 04060105.xhp
@@ -13974,7 +13974,7 @@ msgctxt ""
"par_id3151986\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criterion.</ahelp> This function is used to sum a range when you search for a certain value."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Сумира клетките, указани чрез зададен критерий.</ahelp> Тази функция се използва за сумиране на диапазон, когато търсите конкретна стойност."
#. GKQGQ
#: 04060106.xhp
@@ -13983,7 +13983,7 @@ msgctxt ""
"par_id3152028\n"
"help.text"
msgid "SUMIF(Range; Criterion [; SumRange])"
-msgstr ""
+msgstr "SUMIF(Диапазон; Критерий [; ДиапазонЗаСумиране])"
#. wmLcE
#: 04060106.xhp
@@ -13992,7 +13992,7 @@ msgctxt ""
"par_id3152043\n"
"help.text"
msgid "<emph>Range</emph> is the range to which the criterion is to be applied."
-msgstr ""
+msgstr "<emph>Диапазон</emph> е диапазонът, върху който да се приложи критерият."
#. 7FPaC
#: 04060106.xhp
@@ -14001,7 +14001,7 @@ msgctxt ""
"par_id3152062\n"
"help.text"
msgid "<emph>Criterion</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criterion is written into the formula, it has to be surrounded by double quotes."
-msgstr ""
+msgstr "<emph>Критерий</emph> е самото условие за търсене или клетката, която го съдържа. Ако критерият е изписан във формулата, трябва да бъде ограден с двойни кавички."
#. FCxrw
#: 04060106.xhp
@@ -14019,7 +14019,7 @@ msgctxt ""
"par_id8347422\n"
"help.text"
msgid "SUMIF supports the reference concatenation operator (~) only in the Criterion parameter, and only if the optional SumRange parameter is not given."
-msgstr ""
+msgstr "SUMIF поддържа операцията слепване на обръщения (~) само в параметъра „Критерий“ и само ако незадължителният параметър „ДиапазонЗаСумиране“ е пропуснат."
#. uazzL
#: 04060106.xhp
@@ -18501,7 +18501,7 @@ msgctxt ""
"par_id3150309\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of either a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_TABELLE\">Връща номера на лист от обръщение или от низ с име на лист.</ahelp> Ако не въведете параметри, се връща номерът на листа, съдържащ формулата."
#. KRzAZ
#: 04060109.xhp
@@ -18528,7 +18528,7 @@ msgctxt ""
"par_id3146988\n"
"help.text"
msgid "<input>=SHEET(Sheet2.A1)</input> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
-msgstr ""
+msgstr "<input>=SHEET(Лист2.A1)</input> връща 2, ако Лист2 е вторият лист в електронната таблица."
#. fEQws
#: 04060109.xhp
@@ -18537,7 +18537,7 @@ msgctxt ""
"par_id491612531793751\n"
"help.text"
msgid "<input>=SHEET(\"Sheet3\")</input> returns 3 if Sheet3 is the third sheet in the spreadsheet document."
-msgstr ""
+msgstr "<input>=SHEET(\"Лист3\")</input> връща 3, ако Лист3 е третият лист в електронната таблица."
#. 7ZBfD
#: 04060109.xhp
@@ -19140,7 +19140,7 @@ msgctxt ""
"par_id141612447324913\n"
"help.text"
msgid "Suppose we have built a small database table occupying the cell range A1:DO4 and containing basic information about 118 chemical elements. The first column contains the row headings “Element”, “Symbol”, “Atomic Number”, and “Relative Atomic Mass”. Subsequent columns contain the relevant information for each of the elements, ordered left to right by atomic number. For example, cells B1:B4 contain “Hydrogen”, “H”, “1” and “1.008”, while cells DO1:DO4 contain “Oganesson”, “Og”, “118”, and “294”."
-msgstr ""
+msgstr "Да предположим, че сме съставили малка таблица на база от данни, която заема диапазона от клетки A1:DO4 и съдържа основна информация за 118 химични елемента. Първата колона съдържа заглавията на редове „Елемент“, „Символ“, „Атомен номер“ и „Относителна атомна маса“. Следващите колони съдържат съответната информация за всеки от елементите, подредени от ляво надясно по атомен номер. Например клетките B1:B4 съдържат „Водород“, „H“, „1“ и „1,008“, а клетките DO1:DO4 – „Оганесон“, „Og“, „118“ и „294“."
#. eAMVa
#: 04060109.xhp
@@ -19149,7 +19149,7 @@ msgctxt ""
"par_id151612978320063\n"
"help.text"
msgid "Element"
-msgstr ""
+msgstr "Елемент"
#. BcKD5
#: 04060109.xhp
@@ -19158,7 +19158,7 @@ msgctxt ""
"par_id711612450364379\n"
"help.text"
msgid "Hydrogen"
-msgstr ""
+msgstr "Водород"
#. ACHPj
#: 04060109.xhp
@@ -19167,7 +19167,7 @@ msgctxt ""
"par_id681612450364379\n"
"help.text"
msgid "Helium"
-msgstr ""
+msgstr "Хелий"
#. 7YEmL
#: 04060109.xhp
@@ -19176,7 +19176,7 @@ msgctxt ""
"par_id531612453345232\n"
"help.text"
msgid "Lithium"
-msgstr ""
+msgstr "Литий"
#. Y3c6z
#: 04060109.xhp
@@ -19185,7 +19185,7 @@ msgctxt ""
"par_id571612453039430\n"
"help.text"
msgid "Oganesson"
-msgstr ""
+msgstr "Оганесон"
#. 4H4fa
#: 04060109.xhp
@@ -19194,7 +19194,7 @@ msgctxt ""
"par_id341612978329327\n"
"help.text"
msgid "Symbol"
-msgstr ""
+msgstr "Символ"
#. jVBoy
#: 04060109.xhp
@@ -19203,7 +19203,7 @@ msgctxt ""
"par_id601612978601591\n"
"help.text"
msgid "Atomic Number"
-msgstr ""
+msgstr "Атомен номер"
#. WjrrE
#: 04060109.xhp
@@ -19212,7 +19212,7 @@ msgctxt ""
"par_id751612978603374\n"
"help.text"
msgid "Relative Atomic Mass"
-msgstr ""
+msgstr "Относителна атомна маса"
#. Cb3HA
#: 04060109.xhp
@@ -19221,7 +19221,7 @@ msgctxt ""
"par_id51612447346319\n"
"help.text"
msgid "<input>=HLOOKUP(\"Lead\"; $A$1:$DO$4; 2; 0)</input> returns “Pb”, the symbol for lead."
-msgstr ""
+msgstr "<input>=HLOOKUP(\"Олово\"; $A$1:$DO$4; 2; 0)</input> връща „Pb“, символа за олово."
#. Fa8kD
#: 04060109.xhp
@@ -19230,7 +19230,7 @@ msgctxt ""
"par_id291612447349416\n"
"help.text"
msgid "<input>=HLOOKUP(\"Gold\"; $A$1:$DO$4; 3; 0)</input> returns 79, the atomic number for gold."
-msgstr ""
+msgstr "<input>=HLOOKUP(\"Злато\"; $A$1:$DO$4; 3; 0)</input> връща 79, атомния номер на златото."
#. LbWuo
#: 04060109.xhp
@@ -19239,7 +19239,7 @@ msgctxt ""
"par_id971612447352912\n"
"help.text"
msgid "<input>=HLOOKUP(\"Carbon\"; $A$1:$DO$4; 4; 0)</input> returns 12.011, the relative atomic mass of carbon."
-msgstr ""
+msgstr "<input>=HLOOKUP(\"Въглерод\"; $A$1:$DO$4; 4; 0)</input> връща 12,011, относителната атомна маса на въглерода."
#. B4DL3
#: 04060109.xhp
@@ -19493,68 +19493,77 @@ msgctxt ""
msgid "The number 0 is returned for empty cells and matrix elements."
msgstr "За празни клетки и елементи на матрица се връща числото 0."
-#. Eg4Cg
+#. frvbX
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11827\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> показва текста „http://www.example.org“ в клетката и при щракване стартира хипервръзката http://www.example.org."
+msgid "<input>=HYPERLINK(\"http://www.example.org\")</input> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "<input>=HYPERLINK(\"http://www.example.org\")</input> показва текста „http://www.example.org“ в клетката и при щракване стартира хипервръзката http://www.example.org."
-#. GThdD
+#. wHG7A
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182A\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Щракнете тук\")</item> показва текста „Щракнете тук“ в клетката и при щракване изпълнява хипервръзката http://www.example.org."
+msgid "<input>=HYPERLINK(\"http://www.example.org\";\"Click here\")</input> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "<input>=HYPERLINK(\"http://www.example.org\";\"Щракнете тук\")</input> показва текста „Щракнете тук“ в клетката и при щракване изпълнява хипервръзката http://www.example.org."
-#. nBEGH
+#. jamR2
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id0907200912224534\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";12345)</item> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";12345)</item> показва числото 12345 и при щракване стартира хипервръзката http://www.example.org."
+msgid "<input>=HYPERLINK(\"http://www.example.org\";12345)</input> displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgstr "<input>=HYPERLINK(\"http://www.example.org\";12345)</input> показва числото 12345 и при щракване стартира хипервръзката http://www.example.org."
-#. GFCwJ
+#. qLdBN
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN1182D\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
-msgstr "<item type=\"input\">=HYPERLINK($B4)</item>, където клетката B4 съдържа <item type=\"input\">http://www.example.org</item>. Функцията добавя „http://www.example.org“ към URL на клетката с хипервръзката и връща същия текст като резултат от формулата."
+msgid "<input>=HYPERLINK($B4)</input> where cell B4 contains <literal>http://www.example.org</literal>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr "<input>=HYPERLINK($B4)</input>, където клетката B4 съдържа <literal>http://www.example.org</literal>. Функцията добавя „http://www.example.org“ към URL на клетката с хипервръзката и връща същия текст като резултат от формулата."
-#. viZae
+#. cWDrv
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_idN11830\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Щракнете върху \") & \"example.org\"</item> показва в клетката текста „Щракнете върху example.org“ и при щракване изпълнява хипервръзката http://www.example.org."
+msgid "<input>=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</input> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr "<input>=HYPERLINK(\"http://www.\";\"Щракнете върху \") & \"example.org\"</input> показва в клетката текста „Щракнете върху example.org“ и при щракване изпълнява хипервръзката http://www.example.org."
-#. bdxGj
+#. DDEtK
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id8859523\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
-msgstr "<item type=\"input\">=HYPERLINK(\"#Лист1.A1\";\"Към началото\")</item> показва текста „Към началото“ и предизвиква преход към клетката Лист1.A1 в същия документ."
+msgid "<input>=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</input> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr "<input>=HYPERLINK(\"#Лист1.A1\";\"Към началото\")</input> показва текста „Към началото“ и предизвиква преход към клетката Лист1.A1 в същия документ."
-#. kFDkB
+#. CoMEq
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id2958769\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Спецификация\";\"Преход към показалец на Writer\")</item> показва текста „Преход към показалец на Writer“, зарежда зададения текстов документ и показва текста, обозначен с показалеца „Спецификация“."
+msgid "<input>=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</input> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr "<input>=HYPERLINK(\"file:///C:/writer.odt#Спецификация\";\"Преход към показалец на Writer\")</input> показва текста „Преход към показалец на Writer“, зарежда зададения текстов документ и показва текста, обозначен с показалеца „Спецификация“."
+
+#. Ky2xV
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id321615667588042\n"
+"help.text"
+msgid "<input>=HYPERLINK(\"file:///C:/Documents/\";\"Open Documents folder\")</input> displays the text \"Open Documents folder\" and shows the folder contents using the standard file manager in your operating system."
+msgstr "<input>=HYPERLINK(\"file:///C:/Documents/\";\"Отваряне на папката Documents\")</input> изписва текста „Отваряне на папката Documents“ и показва съдържанието на папката чрез стандартния файлов диспечер на операционната система."
#. ubKsF
#: 04060109.xhp
@@ -19689,7 +19698,7 @@ msgctxt ""
"par_id7928708\n"
"help.text"
msgid "If no constraint for a filter is given, the field's selected value is implicitly used. If a constraint for a filter is given, it must match the field's selected value, or an error is returned. Filters are the fields at the top left of a pivot table, populated using the \"Filters\" area of the pivot table layout dialog. From each filter, an item (value) can be selected, which means only that item is included in the calculation."
-msgstr ""
+msgstr "Ако не е дадено ограничение за филтър, неявно се използва избраната стойност на полето. Ако е дадено ограничение за филтър, то трябва да съответства на избраната стойност на полето, иначе се връща грешка. Филтрите са полетата в горния ляв край на обобщената таблица, попълнени чрез областта „Филтри“ на диалоговия прозорец „Обобщена таблица“. За всеки филтър може да бъде избран елемент (стойност), което означава, че само този елемент ще бъде включен в изчислението."
#. nARMD
#: 04060109.xhp
@@ -28302,7 +28311,7 @@ msgctxt ""
"par_id3149273\n"
"help.text"
msgid "Calculation of the internal rate of return for the following five payments (dates are in ISO 8601 format):"
-msgstr ""
+msgstr "Изчисляване на вътрешната норма на печалба за следните пет плащания (датите са във формат ISO 8601):"
#. 6JTLA
#: 04060118.xhp
@@ -28311,7 +28320,7 @@ msgctxt ""
"par_id3146856\n"
"help.text"
msgid "Received"
-msgstr ""
+msgstr "Получени"
#. N2RNr
#: 04060118.xhp
@@ -28320,7 +28329,7 @@ msgctxt ""
"par_id3149985\n"
"help.text"
msgid "Deposited"
-msgstr ""
+msgstr "Платени"
#. FLNWb
#: 04060118.xhp
@@ -28329,7 +28338,7 @@ msgctxt ""
"par_id3152793\n"
"help.text"
msgid "<input>=XIRR(B1:B5; A1:A5; 0.1)</input> returns 0.1828 or 18.28%."
-msgstr ""
+msgstr "<input>=XIRR(B1:B5; A1:A5; 0,1)</input> връща 0,1828, или 18,28%."
#. HRiCT
#: 04060118.xhp
@@ -35808,7 +35817,7 @@ msgctxt ""
"par_id2406201422405814\n"
"help.text"
msgid "This function is similar to GAMMADIST and was introduced for interoperability with other office suites."
-msgstr ""
+msgstr "Функцията е подобна на GAMMADIST и е въведена за съвместимост с други офис пакети."
#. Gk9Ch
#: 04060182.xhp
@@ -35817,7 +35826,7 @@ msgctxt ""
"par_id240620142238475\n"
"help.text"
msgid "GAMMA.DIST(Number; Alpha; Beta; Cumulative)"
-msgstr ""
+msgstr "GAMMA.DIST(Число; Алфа; Бета; Кумулативна)"
#. kLcmS
#: 04060182.xhp
@@ -35853,7 +35862,7 @@ msgctxt ""
"par_id2406201422391058\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 or False calculates the probability density function; <emph>Cumulative</emph> = 1, True, or any other value calculates the cumulative distribution function."
-msgstr ""
+msgstr "<emph>Кумулативна</emph> = 0 или False означава да се изчисли функцията на плътност; при <emph>Кумулативна</emph> = 1, True или която и да е друга стойност се изчислява кумулативната функция на разпределението."
#. Z7AS8
#: 04060182.xhp
@@ -36312,7 +36321,7 @@ msgctxt ""
"par_id231585952506847\n"
"help.text"
msgid "<emph>Cumulative </emph> (optional) specifies whether to calculate the probability mass function (FALSE or 0) or the cumulative distribution function (any other value). The probability mass function is the default if no value is specified for this parameter."
-msgstr ""
+msgstr "<emph>Кумулативна</emph> (незадължителен) указва дали да се изчислява функцията на вероятностната маса (FALSE или 0) или кумулативната функция на разпределение (всяка друга стойност). Ако не е зададена стойност за този параметър, се подразбира функцията на вероятностната маса."
#. WUiB6
#: 04060182.xhp
@@ -37221,7 +37230,7 @@ msgctxt ""
"par_id3148390\n"
"help.text"
msgid "<emph>Number</emph> (required) is the probability value for which the inverse standard logarithmic distribution is to be calculated."
-msgstr ""
+msgstr "<emph>Число</emph> (задължителен) е вероятностната стойност, за която се изчислява обратното стандартно логаритмично разпределение."
#. aJATB
#: 04060183.xhp
@@ -37230,7 +37239,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<emph>Mean</emph> (optional) is the arithmetic mean of the standard logarithmic distribution (defaults to 0 if omitted)."
-msgstr ""
+msgstr "<emph>Средно</emph> (незадължителен) е средното аритметично на стандартното логаритмично разпределение (ако е пропуснат, се подразбира 0)."
#. PDJWU
#: 04060183.xhp
@@ -37239,7 +37248,7 @@ msgctxt ""
"par_id3145355\n"
"help.text"
msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution (defaults to 1 if omitted)."
-msgstr ""
+msgstr "<emph>СтОткл</emph> (незадължителен) е стандартното отклонение на стандартното логаритмично разпределение (ако е пропуснат, се подразбира 1)."
#. Uh6oi
#: 04060183.xhp
@@ -37293,7 +37302,7 @@ msgctxt ""
"par_id2901049\n"
"help.text"
msgid "LOGNORM.INV(Number [; Mean [; StDev]])"
-msgstr ""
+msgstr "LOGNORM.INV(Число [; Средно [; СтОткл]])"
#. p2y5k
#: 04060183.xhp
@@ -37311,7 +37320,7 @@ msgctxt ""
"par_id2901538\n"
"help.text"
msgid "<emph>Mean</emph> (optional) is the arithmetic mean of the standard logarithmic distribution (defaults to 0 if omitted)."
-msgstr ""
+msgstr "<emph>Средно</emph> (незадължителен) е средното аритметично на стандартното логаритмично разпределение (ако е пропуснат, се подразбира 0)."
#. pPM9C
#: 04060183.xhp
@@ -37320,7 +37329,7 @@ msgctxt ""
"par_id2901355\n"
"help.text"
msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution (defaults to 1 if omitted)."
-msgstr ""
+msgstr "<emph>СтОткл</emph> (незадължителен) е стандартното отклонение на стандартното логаритмично разпределение (ако е пропуснат, се подразбира 1)."
#. UYg6S
#: 04060183.xhp
@@ -38841,7 +38850,7 @@ msgctxt ""
"par_id2946093\n"
"help.text"
msgid "POISSON.DIST(Number; Mean ; Cumulative)"
-msgstr ""
+msgstr "POISSON.DIST(Число; Средно; Кумулативна)"
#. jnjk7
#: 04060184.xhp
@@ -38868,7 +38877,7 @@ msgctxt ""
"par_id2949200\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 or False to calculate the probability mass function; <emph>Cumulative</emph> = 1, True, or any other non-zero value to calculate the cumulative distribution function."
-msgstr ""
+msgstr "<emph>Кумулативна</emph> = 0 или False за изчисляване функцията на вероятностната маса; <emph>Кумулативна</emph> = 1, True или която и да е друга ненулева стойност за изчисляване на кумулативната функция на разпределение."
#. gXFJQ
#: 04060184.xhp
@@ -45719,14 +45728,14 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FMT\">Показва списъка на стиловете от избраната категория.</ahelp>"
-#. xvaTV
+#. YBufY
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_idN109D1\n"
"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
-msgstr "В <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"контекстно меню\">контекстното меню</link> можете да избирате команди за създаване на нов стил, изтриване на създаден от потребителя стил и промяна на избрания стил."
+msgid "In the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgstr "В <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">контекстното меню</link> можете да избирате команди за създаване на нов стил, изтриване на създаден от потребителя стил и промяна на избрания стил."
#. zdEoY
#: 05100000.xhp
@@ -46275,7 +46284,7 @@ msgctxt ""
"par_id991609782427459\n"
"help.text"
msgid "Data Bar"
-msgstr ""
+msgstr "Лента за данни"
#. xapwr
#: 05120000.xhp
@@ -46284,7 +46293,7 @@ msgctxt ""
"par_id41609780964157\n"
"help.text"
msgid "Data bar option will fill the cell with solid or gradient color corresponding to the numeric value in the cell. Default is blue for positive and red for negative."
-msgstr ""
+msgstr "Настройката „Лента за данни“ запълва клетката с плътен или преливащ цвят, съответстващ на числовата стойност в нея. Подразбира се син цвят за положителни стойности и червен за отрицателни."
#. AKYoW
#: 05120000.xhp
@@ -46293,7 +46302,7 @@ msgctxt ""
"par_id931609781970981\n"
"help.text"
msgid "The calculation of the area of fill is based on Min - Max - Percentile - Value - Percent - Formula."
-msgstr ""
+msgstr "Изчисляването на областта за запълване зависи от параметрите „Минимум“, „Максимум“, „Процентил“, „Стойност“, „Процент“ и „Формула“."
#. smxFL
#: 05120000.xhp
@@ -46302,7 +46311,7 @@ msgctxt ""
"par_id981609782003841\n"
"help.text"
msgid "The choices Min and Max are sufficient to themselves as found in the range. Other options need to be specified by a value (Percentile, Value, Percentage) or a cell reference or formula (Formula)."
-msgstr ""
+msgstr "Избирането на „Минимум“ и „Максимум“ е достатъчно само по себе си, защото те се извличат от диапазона. За „Процентил“, „Стойност“ и „Процент“ трябва да се зададе стойност, а за „Формула“ – формула или обръщение към клетка."
#. qBVjM
#: 05120000.xhp
@@ -46311,7 +46320,7 @@ msgctxt ""
"par_id281609781729359\n"
"help.text"
msgid "<emph>More Options...</emph> opens a dialog to:"
-msgstr ""
+msgstr "<emph>Още настройки...</emph> отваря диалогов прозорец за:"
#. saDJA
#: 05120000.xhp
@@ -46320,7 +46329,7 @@ msgctxt ""
"par_id271609781812913\n"
"help.text"
msgid "change colors"
-msgstr ""
+msgstr "промяна на цветовете,"
#. uncF8
#: 05120000.xhp
@@ -46329,7 +46338,7 @@ msgctxt ""
"par_id921609781838551\n"
"help.text"
msgid "change position of vertical axis within the cell"
-msgstr ""
+msgstr "промяна на позицията на вертикалната ос в клетката,"
#. wJNxE
#: 05120000.xhp
@@ -46338,7 +46347,7 @@ msgctxt ""
"par_id631609781859971\n"
"help.text"
msgid "the bar's minimum and maximum length in percentage"
-msgstr ""
+msgstr "задаване на минималната и максималната дължина на лентата в проценти."
#. de4nk
#: 05120000.xhp
@@ -48021,7 +48030,7 @@ msgctxt ""
"hd_id3150517\n"
"help.text"
msgid "<variable id=\"freezerowcolum\"><link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze Rows and Columns</link></variable>"
-msgstr ""
+msgstr "<variable id=\"freezerowcolum\"><link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Фиксиране на редове и колони</link></variable>"
#. XjvVY
#: 07090000.xhp
@@ -48039,7 +48048,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Freeze Cells"
-msgstr ""
+msgstr "Фиксиране на клетки"
#. U6FYG
#: 07090100.xhp
@@ -48048,7 +48057,7 @@ msgctxt ""
"bm_id821612315529410\n"
"help.text"
msgid "<bookmark_value>freezing;first row</bookmark_value> <bookmark_value>freezing;first column</bookmark_value> <bookmark_value>freezing;cells</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>фиксиране;първи ред</bookmark_value> <bookmark_value>фиксиране;първа колона</bookmark_value> <bookmark_value>фиксиране;клетки</bookmark_value>"
#. tTzNC
#: 07090100.xhp
@@ -48057,7 +48066,7 @@ msgctxt ""
"hd_id961612313262512\n"
"help.text"
msgid "<variable id=\"freezecellsh1\"><link href=\"text/scalc/01/07090100.xhp\" name=\"Freeze Cells\">Freeze Cells</link></variable>"
-msgstr ""
+msgstr "<variable id=\"freezecellsh1\"><link href=\"text/scalc/01/07090100.xhp\" name=\"Freeze Cells\">Фиксиране на клетки</link></variable>"
#. sWGWB
#: 07090100.xhp
@@ -48066,7 +48075,7 @@ msgctxt ""
"par_id481612313262514\n"
"help.text"
msgid "Freezes the first column or the first row of the current spreadsheet."
-msgstr ""
+msgstr "Фиксира първата колона или първия ред на текущия работен лист."
#. ozNTG
#: 12010000.xhp
@@ -48615,7 +48624,7 @@ msgctxt ""
"hd_id3146976\n"
"help.text"
msgid "Case sensitive"
-msgstr ""
+msgstr "Зачитане на регистъра"
#. CF7yB
#: 12030200.xhp
@@ -48624,7 +48633,7 @@ msgctxt ""
"par_id3153091\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\">Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\">Сортира първо главните, а после малките букви. За азиатски езици се прилагат специални правила.</ahelp>"
#. QbcU3
#: 12030200.xhp
@@ -48633,7 +48642,7 @@ msgctxt ""
"par_idN10637\n"
"help.text"
msgid "For Asian languages: Check <emph>Case Sensitive</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
-msgstr ""
+msgstr "За азиатски езици: отметнете <emph>Зачитане на регистъра</emph>, за да приложите сравняване на много нива. При него стойностите първо се сравняват по примитивните си форми, без отчитане на регистъра и диакритичните знаци. Ако са еднакви, се извършва сравняване на второ ниво с отчитане на диакритичните знаци. Ако все още са еднакви, на трето ниво на сравнение се взимат предвид регистърът, ширината на знаците и разликите в японските кана."
#. Z5MKw
#: 12030200.xhp
@@ -48642,7 +48651,7 @@ msgctxt ""
"hd_id3155856\n"
"help.text"
msgid "Range contains row/column labels"
-msgstr ""
+msgstr "Областта съдържа заглавия на редове/колони"
#. dHpeV
#: 12030200.xhp
@@ -48696,7 +48705,7 @@ msgctxt ""
"hd_id71610757096466\n"
"help.text"
msgid "Include boundary column(s)/row(s) containing only comments"
-msgstr ""
+msgstr "Включване на крайните колони/редове само с коментари"
#. AKcgf
#: 12030200.xhp
@@ -48705,7 +48714,7 @@ msgctxt ""
"par_id431610757186031\n"
"help.text"
msgid "Range boundary columns (for sorting rows) or boundary rows (for sorting columns) of a sorting range are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing comments are also to be sorted."
-msgstr ""
+msgstr "Граничните колони на диапазона за сортиране (при сортиране на редове) или граничните редове (при сортиране на колони) по подразбиране не се сортират, ако са празни. Отметнете тази настройка, ако граничните колони или редове, съдържащи коментари, трябва също да се сортират."
#. zDzUQ
#: 12030200.xhp
@@ -48714,7 +48723,7 @@ msgctxt ""
"hd_id161610757296697\n"
"help.text"
msgid "Include boundary column(s)/row(s) containing only images"
-msgstr ""
+msgstr "Включване на крайните колони/редове само с изображения"
#. QCvRo
#: 12030200.xhp
@@ -48723,7 +48732,7 @@ msgctxt ""
"par_id181610758875786\n"
"help.text"
msgid "Border columns (for sorting rows) or border rows (for sorting columns) of a sorting area are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing images are also to be sorted."
-msgstr ""
+msgstr "Граничните колони (при сортиране на редове) или граничните редове (при сортиране на колони) на област за сортиране по подразбиране не се сортират, ако са празни. Отметнете тази настройка, ако граничните колони или редове, съдържащи изображения, трябва също да се сортират."
#. LBnqi
#: 12030200.xhp
@@ -48750,7 +48759,7 @@ msgctxt ""
"hd_id3153418\n"
"help.text"
msgid "Sort results (named ranges list)"
-msgstr ""
+msgstr "Резултати от сортирането (списък с наименувани диапазони)"
#. JGhWC
#: 12030200.xhp
@@ -48759,7 +48768,7 @@ msgctxt ""
"par_id3155602\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Изберете наименуван <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\">диапазон от клетки</link>, в който да се покаже сортираният списък.</ahelp>"
#. nxJWR
#: 12030200.xhp
@@ -48768,7 +48777,7 @@ msgctxt ""
"hd_id3153707\n"
"help.text"
msgid "Sort results (input box)"
-msgstr ""
+msgstr "Резултати от сортирането (входно поле)"
#. BDJEH
#: 12030200.xhp
@@ -48777,7 +48786,7 @@ msgctxt ""
"par_id3145642\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\">Enter the cell range where you want to display the sorted list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\">Въведете диапазона от клетки, в който искате да се покаже сортираният списък.</ahelp>"
#. ZCoZV
#: 12030200.xhp
@@ -48804,7 +48813,7 @@ msgctxt ""
"hd_id3154704\n"
"help.text"
msgid "Custom sort order list"
-msgstr ""
+msgstr "Списък за потребителско сортиране"
#. hQE6m
#: 12030200.xhp
@@ -63260,23 +63269,23 @@ msgctxt ""
msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
msgstr "Ако разделителите са по-малко от низовете за обединяване, ще бъдат използвани отново отначало."
-#. 4Zi8d
+#. QaJCw
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556229012536\n"
"help.text"
-msgid "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
-msgstr "<input>=TEXTJOIN(\" \", TRUE, \"Слънцето\", \"изгрява\", \"от\", \"изток\")</input> връща \"Слънцето изгрява от изток\" със знак за интервал като разделител, като празните низове се игнорират."
+msgid "<input>=TEXTJOIN(\" \"; 1; \"Here\"; \"comes\"; \"the\"; \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
+msgstr ""
-#. SamHC
+#. 39FPP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id441556239012536\n"
"help.text"
-msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
-msgstr "Ако A1:B2 съдържа съответно \"Слънцето\", \"изгрява\", \"от\" и \"изток\", <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> връща \"Слънцето-изгрява-от-изток\" с разделител дефис, като празните низове се игнорират."
+msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\";1;A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
+msgstr ""
#. AXCJg
#: func_textjoin.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/04.po b/source/bg/helpcontent2/source/text/scalc/04.po
index 5863326473e..c2a1554752b 100644
--- a/source/bg/helpcontent2/source/text/scalc/04.po
+++ b/source/bg/helpcontent2/source/text/scalc/04.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2020-02-21 08:15+0000\n"
+"PO-Revision-Date: 2021-03-02 12:22+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc04/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc04/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1555408597.000000\n"
#. NQkD7
@@ -50,7 +50,7 @@ msgctxt ""
"par_id3155067\n"
"help.text"
msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
-msgstr ""
+msgstr "За да запълните област от клетки с формулата, въведена във <emph>входния ред</emph>, натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
#. RYfUJ
#: 01020000.xhp
@@ -410,7 +410,7 @@ msgctxt ""
"par_id3159258\n"
"help.text"
msgid "Selects all cells of the range created by the cursor movements using the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Arrows</keycode> key combinations. If used to select rows and columns together, a rectangular cell range is selected."
-msgstr ""
+msgstr "Избира всички клетки от диапазона, създаден чрез движения на курсора с клавишните комбинации <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+стрелки</keycode>. Ако се използва за избиране едновременно на редове и колони, се избира правоъгълен диапазон от клетки."
#. F95ji
#: 01020000.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index 2770791a272..0c9c4416f70 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-17 15:58+0100\n"
-"PO-Revision-Date: 2021-01-15 20:36+0000\n"
+"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/bg/>\n"
"Language: bg\n"
@@ -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.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356865.000000\n"
@@ -2823,7 +2823,7 @@ msgctxt ""
"par_id3159156\n"
"help.text"
msgid "Using the menu command <emph>Format - Conditional - Condition</emph>, the dialog allows you to define conditions per cell, which must be met in order for the selected cells to have a particular format."
-msgstr ""
+msgstr "Диалоговият прозорец на командата <emph>Форматиране - Условно - Условие</emph> ви позволява да зададете условия за клетка, които трябва да бъдат изпълнени, за да придобият клетките определен формат."
#. SbhJy
#: cellstyle_conditional.xhp
@@ -2868,7 +2868,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "Choose <emph>Format - Conditional - Condition</emph>."
-msgstr ""
+msgstr "Изберете <emph>Форматиране - Условно - Условие</emph>."
#. nFqJG
#: cellstyle_conditional.xhp
@@ -2913,7 +2913,7 @@ msgctxt ""
"par_id3155337\n"
"help.text"
msgid "First of all, create a table in which a few different values occur. For your test you can create tables with any random numbers:"
-msgstr ""
+msgstr "Най-напред създайте таблица, в която се срещат няколко различни стойности. За проба можете да създадете таблици със случайни числа:"
#. A66qh
#: cellstyle_conditional.xhp
@@ -2976,7 +2976,7 @@ msgctxt ""
"par_id3155529\n"
"help.text"
msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, click the <emph>Color</emph> button and then select a background color. Click <emph>OK</emph>."
-msgstr ""
+msgstr "В диалога <emph>Форматиране на клетки</emph>, в раздела <emph>Фон</emph> щракнете върху бутона <emph>Цвят</emph> и изберете цвят за фона. Щракнете върху <emph>OK</emph>."
#. AwUDA
#: cellstyle_conditional.xhp
@@ -2985,7 +2985,7 @@ msgctxt ""
"par_id3154484\n"
"help.text"
msgid "In the Styles deck of the Sidebar, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
-msgstr ""
+msgstr "В раздела „Стилове“ от страничната лента щракнете върху иконата <emph>Нов стил от избраното</emph>. Въведете име на новия стил. За този пример, наименувайте стила „Над средното“."
#. 4bRZa
#: cellstyle_conditional.xhp
@@ -3030,7 +3030,7 @@ msgctxt ""
"par_id3156016\n"
"help.text"
msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
-msgstr ""
+msgstr "Изберете функцията AVERAGE. Изберете с мишката всичките случайни числа. Ако не виждате цялата област, защото помощникът за функции я закрива, можете временно да свиете диалога с иконата <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Свиване</item></link>."
#. YEqsh
#: cellstyle_conditional.xhp
@@ -3075,7 +3075,7 @@ msgctxt ""
"par_id3153801\n"
"help.text"
msgid "Choose the <emph>Format - Conditional - Condition</emph> command to open the corresponding dialog."
-msgstr ""
+msgstr "Изберете командата <emph>Форматиране - Условно - Условие</emph>, за да отворите съответния диалог."
#. oaUQo
#: cellstyle_conditional.xhp
@@ -3138,7 +3138,7 @@ msgctxt ""
"par_id3147298\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
-msgstr ""
+msgstr "Натиснете <emph>Редактиране - Специално поставяне - Специално поставяне</emph>. Появява се диалогът <emph>Специално поставяне</emph>."
#. KEnNM
#: cellstyle_conditional.xhp
@@ -3147,7 +3147,7 @@ msgctxt ""
"par_id3166465\n"
"help.text"
msgid "In the <emph>Paste</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>. Or you can click the <emph>Formats only</emph> button instead."
-msgstr ""
+msgstr "В областта <emph>Поставяне</emph> отметнете само полето <emph>Формати</emph>. Всички останали полета трябва да са празни. Натиснете <emph>OK</emph>. Можете също да щракнете върху бутона <emph>Само формати</emph>."
#. YMDKA
#: cellstyle_conditional.xhp
@@ -3156,7 +3156,7 @@ msgctxt ""
"par_id3159123\n"
"help.text"
msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional - Condition</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Форматиране - Условно - Условие</link>"
#. HFoKB
#: cellstyle_minusvalue.xhp
@@ -3228,7 +3228,7 @@ msgctxt ""
"image_anc\n"
"help.text"
msgid "Changing Image Anchor in Calc"
-msgstr ""
+msgstr "Промяна на закотвянето на изображение в Calc"
#. Vwqvb
#: change_image_anchor.xhp
@@ -3237,7 +3237,7 @@ msgctxt ""
"bm_id471607970579914\n"
"help.text"
msgid "<bookmark_value>anchor;image</bookmark_value><bookmark_value>image anchor;in Calc</bookmark_value><bookmark_value>image anchor in Calc;changing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>котви;на изображения</bookmark_value><bookmark_value>изображение, котва на;в Calc</bookmark_value><bookmark_value>изображение, закотвяне в Calc;промяна</bookmark_value>"
#. t3pgZ
#: change_image_anchor.xhp
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id851607971999527\n"
"help.text"
msgid "<variable id=\"anchor_image\"><link href=\"text/scalc/guide/change_image_anchor.xhp\" name=\"Changing Anchor of Image\">Changing the Anchor of an Image</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"anchor_image\"><link href=\"text/scalc/guide/change_image_anchor.xhp\" name=\"Changing Anchor of Image\">Промяна на закотвянето на изображение в Calc</link></variable>"
#. BoMUp
#: change_image_anchor.xhp
@@ -3255,7 +3255,7 @@ msgctxt ""
"par_id881607972030094\n"
"help.text"
msgid "Images are inserted in a Calc spreadsheet anchored to cells by default and do not resize when the cell is moved."
-msgstr ""
+msgstr "По подразбиране изображенията в електронните таблици на Calc се вмъкват със закотвяне към клетките и не се преоразмеряват, когато клетката се премества."
#. gFthU
#: change_image_anchor.xhp
@@ -3264,7 +3264,7 @@ msgctxt ""
"par_id741607810664944\n"
"help.text"
msgid "Images can be anchored in three different ways:"
-msgstr ""
+msgstr "Изображенията могат да бъдат закотвени по три различни начина:"
#. WFaiX
#: change_image_anchor.xhp
@@ -3273,7 +3273,7 @@ msgctxt ""
"par_id351607809926451\n"
"help.text"
msgid "<emph>To Cell:</emph> the image will move along with the cell, when copying, sorting or inserting and deleting cells above and on the left of the cell holding the anchor."
-msgstr ""
+msgstr "<emph>Към клетка:</emph> изображението ще се мести заедно с клетката, когато се копират, сортират, вмъкват или изтриват клетки над и вляво от клетката, съдържаща котвата."
#. 99BBj
#: change_image_anchor.xhp
@@ -3282,7 +3282,7 @@ msgctxt ""
"par_id871607809971823\n"
"help.text"
msgid "<emph>To Cell(resize with cell):</emph> the image will move along with the cell. In addition, the image height and width will be resized if the cell holding the anchor is later resized. The aspect ratio of the image follows the later aspect ratio of the cell holding the anchor."
-msgstr ""
+msgstr "<emph>Към клетка (преоразмеряване с клетката):</emph> изображението ще се мести заедно с клетката. Освен това височината и ширината на изображението ще се променят, ако впоследствие клетката, съдържаща котвата, бъде преоразмерена. Пропорциите на изображението следват тези на клетката с котвата."
#. DGAiK
#: change_image_anchor.xhp
@@ -3291,7 +3291,7 @@ msgctxt ""
"par_id551607810008215\n"
"help.text"
msgid "<emph>To Page:</emph> the image position in the page is not affected by cells ordering or cells movements."
-msgstr ""
+msgstr "<emph>Към страницата:</emph> позицията на изображението върху страницата не се влияе от подреждането или преместването на клетки."
#. 97qEg
#: change_image_anchor.xhp
@@ -3300,7 +3300,7 @@ msgctxt ""
"hd_id151607809776222\n"
"help.text"
msgid "To Change the anchor of an image"
-msgstr ""
+msgstr "За да промените закотвянето на изображение"
#. t5B8m
#: change_image_anchor.xhp
@@ -3309,7 +3309,7 @@ msgctxt ""
"par_id41607978764613\n"
"help.text"
msgid "Select the image and choose <menuitem>Format - Anchor</menuitem>, or, on the context menu of the image choose <menuitem>Anchor</menuitem>"
-msgstr ""
+msgstr "Изберете изображението и изберете <menuitem>Форматиране - Котва</menuitem> или в контекстното меню на изображението изберете <menuitem>Котва</menuitem>."
#. pSQWf
#: change_image_anchor.xhp
@@ -3318,7 +3318,7 @@ msgctxt ""
"par_id761607809520625\n"
"help.text"
msgid "The original size of the image and cell is preserved while pasting the entire row or entire column for both <emph>To Cell</emph> and <emph>To Cell(resize with cell)</emph> options."
-msgstr ""
+msgstr "Оригиналният размер на изображението и клетката се запазва при поставяне на цял ред или колона както за настройката <emph>Към клетка</emph>, така и за <emph>Към клетка (преоразмеряване с клетката)</emph>."
#. G5Dfz
#: consolidate.xhp
@@ -4605,7 +4605,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "Choose <emph>Insert - Pivot Table</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Filters\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
-msgstr ""
+msgstr "Изберете <emph>Вмъкване - Обобщаваща таблица</emph>. Появява се диалогът <emph>Избор на източник</emph>. Изберете <emph>Текуща селекция</emph> и натиснете <emph>OK</emph>. Заглавията на таблицата се появяват като бутони в диалога <emph>Обобщаваща таблица</emph>. Плъзнете желаните бутони и ги пуснете в областите „Филтри“, „Полета за колони“, „Полета за редове“ и „Полета с данни“."
#. XR8Sd
#: datapilot_createtable.xhp
@@ -4623,7 +4623,7 @@ msgctxt ""
"par_id7599414\n"
"help.text"
msgid "Drag a button to the <emph>Filters</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
-msgstr ""
+msgstr "Плъзването на бутон до областта <emph>Филтри</emph> създава бутон и списъчно поле в горната част на генерираната обобщаваща таблица. Списъчното поле служи за филтриране на обобщаващата таблица по съдържание според избраните елементи. Можете да използвате плъзгане и пускане в генерираната обобщаваща таблица, за да филтрирате с други полета за страница."
#. vFX84
#: datapilot_createtable.xhp
@@ -4686,7 +4686,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Filters</emph> area. The pivot table is inserted further down."
-msgstr ""
+msgstr "Напуснете диалога „Обобщаваща таблица“, като натиснете OK. Ще бъде вмъкнат бутон <emph>Филтър</emph> или бутон за страница за всяко поле с данни, пуснато в областта <emph>Филтри</emph>. Обобщаващата таблица се вмъква отдолу."
#. dJsd8
#: datapilot_deletetable.xhp
@@ -4785,7 +4785,7 @@ msgctxt ""
"par_id1648915\n"
"help.text"
msgid "In the Pivot Table dialog, you can drag a button to the <emph>Filters</emph> area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter."
-msgstr ""
+msgstr "В диалога Обобщаваща таблица можете да плъзнете бутон до областта <emph>Филтри</emph>, за да създадете бутон и списъчно поле в горната част на генерираната обобщаваща таблица. Списъчното поле служи за филтриране на обобщаващата таблица по съдържание според избраните елементи. Можете да използвате плъзгане и пускане в обобщаващата таблица, за да филтрирате с други полета за страница."
#. AeGto
#: datapilot_edittable.xhp
@@ -9600,7 +9600,7 @@ msgctxt ""
"par_id751525167435160\n"
"help.text"
msgid "Pivot chart buttons are unique to pivot charts, normal charts don't have them. The buttons shows the layout of the pivot table, which are the pivot table fields. If present, filters are displayed in the top. Row fields are displayed on the bottom of the chart next to each other and the legend shows the buttons from column fields stacked."
-msgstr ""
+msgstr "Бутоните за обобщени диаграми са специфични за тях и липсват при обикновените диаграми. Те показват оформлението на обобщената диаграма, което е определено от полетата на обобщената таблица. Филтрите, ако ги има, се показват най-отгоре. Полетата за редове се показват едно до друго в долната част на диаграмата, а бутоните с полета за колони са вертикално подредени в легендата."
#. HiBfg
#: pivotchart_filter.xhp
@@ -9627,7 +9627,7 @@ msgctxt ""
"par_id401525167457977\n"
"help.text"
msgid "Existing filters shows what is filtered: when nothing is filtered \"- all -\" is shown, when some data is filtered, then \"- multiple -\" is shown and when only one value is not filtered, the value is shown."
-msgstr ""
+msgstr "Съществуващите филтри показват какво е филтрирано: отсъствието на филтър се отбелязва с „- всичко -“, когато са филтрирани част от данните, се изписва „- няколко -“, а когато има само една нефилтрирана стойност, се показва самата тя."
#. Qprys
#: pivotchart_update.xhp
@@ -11472,7 +11472,7 @@ msgctxt ""
"par_id3153142\n"
"help.text"
msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <menuitem>Data - More Filters - Advanced Filter</menuitem>, and define the filter conditions."
-msgstr ""
+msgstr "След като създадете матрицата за филтриране, изберете областите от листа, които да бъдат филтрирани. Отворете диалоговия прозорец <emph>Разширен филтър</emph> с командата <menuitem>Данни - Още филтри - Разширен филтър</menuitem> и посочете условията за филтриране."
#. 2F7wd
#: specialfilter.xhp
@@ -11481,7 +11481,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <menuitem>Format - Rows - Show</menuitem> command."
-msgstr ""
+msgstr "След това натиснете OK и ще видите, че са останали видими само тези редове от оригиналния лист, които отговарят на критериите за търсене. Всички други редове временно са скрити и могат да бъдат показани отново с командата <menuitem>Форматиране - Редове - Показване</menuitem>."
#. Sn4mJ
#: specialfilter.xhp
@@ -11490,7 +11490,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Пример"
#. UFqRd
#: specialfilter.xhp
@@ -11652,7 +11652,7 @@ msgctxt ""
"par_id3153566\n"
"help.text"
msgid "Specify that only rows which either have the value <literal>January</literal> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
-msgstr ""
+msgstr "Указва, че ще се показват само редовете, които съдържат стойност <literal>Януари</literal> в колоната <emph>Месец</emph> ИЛИ стойност, по-малка от 160000, в колоната <emph>Стандартна</emph>."
#. ApUpg
#: specialfilter.xhp
@@ -11661,7 +11661,7 @@ msgctxt ""
"par_id3147372\n"
"help.text"
msgid "Choose <menuitem>Data - More Filters - Advanced Filter</menuitem>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
-msgstr ""
+msgstr "Изберете <menuitem>Данни - Още филтри - Разширен филтър</menuitem>, после изберете областта A20:E22. След като натиснете OK, ще се виждат само филтрираните редове, а останалите ще бъдат скрити."
#. jQ6bn
#: subtotaltool.xhp
@@ -13047,7 +13047,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "If more than one name starts with the same characters, you can scroll forward through all the names using the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab keys</keycode> and backward using the <keycode>Shift +</keycode> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab</keycode> keys."
-msgstr ""
+msgstr "Ако няколко имена започват с едни и същи знаци, можете да ги обхождате напред и назад съответно с комбинациите <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab</keycode> и <keycode>Shift +</keycode> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> <keycode>+ Tab</keycode>."
#. VDbbB
#: value_with_name.xhp
diff --git a/source/bg/helpcontent2/source/text/sdatabase.po b/source/bg/helpcontent2/source/text/sdatabase.po
index c45ea1dfe82..a5659fbdd26 100644
--- a/source/bg/helpcontent2/source/text/sdatabase.po
+++ b/source/bg/helpcontent2/source/text/sdatabase.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: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2020-10-30 22:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
+"PO-Revision-Date: 2021-03-13 13:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdatabase/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
#. ugSgG
#: 02000000.xhp
@@ -688,7 +688,7 @@ msgctxt ""
"hd_id3153279\n"
"help.text"
msgid "Specifying the relation type"
-msgstr "Указване типа на релацията"
+msgstr "Указване типа на връзката"
#. zkKD5
#: 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 "Ако щракнете двукратно върху линията, съединяваща две свързани полета, или изберете командата <emph>Вмъкване - Нова релация</emph>, ще можете да зададете типа на връзката в диалоговия прозорец <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Релации</emph></link>."
+msgstr "Ако щракнете двукратно върху линията, съединяваща две свързани полета, или изберете командата <emph>Вмъкване - Нова връзка</emph>, ще можете да зададете типа на връзката в диалоговия прозорец <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Връзки</emph></link>."
#. rAkmw
#: 02010100.xhp
@@ -733,7 +733,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "Alternatively, delete the respective entries in <emph>Fields involved </emph>in the <emph>Relations</emph> dialog. Or press Tab until the connecting vector is displayed highlighted, then press Shift+F10 to open the context menu and select <emph>Delete </emph>command."
-msgstr "Вместо това можете да изтриете съответните елементи от списъка <emph>Участващи полета</emph> в диалоговия прозорец <emph>Релации</emph> или да натискате Tab, докато изберете желаната линия, после да натиснете Shift+F10, за да видите контекстното меню, и да изберете командата <emph>Изтриване</emph>."
+msgstr "Вместо това можете да изтриете съответните елементи от списъка <emph>Участващи полета</emph> в диалоговия прозорец <emph>Връзки</emph> или да натискате Tab, докато изберете желаната линия, после да натиснете Shift+F10, за да видите контекстното меню, и да изберете командата <emph>Изтриване</emph>."
#. pBybB
#: 02010100.xhp
@@ -2641,7 +2641,7 @@ msgctxt ""
"par_id3151205\n"
"help.text"
msgid "If you double-click a connection between two linked fields in the query design, or if you choose <emph>Insert - New Relation</emph>, the <emph>Join Properties</emph> dialog appears. These properties will be used in all queries created in the future."
-msgstr "Ако щракнете двукратно върху връзка между две свързани полета в проекта на заявката или ако изберете <emph>Вмъкване - Нова релация</emph>, ще видите диалоговия прозорец <emph>Свойства на съединение</emph>. Тези свойства ще бъдат използвани във всички създавани в бъдеще заявки."
+msgstr "Ако щракнете двукратно върху връзка между две свързани полета в проекта на заявката или ако изберете <emph>Вмъкване - Нова връзка</emph>, ще видите диалоговия прозорец <emph>Свойства на съединение</emph>. Тези свойства ще бъдат използвани във всички създавани в бъдеще заявки."
#. oszEF
#: 02010101.xhp
@@ -2992,7 +2992,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Таблици"
#. aA9nH
#: 05000000.xhp
@@ -3001,7 +3001,7 @@ msgctxt ""
"hd_id3148520\n"
"help.text"
msgid "<link href=\"text/sdatabase/05000000.xhp\" name=\"Tables\">Tables</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05000000.xhp\" name=\"Tables\">Таблици</link>"
#. ozjR6
#: 05000000.xhp
@@ -3010,7 +3010,7 @@ msgctxt ""
"par_id3147102\n"
"help.text"
msgid "Table data edit mode allows you to see your data as rows of records, with optional filtering and sorting of that data. In this mode, you can also enter new records, make changes to, and delete existing records."
-msgstr ""
+msgstr "В режима на редактиране на таблични данни виждате данните като редове със записи, които могат да се филтрират и сортират. В този режим можете също да въвеждате нови записи, да променяте и да изтривате съществуващи записи."
#. ZdcXQ
#: 05000000.xhp
@@ -3019,7 +3019,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "In the $[officename] Help, you will find further information on the following subjects:"
-msgstr ""
+msgstr "В помощта на $[officename] можете да намерите допълнителна информация по следните теми:"
#. GAgsq
#: 05000000.xhp
@@ -3028,7 +3028,7 @@ msgctxt ""
"hd_id3152425\n"
"help.text"
msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new or edit table design\">Create new or edit table design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new or edit table design\">Създаване или редактиране на проект на таблица</link>"
#. Hk4Jz
#: 05000000.xhp
@@ -3037,16 +3037,16 @@ msgctxt ""
"hd_id3149095\n"
"help.text"
msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sort and Filter Data\">Sort and Filter Data</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Sort and Filter Data\">Сортиране и филтриране на данни</link>"
-#. ZEwwQ
+#. hNfEL
#: 05000000.xhp
msgctxt ""
"05000000.xhp\n"
"hd_id3154288\n"
"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
-msgstr ""
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
+msgstr "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Релации, първични ключове и външни ключове</link>"
#. fAyEi
#: 05000001.xhp
@@ -3055,7 +3055,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table Context Menus"
-msgstr ""
+msgstr "Контекстни менюта на таблиците"
#. nfG4Q
#: 05000001.xhp
@@ -3064,7 +3064,7 @@ msgctxt ""
"hd_id3148983\n"
"help.text"
msgid "<link href=\"text/sdatabase/05000001.xhp\" name=\"Table Context Menus\">Table Context Menus</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05000001.xhp\" name=\"Table Context Menus\">Контекстни менюта на таблиците</link>"
#. PFkAG
#: 05000001.xhp
@@ -3073,7 +3073,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "The context menu of the table container offers various functions that apply to all database tables. To edit a particular table within the database, select the corresponding table and open its context menu."
-msgstr ""
+msgstr "Контекстното меню на контейнера на таблиците предлага различни функции, приложими върху всички таблици в базите от данни. За да редактирате определена таблица, изберете я и отворете контекстното ѝ меню."
#. MLxCc
#: 05000001.xhp
@@ -3082,7 +3082,7 @@ msgctxt ""
"par_id3146958\n"
"help.text"
msgid "Depending on the context, it is possible that not all the functions for your current database will be listed in the context menus. For example, the <emph>Relationships</emph> command for defining relationships between various tables is only available with relational databases."
-msgstr ""
+msgstr "В зависимост от контекста е възможно някои функции за текущата база от данни да отсъстват от контекстните менюта. Например командата <emph>Релации</emph> за задаване на връзки между таблици е налице само в релационни бази от данни."
#. B6Az2
#: 05000001.xhp
@@ -3091,7 +3091,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "Depending on the database system used, you will find the following entries on the context menus:"
-msgstr ""
+msgstr "В зависимост от използваната система за управление на бази от данни контекстните менюта може да съдържат следните команди:"
#. xKPHW
#: 05000001.xhp
@@ -3100,7 +3100,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "If a <link href=\"text/shared/01/05340400.xhp\" name=\"table is open\">table is open</link>, there are several functions available to edit the data."
-msgstr ""
+msgstr "Ако има <link href=\"text/shared/01/05340400.xhp\" name=\"отворена таблица\">отворена таблица</link>, ще са достъпни няколко функции за редактиране на данните."
#. Rqydv
#: 05000003.xhp
@@ -3109,7 +3109,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Enter / change password"
-msgstr ""
+msgstr "Въвеждане/промяна на парола"
#. QgwAM
#: 05000003.xhp
@@ -3118,7 +3118,7 @@ msgctxt ""
"hd_id3163829\n"
"help.text"
msgid "Enter / change password"
-msgstr ""
+msgstr "Въвеждане/промяна на парола"
#. BLUEn
#: 05000003.xhp
@@ -3127,7 +3127,7 @@ msgctxt ""
"par_id3148520\n"
"help.text"
msgid "Allows you to enter and confirm a new or changed password. If you have defined a new user, enter the user name in this dialog."
-msgstr ""
+msgstr "Позволява ви да въведете и потвърдите нова или променена парола. Ако сте задали нов потребител, въведете името му в този диалогов прозорец."
#. Pyimk
#: 05000003.xhp
@@ -3136,7 +3136,7 @@ msgctxt ""
"hd_id3157898\n"
"help.text"
msgid "User"
-msgstr ""
+msgstr "Потребител"
#. VpT3V
#: 05000003.xhp
@@ -3145,7 +3145,7 @@ msgctxt ""
"par_id3149346\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/password/usered\">Specifies the name of the new user.</ahelp> This field is only visible if you have defined a new user."
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/password/usered\">Задава името на новия потребител.</ahelp> Това поле е видимо само ако сте създали нов потребител."
#. BEACE
#: 05000003.xhp
@@ -3154,7 +3154,7 @@ msgctxt ""
"hd_id3153681\n"
"help.text"
msgid "Old password"
-msgstr ""
+msgstr "Стара парола"
#. 6wJxw
#: 05000003.xhp
@@ -3163,7 +3163,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/password/oldpassword\">Enter the old password here.</ahelp> This field is visible when you have opened the dialog via <emph>Change password</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/password/oldpassword\">Тук въведете старата парола.</ahelp> Това поле се вижда само ако сте отворили диалоговия прозорец с командата <emph>Промяна на парола</emph>."
#. 99GH9
#: 05000003.xhp
@@ -3172,7 +3172,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "Password"
-msgstr ""
+msgstr "Парола"
#. Q3dUD
#: 05000003.xhp
@@ -3181,7 +3181,7 @@ msgctxt ""
"par_id3147243\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/password/newpassword\">Enter the new password.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/password/newpassword\">Въведете новата парола.</ahelp>"
#. FcJVt
#: 05000003.xhp
@@ -3190,7 +3190,7 @@ msgctxt ""
"hd_id3147275\n"
"help.text"
msgid "Confirm (password)"
-msgstr ""
+msgstr "Потвърждение на паролата"
#. xkB4S
#: 05000003.xhp
@@ -3199,7 +3199,7 @@ msgctxt ""
"par_id3153541\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/password/confirmpassword\">Enter the new password again.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/password/confirmpassword\">Въведете повторно новата парола.</ahelp>"
#. NYfPs
#: 05010000.xhp
@@ -3208,7 +3208,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Проектиране на таблица"
#. DKzbA
#: 05010000.xhp
@@ -3217,7 +3217,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Table Design\">Table Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05010000.xhp\" name=\"Table Design\">Проектиране на таблица</link>"
#. fQvmC
#: 05010000.xhp
@@ -3226,7 +3226,7 @@ msgctxt ""
"par_id3152363\n"
"help.text"
msgid "In the <emph>Table Design</emph> window you define new tables or edit the structure of an existing table."
-msgstr ""
+msgstr "Прозорецът <emph>Проектиране на таблица</emph> служи за дефиниране на нови таблици и редактиране структурата на съществуващите таблици."
#. 3skAk
#: 05010000.xhp
@@ -3235,7 +3235,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "The window has its own menu bar. It also contains the following new command: <link href=\"text/sdatabase/05010100.xhp\" name=\"Index Design\"><emph>Index Design</emph></link>"
-msgstr ""
+msgstr "Прозорецът има своя собствена лента с менюта. Освен това той съдържа новата команда <link href=\"text/sdatabase/05010100.xhp\" name=\"Index Design\"><emph>Проектиране на индекси</emph></link>"
#. z6hA5
#: 05010000.xhp
@@ -3244,7 +3244,7 @@ msgctxt ""
"hd_id3152551\n"
"help.text"
msgid "Table definition area"
-msgstr ""
+msgstr "Област за дефиниране на таблица"
#. xmBqj
#: 05010000.xhp
@@ -3253,7 +3253,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_BACKGROUND\">This area is where you define the table structure.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_BACKGROUND\">Това е областта, в която задавате структурата на таблицата.</ahelp>"
#. FfuwA
#: 05010000.xhp
@@ -3262,7 +3262,7 @@ msgctxt ""
"hd_id3153031\n"
"help.text"
msgid "Field Name"
-msgstr ""
+msgstr "Име на полето"
#. GiHyW
#: 05010000.xhp
@@ -3271,7 +3271,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_NAMECELL\">Specifies the name of the data field. The database engine may impose restrictions on the length of the table name, and the use of special characters and spaces within the table name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_NAMECELL\">Задава името на полето с данни. Системата за управление на базата от данни може да налага ограничения върху дължината на името и употребата на специални знаци в него.</ahelp>"
#. QNg69
#: 05010000.xhp
@@ -3280,7 +3280,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Тип на полето"
#. eK4to
#: 05010000.xhp
@@ -3289,7 +3289,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_TYPECELL\">Specifies the field type. The available field types are limited by the database engine being used.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_TYPECELL\">Указва типа на полето. Наличните възможности за тип се определят от използваната система за управление на бази от данни.</ahelp>"
#. Ehy3n
#: 05010000.xhp
@@ -3298,7 +3298,7 @@ msgctxt ""
"hd_id3156119\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Описание"
#. 96xiG
#: 05010000.xhp
@@ -3307,7 +3307,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_COMMENTCELL\">Specifies an optional description for each field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_COMMENTCELL\">Задава незадължително описание за всяко поле.</ahelp>"
#. A99ei
#: 05010000.xhp
@@ -3316,7 +3316,7 @@ msgctxt ""
"par_id3155630\n"
"help.text"
msgid "The row headers contain the following context menu commands:"
-msgstr ""
+msgstr "Контекстните менюта на заглавията на колони съдържат следните команди:"
#. rd8Zn
#: 05010000.xhp
@@ -3325,7 +3325,7 @@ msgctxt ""
"hd_id3156330\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Изрязване"
#. GVxeZ
#: 05010000.xhp
@@ -3334,7 +3334,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "Cuts the selected row to the clipboard."
-msgstr ""
+msgstr "Изрязва избрания ред към клипборда."
#. JxTSq
#: 05010000.xhp
@@ -3343,7 +3343,7 @@ msgctxt ""
"hd_id3159177\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Копиране"
#. ZAjhE
#: 05010000.xhp
@@ -3352,7 +3352,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "Copies the selected row to the clipboard."
-msgstr ""
+msgstr "Копира избрания ред към клипборда."
#. Q8awG
#: 05010000.xhp
@@ -3361,7 +3361,7 @@ msgctxt ""
"hd_id3156327\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Поставяне"
#. 5AQBL
#: 05010000.xhp
@@ -3370,7 +3370,7 @@ msgctxt ""
"par_id3152472\n"
"help.text"
msgid "Pastes the content of the clipboard."
-msgstr ""
+msgstr "Поставя съдържанието на клипборда."
#. aQCGh
#: 05010000.xhp
@@ -3379,7 +3379,7 @@ msgctxt ""
"hd_id3144511\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Изтриване"
#. fbZPb
#: 05010000.xhp
@@ -3388,7 +3388,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "<ahelp hid=\".uno:Delete\">Deletes the selected row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Delete\">Изтрива избрания ред.</ahelp>"
#. pD5B3
#: 05010000.xhp
@@ -3397,7 +3397,7 @@ msgctxt ""
"hd_id3147303\n"
"help.text"
msgid "Insert Rows"
-msgstr ""
+msgstr "Вмъкване на редове"
#. kfUXp
#: 05010000.xhp
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "<ahelp hid=\"SID_TABLEDESIGN_INSERTROWS\">Inserts an empty row above the current row, if the table has not been saved. Inserts an empty row at the end of the table if the table has already been saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SID_TABLEDESIGN_INSERTROWS\">Ако таблицата не е била записана, вмъква празен ред над текущия ред. Ако таблицата вече е била записана, вмъква празен ред в края на таблицата.</ahelp>"
#. XMDuJ
#: 05010000.xhp
@@ -3415,7 +3415,7 @@ msgctxt ""
"hd_id3153524\n"
"help.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Първичен ключ"
#. mmwbs
#: 05010000.xhp
@@ -3424,7 +3424,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<ahelp hid=\"SID_TABLEDESIGN_TABED_PRIMARYKEY\">If this command has a check mark, the data field is defined as a primary key.</ahelp> By clicking the command you activate/deactivate the primary key definition of the field. The command is only visible if the data source supports primary keys."
-msgstr ""
+msgstr "<ahelp hid=\"SID_TABLEDESIGN_TABED_PRIMARYKEY\">Ако тази команда е отметната, полето с данни в този ред е първичен ключ.</ahelp> Можете да включвате и изключвате това състояние, като щракнете върху командата. Тя се вижда само ако източникът на данни поддържа първични ключове."
#. kDbYY
#: 05010000.xhp
@@ -3433,7 +3433,7 @@ msgctxt ""
"hd_id3153104\n"
"help.text"
msgid "Field properties"
-msgstr ""
+msgstr "Свойства на поле"
#. BZPWE
#: 05010000.xhp
@@ -3442,7 +3442,7 @@ msgctxt ""
"par_id3148922\n"
"help.text"
msgid "Defines the field properties of the currently selected field."
-msgstr ""
+msgstr "Задава свойствата на текущото избрано поле."
#. bRsW9
#: 05010000.xhp
@@ -3451,7 +3451,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "Length"
-msgstr ""
+msgstr "Дължина"
#. D58RK
#: 05010000.xhp
@@ -3460,7 +3460,7 @@ msgctxt ""
"par_id3144761\n"
"help.text"
msgid "Specifies the maximum number of characters allowed for data entry of the corresponding data field including any spaces or special characters."
-msgstr ""
+msgstr "Указва максималния допустим брой знаци за въвеждане на данни в съответното поле, включително интервали и специални знаци."
#. fJknL
#: 05010000.xhp
@@ -3469,7 +3469,7 @@ msgctxt ""
"hd_id3154948\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Дробни позиции"
#. FgVqm
#: 05010000.xhp
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_id3149203\n"
"help.text"
msgid "Specifies the number of decimal places for a numerical field or decimal field."
-msgstr ""
+msgstr "Задава броя на дробните позиции за числово или десетично поле."
#. mW3AN
#: 05010000.xhp
@@ -3487,7 +3487,7 @@ msgctxt ""
"hd_id3156422\n"
"help.text"
msgid "Default value"
-msgstr ""
+msgstr "Подразбирана стойност"
#. HYW5B
#: 05010000.xhp
@@ -3496,7 +3496,7 @@ msgctxt ""
"par_id3125863\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_DEFAULT\">Specifies the value that is the default in new data records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_DEFAULT\">Задава стойността, която ще се подразбира в новосъздадени записи с данни.</ahelp>"
#. vQcGG
#: 05010000.xhp
@@ -3505,7 +3505,7 @@ msgctxt ""
"hd_id3147289\n"
"help.text"
msgid "Format example"
-msgstr ""
+msgstr "Пример за формат"
#. V3i6o
#: 05010000.xhp
@@ -3514,7 +3514,7 @@ msgctxt ""
"par_id3155131\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_FORMAT_SAMPLE\">Displays the format code to assign to the field value that you can select with the <emph>Format Field</emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_FORMAT_SAMPLE\">Онагледява кода на формат, който ще бъде присвоен на полето; можете да го изберете с бутона <emph>Форматиране на поле</emph>.</ahelp>"
#. A2jGQ
#: 05010000.xhp
@@ -3523,7 +3523,7 @@ msgctxt ""
"hd_id3154129\n"
"help.text"
msgid "Format Field"
-msgstr ""
+msgstr "Форматиране на поле"
#. 8GHDz
#: 05010000.xhp
@@ -3532,7 +3532,7 @@ msgctxt ""
"par_id3154146\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_FORMAT\">This button opens the <link href=\"text/shared/01/05340405.xhp\" name=\"Field Format\"><emph>Format Field</emph></link> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_FORMAT\">Този бутон отваря диалоговия прозорец <link href=\"text/shared/01/05340405.xhp\" name=\"Field Format\"><emph>Формат на полето</emph></link>.</ahelp>"
#. CgbCE
#: 05010000.xhp
@@ -3541,7 +3541,7 @@ msgctxt ""
"hd_id3152576\n"
"help.text"
msgid "Help area"
-msgstr ""
+msgstr "Област за помощ"
#. Gg783
#: 05010000.xhp
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "<ahelp hid=\"HID_TABLE_DESIGN_HELP_WINDOW\">Displays a help string or hint defined by the database designer for the given field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABLE_DESIGN_HELP_WINDOW\">Показва пояснителен текст за даденото поле, написан от автора на базата от данни.</ahelp>"
#. hzJ3Q
#: 05010100.xhp
@@ -3559,7 +3559,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index design"
-msgstr ""
+msgstr "Проектиране на индекс"
#. q4EEe
#: 05010100.xhp
@@ -3568,7 +3568,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sdatabase/05010100.xhp\" name=\"Index design\">Index design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05010100.xhp\" name=\"Index design\">Проектиране на индекс</link>"
#. 98zvT
#: 05010100.xhp
@@ -3577,7 +3577,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\".uno:DBIndexDesign\">The <emph>Index Design </emph>dialog allows you to define and edit the indexes for the current table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DBIndexDesign\">Диалоговият прозорец <emph>Проектиране на индекс</emph> ви позволява да дефинирате и редактирате индексите за текущата таблица.</ahelp>"
#. N85Yq
#: 05010100.xhp
@@ -3586,7 +3586,7 @@ msgctxt ""
"hd_id3149578\n"
"help.text"
msgid "Index list"
-msgstr ""
+msgstr "Списък на индексите"
#. JQ5ws
#: 05010100.xhp
@@ -3595,7 +3595,7 @@ msgctxt ""
"par_id3155342\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/INDEX_LIST\">Displays a list of available indexes. Select an index from the list to edit. The details of the selected index are displayed in the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/INDEX_LIST\">Показва списък на наличните индекси. Изберете индекс от списъка, за да го редактирате. Подробните данни за избрания индекс се показват в диалоговия прозорец.</ahelp>"
#. GNgfV
#: 05010100.xhp
@@ -3604,7 +3604,7 @@ msgctxt ""
"hd_id3149795\n"
"help.text"
msgid "New Index"
-msgstr ""
+msgstr "Нов индекс"
#. hbmc3
#: 05010100.xhp
@@ -3613,7 +3613,7 @@ msgctxt ""
"par_id3150085\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_NEW\">Creates a new index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_NEW\">Създава нов индекс.</ahelp>"
#. CraTD
#: 05010100.xhp
@@ -3622,7 +3622,7 @@ msgctxt ""
"hd_id3145317\n"
"help.text"
msgid "Delete Current Index"
-msgstr ""
+msgstr "Изтриване на текущия индекс"
#. CLtrt
#: 05010100.xhp
@@ -3631,7 +3631,7 @@ msgctxt ""
"par_id3154860\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_DROP\">Deletes the current index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_DROP\">Изтрива текущия индекс.</ahelp>"
#. qxQaG
#: 05010100.xhp
@@ -3640,7 +3640,7 @@ msgctxt ""
"hd_id3150986\n"
"help.text"
msgid "Rename Current Index"
-msgstr ""
+msgstr "Преименуване на текущия индекс"
#. Me7m2
#: 05010100.xhp
@@ -3649,7 +3649,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RENAME\">Renames the current index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RENAME\">Преименува текущия индекс.</ahelp>"
#. h5vTM
#: 05010100.xhp
@@ -3658,7 +3658,7 @@ msgctxt ""
"hd_id3153628\n"
"help.text"
msgid "Save Current Index"
-msgstr ""
+msgstr "Записване на текущия индекс"
#. GEBFr
#: 05010100.xhp
@@ -3667,7 +3667,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_SAVE\">Saves the current index in the data source.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_SAVE\">Записва текущия индекс в източника на данни.</ahelp>"
#. JxS8c
#: 05010100.xhp
@@ -3676,7 +3676,7 @@ msgctxt ""
"hd_id3154924\n"
"help.text"
msgid "Reset Current Index"
-msgstr ""
+msgstr "Възстановяване на текущия индекс"
#. AkcRe
#: 05010100.xhp
@@ -3685,7 +3685,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RESET\">Resets the current index to the setting that it had when the dialog was started.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RESET\">Възстановява настройките на текущия индекс от момента на отваряне на диалоговия прозорец.</ahelp>"
#. kpk89
#: 05010100.xhp
@@ -3694,7 +3694,7 @@ msgctxt ""
"hd_id3152812\n"
"help.text"
msgid "Index details"
-msgstr ""
+msgstr "Свойства на индекса"
#. whVGR
#: 05010100.xhp
@@ -3703,7 +3703,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "As soon as you change a detail of the current index and then select another index, the change is immediately passed on to the data source. You can only leave the dialog, or select another index, if the change has been successfully acknowledged by the data source. However, you can undo the change by clicking the <emph>Reset Current Index </emph>icon."
-msgstr ""
+msgstr "След като промените настройка на текущия индекс и изберете друг индекс, промяната незабавно се предава към източника на данни. За да напуснете диалоговия прозорец или да изберете друг индекс, промяната трябва да бъде успешно потвърдена от източника на данни. Можете обаче да отмените промените, като щракнете върху иконата <emph>Възстановяване на текущия индекс</emph>."
#. rEFpa
#: 05010100.xhp
@@ -3712,7 +3712,7 @@ msgctxt ""
"hd_id3154138\n"
"help.text"
msgid "Unique"
-msgstr ""
+msgstr "Уникален"
#. wqFaL
#: 05010100.xhp
@@ -3721,7 +3721,7 @@ msgctxt ""
"par_id3156282\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/UNIQUE\">Specifies whether the current index allows only unique values.</ahelp> Checking the <emph>Unique </emph>option prevents duplicate data from being entered in the field and ensures data integrity."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/UNIQUE\">Указва дали текущият индекс разрешава само уникални стойности.</ahelp> Ако отметнете настройката <emph>Уникален</emph>, в полето няма да могат да се въвеждат повтарящи се стойности и ще се осигурява цялост на данните."
#. SFD2p
#: 05010100.xhp
@@ -3730,7 +3730,7 @@ msgctxt ""
"hd_id3150448\n"
"help.text"
msgid "Fields"
-msgstr ""
+msgstr "Полета"
#. KGRnz
#: 05010100.xhp
@@ -3739,7 +3739,7 @@ msgctxt ""
"par_id3147085\n"
"help.text"
msgid "The<emph> Fields</emph> area displays a list of fields in the current table. You can also select multiple fields. In order to remove a field from the selection, select the empty entry at the start of the list."
-msgstr ""
+msgstr "В областта <emph>Полета</emph> се показва списък на полета от текущата таблица. Можете да изберете няколко полета. За да премахнете поле от селекцията, изберете празния елемент в началото на списъка."
#. ALC5T
#: 05010100.xhp
@@ -3748,7 +3748,7 @@ msgctxt ""
"hd_id3149765\n"
"help.text"
msgid "Index field"
-msgstr ""
+msgstr "Индексирано поле"
#. 2oDE4
#: 05010100.xhp
@@ -3757,7 +3757,7 @@ msgctxt ""
"par_id3158408\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_FIELD\">Displays a list of the fields in the current table. You can select more than one field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_FIELD\">Показва списък на полетата в текущата таблица. Можете да изберете няколко полета.</ahelp>"
#. CmQtE
#: 05010100.xhp
@@ -3766,7 +3766,7 @@ msgctxt ""
"hd_id3153192\n"
"help.text"
msgid "Sort order"
-msgstr ""
+msgstr "Ред на сортиране"
#. MXzBy
#: 05010100.xhp
@@ -3775,7 +3775,7 @@ msgctxt ""
"par_id3149561\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_SORTORDER\">Determines the sort order of the indexes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_SORTORDER\">Определя реда на сортиране на индексите.</ahelp>"
#. cEYAF
#: 05010100.xhp
@@ -3784,7 +3784,7 @@ msgctxt ""
"hd_id3155132\n"
"help.text"
msgid "Close"
-msgstr ""
+msgstr "Затваряне"
#. NuXdU
#: 05010100.xhp
@@ -3793,7 +3793,466 @@ msgctxt ""
"par_id3154190\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/close\">Closes the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/close\">Затваря диалоговия прозорец.</ahelp>"
+
+#. n4gFz
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr "Връзки"
+
+#. sQwNc
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153323\n"
+"help.text"
+msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Relations</link>"
+msgstr "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Връзки</link>"
+
+#. GxBiD
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3146957\n"
+"help.text"
+msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
+msgstr "<bookmark_value>релационни бази от данни (Base)</bookmark_value>"
+
+#. YYXkm
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3146957\n"
+"help.text"
+msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
+msgstr "Тази команда отваря прозореца <emph>Проектиране на връзки</emph>, в който можете да задавате връзки между таблиците в базата от данни."
+
+#. vMuED
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3154823\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
+msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">Тук можете да свързвате таблици на текущата база от данни чрез общи полета с данни.</ahelp> За да създавате връзки, щракайте върху иконата <emph>Нова връзка</emph> или просто плъзгайте и пускайте полета с мишката."
+
+#. zHWMJ
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3145316\n"
+"help.text"
+msgid "This function is only available if you are working with a relational database."
+msgstr "Тази функция е достъпна само ако работите с релационна база от данни."
+
+#. 5MXvo
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
+msgstr "Когато изберете <emph>Инструменти - Връзки</emph>, се отваря прозорец, в който са показани съществуващите връзки между таблици в текущата база от данни. Ако не са били зададени връзки или ако искате да свържете други таблици в базата от данни, щракнете върху иконата <emph>Добавяне на таблици</emph>. Ще се появи диалоговият прозорец <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Добавяне на таблици</link>, в който можете да изберете таблиците, за които да бъде зададена връзка."
+
+#. krxTw
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3152812\n"
+"help.text"
+msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
+msgstr "Ако е отворен прозорецът <emph>Проектиране на връзки</emph>, избраните таблици не могат да бъдат променяни, дори в режим на проектиране. Така се гарантира, че таблиците няма да се изменят по време на създаване на връзките между тях."
+
+#. zZFEP
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3150541\n"
+"help.text"
+msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
+msgstr "Избраните таблици се показват в горната част на изгледа за проектиране на връзки. Можете да затворите прозорец на таблица чрез контекстното меню или клавиша Delete."
+
+#. uJVYH
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3148922\n"
+"help.text"
+msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
+msgstr "<bookmark_value>първични ключове;вмъкване (Base)</bookmark_value><bookmark_value>ключове;първични ключове (Base)</bookmark_value><bookmark_value>външни ключове (Base)</bookmark_value>"
+
+#. ek2aE
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3148922\n"
+"help.text"
+msgid "Primary key and foreign keys"
+msgstr "Първичен ключ и външни ключове"
+
+#. ksuDX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149168\n"
+"help.text"
+msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
+msgstr "Ако искате да зададете връзка между две таблици, трябва да създадете <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">първичен ключ</link>, който еднозначно идентифицира записите на съществуваща таблица. След това можете да го използвате, за да посочвате записите на тази таблица от други таблици. Полетата от други таблици, които цитират този първичен ключ, се наричат външни ключове."
+
+#. FACvb
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3147085\n"
+"help.text"
+msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
+msgstr "Всички полета, отнасящи се до първичен ключ, се обозначават в прозореца на таблицата с малък символ – ключ."
+
+#. vro8F
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153193\n"
+"help.text"
+msgid "Define relations"
+msgstr "Задаване на връзки"
+
+#. wmwWU
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3155430\n"
+"help.text"
+msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
+msgstr "<bookmark_value>връзки между таблици; създаване и изтриване (Base)</bookmark_value>"
+
+#. pGNLA
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155430\n"
+"help.text"
+msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
+msgstr "Всички съществуващи връзки се виждат в прозореца с връзки като линии, свързващи полета от първичен ключ с полета от външен ключ. За да добавите връзка, плъзнете полето от едната таблица и го пуснете върху поле от другата. За да премахнете връзка, изберете я и натиснете клавиша Delete."
+
+#. EF2rg
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3149984\n"
+"help.text"
+msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
+msgstr "Освен това можете да щракнете върху иконата <emph>Нова връзка</emph> в горната част на областта с връзки и да зададете връзката между две таблици в диалоговия прозорец <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Връзки</emph></link>."
+
+#. yTadX
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3153093\n"
+"help.text"
+msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
+msgstr "Ако използвате $[officename] като потребителски интерфейс за релационна база от данни, създаването и изтриването на връзки не се извършва във временна памет от $[officename], а се предава директно към базата от данни."
+
+#. bnCjW
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3155856\n"
+"help.text"
+msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
+msgstr "Когато щракнете двукратно върху съединителна линия, се отваря диалоговият прозорец <emph>Връзки</emph>. В него можете да задавате някои свойства на връзките."
+
+#. zaiku
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Relations"
+msgstr "Връзки"
+
+#. BAAZE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"bm_id3150499\n"
+"help.text"
+msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
+msgstr "<bookmark_value>връзки между таблици; свойства (Base)</bookmark_value><bookmark_value>ключови полета за връзки (Base)</bookmark_value><bookmark_value>каскадно обновяване (Base)</bookmark_value>"
+
+#. tDgC3
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "Relations"
+msgstr "Връзки"
+
+#. 5fAEp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3150499\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
+msgstr "<ahelp hid=\".uno:DBAddRelation\">Позволява ви да задавате или редактирате връзка между две таблици.</ahelp>"
+
+#. yHc9N
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155136\n"
+"help.text"
+msgid "The update and delete options are only available if they are supported by the database used."
+msgstr "Настройките за обновяване и изтриване са достъпни само ако се поддържат от използваната СУБД."
+
+#. BDC5P
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3155341\n"
+"help.text"
+msgid "Tables"
+msgstr "Таблици"
+
+#. BAGsd
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153880\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">Тук са показани двете свързани таблици.</ahelp> Когато създавате нова връзка, можете да изберете по една таблица от комбинираните полета в горната част на диалоговия прозорец."
+
+#. 4UCC7
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154047\n"
+"help.text"
+msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
+msgstr "Ако сте отворили диалога <emph>Връзки</emph> за съществуваща връзка чрез двукратно щракване върху линия в прозореца „Връзки“, участващите таблици не могат да се сменят."
+
+#. VBeNf
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3153822\n"
+"help.text"
+msgid "Key fields"
+msgstr "Ключови полета"
+
+#. CnkB6
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Определя ключовите полета за връзката.</ahelp>"
+
+#. tG7Wy
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">Имената на избраните за връзката таблици са показани тук като заглавия на колони.</ahelp> Ако щракнете върху поле, можете да използвате бутоните със стрелки, за да изберете поле от таблицата. Всяка връзка между две полета е изписана на отделен ред."
+
+#. ECqps
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145609\n"
+"help.text"
+msgid "Update options"
+msgstr "Настройки за обновяване"
+
+#. TcZQE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153061\n"
+"help.text"
+msgid "Here you can select options that take effect when there are changes to a primary key field."
+msgstr "Тук можете да укажете какво да се случва, когато някоя от стойностите на първичния ключ се промени."
+
+#. SNgAC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3149046\n"
+"help.text"
+msgid "No action"
+msgstr "Без действие"
+
+#. BQgh9
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3152360\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Указва, че промените в първичния ключ не влияят върху външните ключове.</ahelp>"
+
+#. UzK5q
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3148664\n"
+"help.text"
+msgid "Updating cascade"
+msgstr "Каскадно обновяване"
+
+#. GFtru
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154073\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Когато първичният ключ се промени, се обновяват и всички съответни външни ключове (каскадно обновяване).</ahelp>"
+
+#. xydLE
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145171\n"
+"help.text"
+msgid "Set null"
+msgstr "Попълване с null"
+
+#. ksYnw
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154123\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\">Ако първичният ключ се промени, всички цитиращи го външни ключове ще бъдат поставени в състояние „IS NULL“, което означава „празно поле“.</ahelp>"
+
+#. FGxMC
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150448\n"
+"help.text"
+msgid "Set default"
+msgstr "Подразбирана стойност"
+
+#. T7dEQ
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3151041\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> Ако първичният ключ се промени, съответните външни ключове ще бъдат попълнени с подразбираната си стойност.</ahelp> Подразбираните стойности на полетата – външни ключове се задават при попълване свойствата на полетата по време на създаването на съответната таблица."
+
+#. AvWBL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Delete options"
+msgstr "Настройки за изтриване"
+
+#. ayyns
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153193\n"
+"help.text"
+msgid "Here you can select options that take effect when a primary key field is deleted."
+msgstr "Тук можете да изберете какво да се случва, когато стойност на първичния ключ бъде изтрита."
+
+#. jTCSL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3159252\n"
+"help.text"
+msgid "No action"
+msgstr "Без действие"
+
+#. PgDqt
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3145785\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Изтриването на стойност на първичния ключ не се отразява върху външните ключове.</ahelp>"
+
+#. hFmB4
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3154146\n"
+"help.text"
+msgid "Delete cascade"
+msgstr "Каскадно изтриване"
+
+#. ESpAp
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3155309\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">При изтриване на стойност на първичния ключ се изтриват и всички записи със същата стойност на външния ключ.</ahelp>"
+
+#. ZaNTh
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153140\n"
+"help.text"
+msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
+msgstr "Когато изтриете запис от таблица, чийто първичен ключ е с настройка <emph>Каскадно изтриване</emph>, всички записи от други таблици, които цитират съответната стойност чрез външен ключ, също ще бъдат изтрити. Използвайте този режим много внимателно – в него е възможно да бъде изтрита голяма част от данните в базата."
+
+#. mAu9C
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "Set null"
+msgstr "Попълване с null"
+
+#. dAtCx
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3153363\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">Ако изтриете дадена стойност на първичния ключ, на всички съответни външни ключове ще бъде приписана стойност „IS NULL“.</ahelp>"
+
+#. 474LG
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3145272\n"
+"help.text"
+msgid "Set Default"
+msgstr "Подразбирана стойност"
+
+#. ktJ6K
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3154320\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">Ако изтриете дадена стойност на първичния ключ, всички съответни стойности на външните ключове ще бъдат заменени с подразбирани стойности.</ahelp>"
#. cLmBi
#: main.xhp
diff --git a/source/bg/helpcontent2/source/text/sdraw.po b/source/bg/helpcontent2/source/text/sdraw.po
index f7ab0b5d742..0bb074b2218 100644
--- a/source/bg/helpcontent2/source/text/sdraw.po
+++ b/source/bg/helpcontent2/source/text/sdraw.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"PO-Revision-Date: 2021-03-02 12:22+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1558972026.000000\n"
#. dHbww
@@ -968,7 +968,7 @@ msgctxt ""
"hd_id3153878\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text Attributes</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Свойства на текста</link>"
#. mjNtZ
#: main_format.xhp
diff --git a/source/bg/helpcontent2/source/text/sdraw/guide.po b/source/bg/helpcontent2/source/text/sdraw/guide.po
index eaac6aa8c53..10efce7c97d 100644
--- a/source/bg/helpcontent2/source/text/sdraw/guide.po
+++ b/source/bg/helpcontent2/source/text/sdraw/guide.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:55+0100\n"
-"PO-Revision-Date: 2020-01-24 14:48+0000\n"
+"PO-Revision-Date: 2021-03-07 20:55+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsdrawguide/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsdrawguide/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547852731.000000\n"
#. cZbDh
@@ -221,7 +221,7 @@ msgctxt ""
"par_idN108A7\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Shape - Align Objects</item> and select one of the alignment options."
-msgstr ""
+msgstr "Изберете <item type=\"menuitem\">Фигура - Подравняване на обекти</item> и изберете някоя от възможностите за подравняване."
#. ygENZ
#: align_arrange.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"par_id3151390\n"
"help.text"
msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribute selection</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
-msgstr ""
+msgstr "Ако изберете три или повече обекта в Draw, можете да използвате командата <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Разпределяне на селекцията</emph></link>, за да разпределите хоризонталното и вертикалното разстояние между обектите."
#. R9tTg
#: align_arrange.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index fdabcd6967e..6425151d491 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-12-13 23:36+0000\n"
+"POT-Creation-Date: 2021-03-22 13:58+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+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-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -601,14 +601,14 @@ msgctxt ""
msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value.</variable>"
msgstr "<variable id=\"wahr\">Ако възникне грешка, функцията връща логическа или числова стойност.</variable>"
-#. oSC8p
+#. ECspB
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3154145\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>).</variable>"
-msgstr "<variable id=\"kontext\">(Тази команда е достъпна само чрез <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"контекстно меню\">контекстното меню</link>).</variable>"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>).</variable>"
+msgstr "<variable id=\"kontext\">(Тази команда е достъпна само чрез <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">контекстното меню</link>).</variable>"
#. JFGU9
#: 00000001.xhp
@@ -2122,15 +2122,6 @@ msgctxt ""
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 "Включете поддръжката за сложни писмености в <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline><menuitem> - Езикови настройки - Езици</menuitem>."
-#. AP8vJ
-#: 00000005.xhp
-msgctxt ""
-"00000005.xhp\n"
-"par_idN108F1\n"
-"help.text"
-msgid "Context Menu"
-msgstr "Контекстно меню"
-
#. hfzNy
#: 00000005.xhp
msgctxt ""
@@ -7936,6 +7927,15 @@ msgctxt ""
msgid "Image"
msgstr "Изображение"
+#. 8ceGP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id671614345792991\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Frame - Floating Frame</menuitem>"
+msgstr "Изберете <menuitem>Вмъкване - Рамка - Плаваща рамка</menuitem>."
+
#. yAVgx
#: 00000404.xhp
msgctxt ""
@@ -7954,14 +7954,14 @@ msgctxt ""
msgid "On the <emph>Insert</emph> bar, click"
msgstr "В лентата <emph>Вмъкване</emph> щракнете върху"
-#. 5CBGw
+#. SEYKo
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3168607\n"
"help.text"
-msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Икона</alt></image>"
+msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147482\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147482\">Икона</alt></image>"
#. 6RNey
#: 00000404.xhp
@@ -8125,14 +8125,14 @@ msgctxt ""
msgid "Stars"
msgstr "Звезди"
-#. c6VE3
+#. GCpBe
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id81526422144005\n"
"help.text"
-msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr "Изберете <emph>Вмъкване - Ред за подпис...</emph>"
+msgid "Choose <emph>Insert - Signature Line</emph>"
+msgstr "Изберете <emph>Вмъкване - Ред за подпис</emph>"
#. aFWLc
#: 00000406.xhp
@@ -8285,7 +8285,7 @@ msgctxt ""
"par_id3151338\n"
"help.text"
msgid "Choose <menuitem>Tools - Thesaurus</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Синонимен речник</menuitem>."
#. F6EnA
#: 00000406.xhp
@@ -8330,7 +8330,7 @@ msgctxt ""
"par_id3151386\n"
"help.text"
msgid "<variable id=\"selectmakro\">Choose <emph>Tools - Macros - Run Macro</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"selectmakro\">Изберете <emph>Инструменти - Макроси - Стартиране на макрос</emph>.</variable>"
#. oTQwa
#: 00000406.xhp
@@ -8501,7 +8501,7 @@ msgctxt ""
"par_id3157895\n"
"help.text"
msgid "<variable id=\"autokorr\">Choose <menuitem>Tools - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>AutoCorrect - </menuitem></caseinline></switchinline><menuitem>AutoCorrect Options</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokorr\">Изберете <menuitem>Инструменти - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Автокорекция - </menuitem></caseinline></switchinline><menuitem>Настройки на автокорекция</menuitem>.</variable>"
#. 7SCCc
#: 00000406.xhp
@@ -8510,7 +8510,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "<variable id=\"autokooptionen\">Choose <menuitem>Tools - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>AutoCorrect - </menuitem></caseinline></switchinline><menuitem>AutoCorrect Options - Options</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokooptionen\">Изберете раздела <menuitem>Инструменти - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Автокорекция - </menuitem></caseinline></switchinline><menuitem>Настройки на автокорекция - Настройки</menuitem>.</variable>"
#. DMdB6
#: 00000406.xhp
@@ -8528,7 +8528,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "<variable id=\"autokoersetzung\">Choose <menuitem>Tools - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>AutoCorrect - </menuitem></caseinline></switchinline><menuitem>AutoCorrect Options - Replace</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoersetzung\">Изберете раздела <menuitem>Инструменти - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Автокорекция - </menuitem></caseinline></switchinline><menuitem>Настройки на автокорекция - Замяна</menuitem>.</variable>"
#. DeRsp
#: 00000406.xhp
@@ -8537,7 +8537,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"autokoausnahmen\">Choose <menuitem>Tools - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>AutoCorrect - </menuitem></caseinline></switchinline><menuitem>AutoCorrect Options - Exceptions</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoausnahmen\">Изберете раздела <menuitem>Инструменти - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Автокорекция - </menuitem></caseinline></switchinline><menuitem>Настройки на автокорекция - Изключения</menuitem>.</variable>"
#. 7RY8J
#: 00000406.xhp
@@ -8546,7 +8546,7 @@ msgctxt ""
"par_id3153094\n"
"help.text"
msgid "<variable id=\"autokotyafz\">Choose <menuitem>Tools - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>AutoCorrect - </menuitem></caseinline></switchinline><menuitem>AutoCorrect Options - Localized Options</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokotyafz\">Изберете раздела <menuitem>Инструменти - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Автокорекция - </menuitem></caseinline></switchinline><menuitem>Настройки на автокорекция - Локализирани настройки</menuitem>.</variable>"
#. x8Cg3
#: 00000406.xhp
@@ -8672,7 +8672,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - Path</emph>. (autotext only)"
-msgstr ""
+msgstr "Изберете <emph>Инструменти - Автотекст - Път</emph>. (само за автотекст)"
#. uSkyB
#: 00000406.xhp
@@ -10654,6 +10654,15 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering</emph>."
msgstr "Изберете <emph>Форматиране - Водачи и номерация</emph>."
+#. GmdFv
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id761616160771224\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Bullets and Numbering</menuitem>."
+msgstr "Щракнете с десния бутон върху абзац, изберете <menuitem>Списък - Водачи и номерация</menuitem>."
+
#. N8NwQ
#: 00040500.xhp
msgctxt ""
@@ -10663,23 +10672,23 @@ msgctxt ""
msgid "On <emph>Formatting</emph> bar, click"
msgstr "В лентата <emph>Форматиране</emph> щракнете върху"
-#. 4QWK9
+#. sQFWD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149445\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Icon bullet list</alt></image>"
-msgstr "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Икона „Списък с водачи“</alt></image>"
+msgid "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Bullets and Numbering dialog Icon</alt></image>"
+msgstr "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Икона за диалога „Водачи и номерация“</alt></image>"
-#. yavcV
+#. BPPZD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3157970\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Водачи - вкл./изкл."
+msgid "Bullets and Numbering"
+msgstr "Водачи и номерация"
#. XAbBj
#: 00040500.xhp
@@ -10735,41 +10744,41 @@ msgctxt ""
msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
msgstr "Отворете <emph>Стилове - Стилове за списъци</emph> - контекстно меню на елемент - изберете <emph>Нов/Промяна</emph>."
-#. ZD5up
+#. n79tw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
-msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (F11) - отворете контекстното меню на стил в презентация (с изключение на „Фон“) - изберете раздела <menuitem>Промяна/Нов - Номерация</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - контекстно меню на стил за презентации (с изключение на „Фон“) - изберете раздела <menuitem>Промяна/Нов - Номерация</menuitem>."
-#. 3g7gB
+#. tbLJG
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150862\n"
"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering - Numbering</menuitem> tab."
-msgstr "Изберете раздела <menuitem>Форматиране - Водачи и номерация - Номерация</menuitem>."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Ordered</menuitem> tab."
+msgstr "Изберете раздела <menuitem>Форматиране - Водачи и номерация - Подреден</menuitem>."
-#. iTevh
+#. Rak4H
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3129011\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
-msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (F11) - отворете контекстното меню на стил за списъци - изберете раздела <menuitem>Промяна/Нов - Стил за номерация</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - контекстно меню на стил за списъци - изберете раздела <menuitem>Промяна/Нов - Подреден</menuitem>."
-#. dAnx5
+#. 2XAFx
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146019\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose - context menu of a List Style - choose <menuitem>New/Modify - Numbering Style</menuitem> tab."
-msgstr "Изберете <menuitem>Стилове - Управление на стиловете</menuitem> - отворете контекстното меню на стил за списъци - изберете раздела <menuitem>Нов/Промяна - Стил за номерация</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
+msgstr "Изберете <menuitem>Стилове - Управление на стиловете</menuitem> - контекстно меню на стил за списъци - изберете раздела <menuitem>Нов/Промяна - Подреден</menuitem>."
#. 4AKhs
#: 00040500.xhp
@@ -10780,50 +10789,41 @@ msgctxt ""
msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Image</emph> tab.</variable>"
msgstr "<variable id=\"graphics\">Изберете раздела <emph>Форматиране - Водачи и номерация - Изображение</emph>.</variable>"
-#. G4FjC
+#. CwE3e
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155848\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab."
-msgstr "Изберете раздела <emph>Форматиране - Водачи и номерация - План</emph>."
+msgid "Choose <menuitem>Format - Bullets and Numbering - Outline</menuitem> tab."
+msgstr "Изберете раздела <menuitem>Форматиране - Водачи и номерация - План</menuitem>."
-#. ifngA
+#. 8cr6F
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148733\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Отворете <emph>Стилове - Стилове за списъци</emph> - контекстно меню на елемент - изберете <emph>Нов/Промяна</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Изберете <menuitem>Стилове - Управление на стиловете</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - контекстно меню на стил за списъци - изберете раздела <emph>Нов/Промяна</emph>.</caseinline></switchinline>"
-#. BQqBM
+#. gfMdA
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3154931\n"
+"par_id3156658\n"
"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
-msgstr "Отворете <emph>Стилове - Стилове за списъци</emph> - контекстно меню на елемент - изберете <emph>Нов/Промяна</emph>."
+msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
+msgstr "Изберете <menuitem>Форматиране - Водачи и номерация</menuitem> - раздел <emph>Позиция</emph>."
-#. TDV7t
+#. DVZRw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
-msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (F11) - изберете „Стилове за списъци“ - контекстно меню на елемент - изберете <menuitem>Нов/Промяна</menuitem> - раздел <emph>Позиция</emph>."
-
-#. gfMdA
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3156658\n"
-"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
-msgstr "Изберете <menuitem>Форматиране - Водачи и номерация</menuitem> - раздел <emph>Позиция</emph>."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - изберете „Стилове за списъци“ - контекстно меню на елемент - изберете <menuitem>Нов/Промяна</menuitem> - раздел <emph>Позиция</emph>."
#. t8uTF
#: 00040500.xhp
@@ -12535,14 +12535,14 @@ msgctxt ""
msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (drawing documents)."
msgstr "Изберете раздела <menuitem>Форматиране - Област - Прозрачност</menuitem> (документи - рисунки)."
-#. ABvKj
+#. 3GEwT
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145365\n"
"help.text"
-msgid "Choose <menuitem>Format - Area - Transparency</menuitem> tab (presentation documents)."
-msgstr "Изберете раздела <menuitem>Форматиране - Област - Прозрачност</menuitem> (документи - презентации)."
+msgid "Choose <menuitem>Format - Object and Shape - Area - Transparency</menuitem> tab (presentation documents)."
+msgstr "Изберете раздела <menuitem>Форматиране - Обект и фигура - Област - Прозрачност</menuitem> (документи - презентации)."
#. KXq32
#: 00040502.xhp
@@ -13093,50 +13093,50 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Style - Subscript</menuitem>."
msgstr "Отворете контекстното меню - изберете <menuitem>Начертание - Долен индекс</menuitem>."
-#. ATNzQ
+#. GCxvv
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155377\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing</menuitem>."
-msgstr "Отворете контекстното меню - изберете <menuitem>Редова разредка</menuitem>."
+msgid "Choose <menuitem>Format - Spacing</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Разредка</menuitem>."
-#. zWwjF
+#. AJWAM
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154475\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Single</menuitem>."
-msgstr "Отворете контекстното меню - изберете <menuitem>Редова разредка - Единична</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Разредка - Редова разредка: 1</menuitem>."
-#. GdBSL
+#. TKPgq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150478\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - 1.5 Lines</menuitem>."
-msgstr "Отворете контекстното меню - изберете <menuitem>Редова разредка - 1,5 реда</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1.5</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Разредка - Редова разредка: 1,5</menuitem>."
-#. pNDFU
+#. nxrCX
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147167\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Line Spacing - Double</menuitem>."
-msgstr "Отворете контекстното меню - изберете <menuitem>Редова разредка - Двойна</menuitem>."
+msgid "Choose <menuitem>Format - Spacing - Line Spacing: 2</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Разредка - Редова разредка: 2</menuitem>."
-#. 4TwEA
+#. eLguF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146978\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Left</menuitem> (drawing functions)."
-msgstr "Изберете <menuitem>Форматиране - Подравняване - Отляво</menuitem> (функции за рисуване)."
+msgid "Choose <menuitem>Format - Align Text - Left</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Подравняване на текст - Отляво</menuitem>."
#. reirq
#: 00040502.xhp
@@ -13165,14 +13165,14 @@ msgctxt ""
msgid "Align Left"
msgstr "Подравняване отляво"
-#. 4wBza
+#. mmjN6
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155823\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Right</menuitem> (drawing functions)."
-msgstr "Изберете <menuitem>Форматиране - Подравняване - Отдясно</menuitem> (функции за рисуване)."
+msgid "Choose <menuitem>Format - Align Text - Right</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Подравняване на текст - Отдясно</menuitem>."
#. 2MorN
#: 00040502.xhp
@@ -13201,14 +13201,14 @@ msgctxt ""
msgid "Align Right"
msgstr "Подравняване отдясно"
-#. ZvaaQ
+#. QVuAL
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149189\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Centered</menuitem> (drawing functions)."
-msgstr "Изберете <menuitem>Форматиране - Подравняване - Центрирано</menuitem> (функции за рисуване)."
+msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Подравняване на текст - Центрирано</menuitem>."
#. YutM3
#: 00040502.xhp
@@ -13237,14 +13237,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Хоризонтално центриране</caseinline><defaultinline>Центрирано</defaultinline></switchinline>"
-#. FiPMC
+#. BAFc3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146151\n"
"help.text"
-msgid "Choose <menuitem>Format - Align - Justified</menuitem> (drawing functions)."
-msgstr "Изберете <menuitem>Форматиране - Подравняване - Двустранно</menuitem> (функции за рисуване)."
+msgid "Choose <menuitem>Format - Align Text - Justified</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Подравняване на текст - Двустранно</menuitem>."
#. Mj8VD
#: 00040502.xhp
@@ -13300,32 +13300,32 @@ msgctxt ""
msgid "Open context menu - choose <menuitem>Group</menuitem>."
msgstr "Отворете контекстното меню - изберете <menuitem>Групиране</menuitem>."
-#. 3AJkC
+#. 93FXg
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157985\n"
+"par_id3157980\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Group</menuitem> (text documents, spreadsheets)."
-msgstr "Изберете <menuitem>Форматиране - Групиране - Групиране</menuitem> (текстови документи, електронни таблици)."
+msgid "Choose <menuitem>Shape - Group - Group</menuitem>"
+msgstr "Изберете <menuitem>Фигура - Групиране - Групиране</menuitem>."
-#. bdCDb
+#. dXNCq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3157980\n"
+"par_id3157985\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Group</menuitem> (drawing documents)."
-msgstr "Изберете <menuitem>Фигура - Групиране - Групиране</menuitem> (документи – рисунки)."
+msgid "Choose <menuitem>Format - Group - Group</menuitem>"
+msgstr "Изберете <menuitem>Форматиране - Групиране - Групиране</menuitem>."
-#. RvPBU
+#. w3EVK
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149508\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Group - Group</menuitem> (form objects)."
-msgstr "Отворете контекстното меню - изберете <menuitem>Групиране - Групиране</menuitem> (обекти във формуляр)."
+msgid "Open context menu - choose <menuitem>Group</menuitem> (for text box and shapes)."
+msgstr "Отворете контекстното меню - изберете <menuitem>Групиране</menuitem> (за текстови полета и фигури)."
#. ibZAV
#: 00040502.xhp
@@ -13345,23 +13345,23 @@ msgctxt ""
msgid "Group"
msgstr "Групиране"
-#. GuQA3
+#. fQM7Y
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153023\n"
+"par_id3163378\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Ungroup</menuitem> (text documents, spreadsheets)."
-msgstr "Изберете <menuitem>Формат - Групиране - Разгрупиране</menuitem> (текстови документи, електронни таблици)."
+msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem>."
+msgstr "Изберете <menuitem>Фигура - Групиране - Разгрупиране</menuitem>."
-#. WFDj3
+#. K7UZY
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3163378\n"
+"par_id3153023\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem> (drawing documents)."
-msgstr "Изберете <menuitem>Фигура - Групиране - Разгрупиране</menuitem> (документи – рисунки)."
+msgid "Choose <menuitem>Format - Group - Ungroup</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Групиране - Разгрупиране</menuitem>."
#. 9k3ef
#: 00040502.xhp
@@ -13390,23 +13390,23 @@ msgctxt ""
msgid "Ungroup"
msgstr "Разгрупиране"
-#. cdsaS
+#. kPkDt
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153109\n"
+"par_id3145678\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Exit Group</menuitem> (text documents, spreadsheets)."
-msgstr "Изберете <menuitem>Форматиране - Групиране - Излизане от група</menuitem> (текстови документи, електронни таблици)."
+msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem>."
+msgstr "Изберете <menuitem>Фигура - Групиране - Излизане от група</menuitem>."
-#. P2Xae
+#. fZQDA
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145678\n"
+"par_id3153109\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem> (drawing documents)."
-msgstr "Изберете <menuitem>Фигура - Групиране - Излизане от група</menuitem> (документи – рисунки)."
+msgid "Choose <menuitem>Format - Group - Exit Group</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Групиране - Излизане от група</menuitem>."
#. Bszjv
#: 00040502.xhp
@@ -13435,23 +13435,23 @@ msgctxt ""
msgid "Exit Group"
msgstr "Изход от група"
-#. Cx3Zj
+#. iWdD3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3149129\n"
+"par_id3145354\n"
"help.text"
-msgid "Choose <menuitem>Format - Group - Enter Group</menuitem> (text documents, spreadsheets)."
-msgstr "Изберете <menuitem>Форматиране - Групиране - Влизане в група</menuitem> (текстови документи, електронни таблици)."
+msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem>."
+msgstr "Изберете <menuitem>Фигура - Групиране - Влизане в група</menuitem>."
-#. hn7Hv
+#. vuF7P
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3145354\n"
+"par_id3149129\n"
"help.text"
-msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem> (drawing documents)."
-msgstr "Изберете <menuitem>Фигура - Групиране - Влизане в група</menuitem> (документи – рисунки)."
+msgid "Choose <menuitem>Format - Group - Enter Group</menuitem>."
+msgstr "Изберете <menuitem>Форматиране - Групиране - Влизане в група</menuitem>."
#. 4rTmw
#: 00040502.xhp
@@ -13550,7 +13550,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu and choose <emph>Modify/New - Numbers</emph> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - отворете контекстното меню и изберете раздела <emph>Нов/Промяна - Числа</emph>."
#. hadQp
#: 00040503.xhp
@@ -14630,7 +14630,7 @@ msgctxt ""
"par_id781602175775847\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> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F</keycode>"
-msgstr "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Икона за търсене</alt></image> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F</keycode>"
+msgstr "<image id=\"img_id314249\" src=\"cmd/sc_recsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id314249\">Икона за търсене</alt></image> или <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F</keycode>"
#. CNnsD
#: edit_menu.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 7bea0089bdb..204f2c86ecd 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: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bg/>\n"
@@ -3068,14 +3068,14 @@ msgctxt ""
msgid "<bookmark_value>Export as; PDF</bookmark_value><bookmark_value>Export as; EPUB</bookmark_value>"
msgstr "<bookmark_value>Експортиране като; PDF</bookmark_value><bookmark_value>Експортиране като; EPUB</bookmark_value>"
-#. NDQi2
+#. C5uBC
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"hd_id751513634008094\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
-msgstr "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Експортиране като...</link>"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Export As</link>"
+msgstr ""
#. yQFCE
#: 01070002.xhp
@@ -3086,14 +3086,14 @@ msgctxt ""
msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats.</ahelp></variable>"
msgstr "<variable id=\"exportas1\"><ahelp hid=\".\">Експортира документа във формат PDF или EPUB.</ahelp></variable>"
-#. 84MXi
+#. MhcED
#: 01070002.xhp
msgctxt ""
"01070002.xhp\n"
"par_id971513634212601\n"
"help.text"
-msgid "Choose <emph>File - Export As...</emph> ."
-msgstr "Изберете <emph>Файл - Експортиране като...</emph>."
+msgid "Choose <emph>File - Export As</emph>."
+msgstr ""
#. 5EMoa
#: 01070002.xhp
@@ -5624,14 +5624,14 @@ msgctxt ""
msgid "separated by"
msgstr "разделяне по"
-#. qctV8
+#. MVCUS
#: 01160300.xhp
msgctxt ""
"01160300.xhp\n"
"par_id3156426\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
-msgstr "<ahelp hid=\".\">Изберете абзацния стил или нивото от плана, чрез което желаете да разделите документа източник на поддокументи.</ahelp> По подразбиране се създава нов документ за всяка глава от ниво 1."
+msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgstr ""
#. 949cB
#: 01160300.xhp
@@ -14129,6 +14129,24 @@ msgctxt ""
msgid "When you click a character in the <emph>Special Characters</emph> dialog, a preview and the corresponding numerical code for the character is displayed."
msgstr "Когато щракнете върху знак в диалоговия прозорец <emph>Специални знаци</emph>, се показва мостра и съответен числов код за знака."
+#. AQsdj
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"hd_id451614794558893\n"
+"help.text"
+msgid "Search"
+msgstr ""
+
+#. JGCeA
+#: 04100000.xhp
+msgctxt ""
+"04100000.xhp\n"
+"par_id741614794572948\n"
+"help.text"
+msgid "Enter the UTF-8 name or part of the name of the character to display the UTF-8 character in the top left square of the grid. The name of the character cannot be translated. For example, enter <literal>tilde</literal> to display <literal>~</literal> and enter <literal>latin capital letter O with circumflex</literal> to display <literal>Ô</literal>."
+msgstr ""
+
#. d8FbY
#: 04100000.xhp
msgctxt ""
@@ -15425,33 +15443,6 @@ msgctxt ""
msgid "<emph>Small capitals</emph> - <variable id=\"smallcapitals\">Changes the selected lowercase characters to uppercase characters, and then reduces their size.</variable>"
msgstr "<emph>Малки главни букви</emph> – <variable id=\"smallcapitals\">превръща избраните малки букви в главни и ги смалява.</variable>"
-#. kGuxJ
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"bm_id410168\n"
-"help.text"
-msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
-msgstr "<bookmark_value>мигащи знаци</bookmark_value><bookmark_value>знаци;мигащи</bookmark_value>"
-
-#. Suvvn
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3152941\n"
-"help.text"
-msgid "Blinking"
-msgstr "Мигане"
-
-#. 2FiCB
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"par_id3145662\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Кара избраните знаци да мигат. Не можете да променяте честотата на мигане.</ahelp>"
-
#. B3MEb
#: 05020200.xhp
msgctxt ""
@@ -23858,14 +23849,14 @@ msgctxt ""
msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles deck of the Sidebar</link></caseinline><defaultinline>Styles deck of the Sidebar</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
msgstr "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Отваря <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">раздела „Стилове“ в страничната лента</link></caseinline><defaultinline>раздела „Стилове“ в страничната лента</defaultinline></switchinline>, в който можете да изберете знаков стил за транслитерирания текст.</ahelp>"
-#. aXpX4
+#. MD7GR
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"tit\n"
"help.text"
-msgid "Aligning (Objects)"
-msgstr "Подравняване (обекти)"
+msgid "Align Objects"
+msgstr ""
#. kVyf4
#: 05070000.xhp
@@ -23876,14 +23867,14 @@ msgctxt ""
msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
msgstr "<bookmark_value>подравняване; обекти</bookmark_value><bookmark_value>позициониране; обекти</bookmark_value><bookmark_value>подреждане; обекти</bookmark_value>"
-#. a4NeC
+#. xAmKa
#: 05070000.xhp
msgctxt ""
"05070000.xhp\n"
"hd_id3149987\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
-msgstr "<link href=\"text/shared/01/05070000.xhp\" name=\"Подравняване (обекти)\">Подравняване (обекти)</link>"
+msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Align Objects</link>"
+msgstr ""
#. dFAkA
#: 05070000.xhp
@@ -28043,14 +28034,14 @@ msgctxt ""
msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
msgstr "<bookmark_value>текст; текстови/чертожни обекти</bookmark_value><bookmark_value>чертожни обекти; текст в</bookmark_value><bookmark_value>рамки; побиране на текст в</bookmark_value>"
-#. awqBc
+#. UEuLi
#: 05220000.xhp
msgctxt ""
"05220000.xhp\n"
"hd_id3146856\n"
"help.text"
-msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text Attributes</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
+msgstr "<link href=\"text/shared/01/05220000.xhp\" name=\"Текст\">Текст</link>"
#. cBEMC
#: 05220000.xhp
@@ -34604,14 +34595,14 @@ msgctxt ""
msgid "Text Attributes"
msgstr ""
-#. UEXgE
+#. dZtp3
#: 05990000.xhp
msgctxt ""
"05990000.xhp\n"
"hd_id3155757\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Текст\">Текст</link>"
+msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text Attributes</link>"
+msgstr ""
#. B2wiN
#: 05990000.xhp
@@ -37898,14 +37889,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Водачи и номерация\">Водачи и номерация</link>"
-#. sdTwy
+#. S7psX
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
"par_id3150146\n"
"help.text"
-msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
-msgstr "<variable id=\"numauftext\"><ahelp hid=\".\">Добавя номерация или водачи в текущия абзац и ви позволява да редактирате форматирането на номерацията или водачите.</ahelp></variable>"
+msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph or to selected paragraphs, and lets you edit format of the numbering or bullets.</ahelp></variable>"
+msgstr ""
#. 7wAZT
#: 06050000.xhp
@@ -37916,15 +37907,6 @@ msgctxt ""
msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
msgstr "Диалоговият прозорец <emph>Водачи и номерация</emph> съдържа следните раздели:"
-#. FXvcQ
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"hd_id911610939960192\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering\">Numbering</link>"
-msgstr ""
-
#. FUmyk
#: 06050000.xhp
msgctxt ""
@@ -38087,14 +38069,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Customize tab (Bullets and Numbering dialog)</link>"
msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Раздел „Персонализиране“ (диалогов прозорец „Водачи и номерация“)</link>"
-#. mFseS
+#. AQgFB
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"tit\n"
"help.text"
-msgid "Outline"
-msgstr "Очертан"
+msgid "Outline (Bullets and Numbering)"
+msgstr ""
#. Tuc3B
#: 06050300.xhp
@@ -38105,14 +38087,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
msgstr "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">План</link>"
-#. faDgM
+#. 2DJLS
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3146936\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
-msgstr "<ahelp hid=\".\">Показва различните стилове, които можете да прилагате върху йерархични списъци. $[officename] поддържа до девет нива в йерархия на списък.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different formats that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
+msgstr ""
#. RDBrG
#: 06050300.xhp
@@ -38123,14 +38105,14 @@ msgctxt ""
msgid "Selection"
msgstr "Избор"
-#. tG9L7
+#. PPdZD
#: 06050300.xhp
msgctxt ""
"06050300.xhp\n"
"par_id3155934\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline style that you want to use.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Щракнете върху желания стил за подточки.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline format that you want to use.</ahelp>"
+msgstr ""
#. WYun7
#: 06050300.xhp
@@ -38168,14 +38150,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Image</link>"
msgstr "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Изображение</link>"
-#. g8rob
+#. YBPGk
#: 06050400.xhp
msgctxt ""
"06050400.xhp\n"
"par_id0611200904373226\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
-msgstr "<ahelp hid=\".\">Показва различните графики, които можете да прилагате.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in an unordered list.</ahelp>"
+msgstr ""
#. yDHf2
#: 06050400.xhp
@@ -38258,14 +38240,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Customize</link>"
msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Персонализиране</link>"
-#. KTDdy
+#. ptL6S
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147212\n"
"help.text"
-msgid "Sets the formatting options for numbered or bulleted lists. If you want, you can apply formatting to individual levels in the list hierarchy."
-msgstr "Задава настройките за форматиране на списъци с номера или водачи. Ако желаете, можете да прилагате формати върху отделни нива от йерархията на списъка."
+msgid "Sets the formatting options for ordered or unordered lists. If you want, you can apply formatting to individual levels in the list hierarchy."
+msgstr ""
#. pGwyV
#: 06050500.xhp
@@ -38312,14 +38294,14 @@ msgctxt ""
msgid "Number"
msgstr ""
-#. vcASB
+#. 2JWDd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3147261\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering style for the selected levels.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Изберете стил за номериране на избраните нива.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering scheme for the selected levels.</ahelp>"
+msgstr ""
#. mmh24
#: 06050500.xhp
@@ -38510,13 +38492,13 @@ msgctxt ""
msgid "Bullet"
msgstr "Водещ знак"
-#. RqUuK
+#. ZiJYu
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145085\n"
"help.text"
-msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet style."
+msgid "Adds a bullet to the beginning of a line. Select this option, and then use the <emph>Character style</emph> drop-down menu to choose a bullet type."
msgstr ""
#. JBJEa
@@ -38573,22 +38555,22 @@ msgctxt ""
msgid "None"
msgstr "Няма"
-#. ty7BH
+#. kcSkw
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3149167\n"
"help.text"
-msgid "Does not apply a numbering style."
-msgstr "Не прилага стил за номериране."
+msgid "Does not apply a numbering scheme."
+msgstr ""
-#. P7jbZ
+#. sANUk
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3145746\n"
"help.text"
-msgid "The availability of the following fields depends on the style that you select in the <emph>Number</emph> box."
+msgid "The availability of the following fields depends on the numbering scheme that you select in the <emph>Number</emph> box."
msgstr ""
#. iqVUE
@@ -38618,14 +38600,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Character Style</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Знаков стил</caseinline></switchinline>"
-#. zkHUZ
+#. DXsYK
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Изберете знаковия стил, който желаете да използвате в номерирания списък.</ahelp> За да създадете или редактирате <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">знаков стил</link>, отворете прозореца <emph>Стилове</emph>, щракнете върху иконата „Знакови стилове“, щракнете с десния бутон върху стил и изберете <emph>Нов</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in an ordered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>.</caseinline></switchinline>"
+msgstr ""
#. AXZAF
#: 06050500.xhp
@@ -38636,14 +38618,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Show sublevels</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Видими поднива</caseinline></switchinline>"
-#. tCS4j
+#. 3zFAs
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3152881\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">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\".</ahelp></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Въведете броя на предишните нива, които да бъдат включени в стила за номериране. Например, ако въведете „2“ и в предишното ниво е използван стилът за номериране „A, B, C...“, схемата за номериране на текущото ниво ще стане: „A.1“.</ahelp></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Enter the number of previous levels to include in the outline format. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering scheme, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
+msgstr ""
#. 85gXU
#: 06050500.xhp
@@ -38672,14 +38654,14 @@ msgctxt ""
msgid "After"
msgstr "След"
-#. 9rGAH
+#. UM7wq
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3150288\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">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.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Въведете знак или текст, който да се показва след номера в списъка. Ако желаете да създадете списък с номера от вида „1.)“, въведете „.)“ в това поле.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Enter a character or the text to display behind the number in the list. If you want to create a ordered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
+msgstr ""
#. FWEse
#: 06050500.xhp
@@ -38690,14 +38672,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Color</caseinline><caseinline select=\"DRAW\">Color</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Цвят</caseinline><caseinline select=\"DRAW\">Цвят</caseinline></switchinline>"
-#. cV8eZ
+#. DDWVd
#: 06050500.xhp
msgctxt ""
"06050500.xhp\n"
"par_id3156060\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Изберете цвят за текущия стил на номериране.</ahelp></defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering scheme.</ahelp></defaultinline></switchinline>"
+msgstr ""
#. JQB8P
#: 06050500.xhp
@@ -38852,32 +38834,32 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">Увеличава номерата с едно при преминаване към по-долно ниво в йерархията.</ahelp></caseinline></switchinline>"
-#. CwwFP
+#. e5KXW
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"tit\n"
"help.text"
-msgid "Position (List Styles)"
-msgstr "Позиция (стилове за списъци)"
+msgid "Position (Lists)"
+msgstr ""
-#. YCPm7
+#. pbtfH
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"hd_id3150467\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
-msgstr "<link href=\"text/shared/01/06050600.xhp\" name=\"Позиция\">Позиция</link>"
+msgid "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link></variable>"
+msgstr ""
-#. 26wKr
+#. ZuAPU
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3158397\n"
"help.text"
-msgid "<variable id=\"positioninfo\">Sets the indent, spacing, and alignment options for the numbered or bulleted list.</variable>"
-msgstr "<variable id=\"positioninfo\">Задава отстъпа, разредката и подравняването за списък с номера или водачи.</variable>"
+msgid "<variable id=\"positioninfo\">Set indent, spacing, and alignment options for numbering symbols, such as numbers or bullets, to ordered and unordered lists.</variable>"
+msgstr ""
#. itRYD
#: 06050600.xhp
@@ -38888,14 +38870,14 @@ msgctxt ""
msgid "Level"
msgstr "Ниво"
-#. icEv9
+#. 2gVRo
#: 06050600.xhp
msgctxt ""
"06050600.xhp\n"
"par_id3155755\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select \"1-10\". In Chapter Numbering, only one level can be selected, or use \"1-10\" to apply the options, except Paragraph style, to all the levels."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Изберете нивото или нивата, които искате да промените.</ahelp> За да приложите настройките върху всички нива, изберете „1-10“. При номериране на глави можете да избирате само по едно ниво или да използвате „1-10“, за да приложите настройките – с изключение на абзацния стил – върху всички нива."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp> To apply the options to all the levels, select “1-10”."
+msgstr ""
#. qAm3f
#: 06050600.xhp
@@ -40796,14 +40778,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/accelconfigpage/AccelConfigPage\">Служи за приписване или редактиране на клавишни комбинации за команди на $[officename] или макроси на $[officename] Basic.</ahelp>"
-#. 4xgpA
+#. J85qe
#: 06140200.xhp
msgctxt ""
"06140200.xhp\n"
"par_id3154682\n"
"help.text"
-msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
-msgstr "Можете да приписвате или редактирате клавишни комбинации за текущото приложение или за всички приложения на $[officename]."
+msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications. To assign a key for all applications, choose the <emph>%PRODUCTNAME</emph> radio button in the top right corner."
+msgstr ""
#. BjkTi
#: 06140200.xhp
@@ -40823,6 +40805,15 @@ msgctxt ""
msgid "If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list. It is possible to assign the same function to more than one key."
msgstr "Ако избраната функция вече има клавишна комбинация, тя се показва в списъка <emph>Клавиши</emph>. Възможно е една и съща функция да се присвои на повече от един клавиш."
+#. a7WFE
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id341603939923441\n"
+"help.text"
+msgid "A shortcut key assigned to a particular application overrides the shortcut key setting made in %PRODUCTNAME for all applications."
+msgstr ""
+
#. Fi6Jn
#: 06140200.xhp
msgctxt ""
@@ -44630,14 +44621,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr "<ahelp hid=\".\">Вмъква в дума невидим интервал, който ще предизвика преминаване на нов ред, когато стане последен знак в реда. Достъпен при разрешена поддръжка за сложни писмености (CTL).</ahelp>"
-#. W4vvs
+#. jHLBC
#: formatting_mark.xhp
msgctxt ""
"formatting_mark.xhp\n"
"hd_id3245643\n"
"help.text"
-msgid "No-width no break"
-msgstr "Непрекъсваема връзка"
+msgid "Word Joiner"
+msgstr ""
#. 4Ur7Y
#: formatting_mark.xhp
@@ -47708,14 +47699,14 @@ msgctxt ""
msgid "Embedding Fonts"
msgstr "Вграждане на шрифтовете"
-#. MhNdc
+#. MMKaJ
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"bm_id3149955\n"
"help.text"
-msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
-msgstr "<bookmark_value>вграждане на шрифтове в документи</bookmark_value> <bookmark_value>документи; вграждане на шрифтове</bookmark_value> <bookmark_value>шрифтове, вграждане; в документи</bookmark_value> <bookmark_value>шрифтове; вграждане на</bookmark_value> <bookmark_value>вграждане; шрифтове</bookmark_value>"
+msgid "<bookmark_value>embedding fonts in document file</bookmark_value><bookmark_value>documents; embedding fonts</bookmark_value><bookmark_value>font embedding; in documents</bookmark_value><bookmark_value>fonts; embedding</bookmark_value><bookmark_value>fonts; licensing for embedding</bookmark_value><bookmark_value>embedding; fonts</bookmark_value><bookmark_value>embedding licensed fonts</bookmark_value>"
+msgstr ""
#. VdsXE
#: prop_font_embed.xhp
@@ -47735,14 +47726,14 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
msgstr "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Служи за вграждане шрифтовете на документа в текущия файл.</ahelp>"
-#. JFNLj
+#. UnyFx
#: prop_font_embed.xhp
msgctxt ""
"prop_font_embed.xhp\n"
"hd_id3149999\n"
"help.text"
-msgid "Fonts embedding"
-msgstr "Вграждане на шрифтове"
+msgid "Font embedding"
+msgstr ""
#. LM4Gn
#: prop_font_embed.xhp
@@ -47762,6 +47753,15 @@ msgctxt ""
msgid "Consider embedding fonts when your document use rare or custom fonts not generally available in other computers."
msgstr "Вграждането на шрифтовете е уместно, ако в документа са използвани редки или поръчкови шрифтове, които не са обичайно налични в други компютри."
+#. AcrZ8
+#: prop_font_embed.xhp
+msgctxt ""
+"prop_font_embed.xhp\n"
+"par_id191616163803305\n"
+"help.text"
+msgid "Font licenses may restrict embedding fonts in documents. Font files contain flags that indicate if and how they can be embedded within a document file. %PRODUCTNAME parses these flags and determines if and how it may be embedded in a document file, and when you open a document containing embedded fonts, it will also look at these flags to determine if and how a document can be viewed or edited."
+msgstr ""
+
#. iBvGV
#: ref_epub_export.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/02.po b/source/bg/helpcontent2/source/text/shared/02.po
index 5c0e2d357a0..0278d7550c7 100644
--- a/source/bg/helpcontent2/source/text/shared/02.po
+++ b/source/bg/helpcontent2/source/text/shared/02.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-30 15:37+0100\n"
-"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:44+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -11265,25 +11265,25 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Character Highlighting Color"
-msgstr ""
+msgstr "Цвят за осветяване на знаците"
-#. tExR8
+#. 5GRDP
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Character Highlighting Color</link>"
-msgstr ""
+msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlighting</link>"
+msgstr "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Осветяване</link>"
-#. y45WA
+#. 6EDWk
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlight color to the character style or text selection.</ahelp></variable>"
-msgstr ""
+msgid "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Applies current highlighting color to the <switchinline select=\"appl\"><caseinline select=\"WRITER\">character style or</caseinline></switchinline> text selection.</ahelp></variable>"
+msgstr "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Прилага текущия цвят за осветяване върху <switchinline select=\"appl\"><caseinline select=\"WRITER\">знаковия стил или </caseinline></switchinline>текстовата селекция.</ahelp></variable>"
#. KrAa6
#: 02160000.xhp
@@ -11303,6 +11303,15 @@ msgctxt ""
msgid "When editing a character style, choose <emph>Highlighting</emph> tab."
msgstr "Докато редактирате знаков стил, изберете раздела <emph>Осветяване</emph>."
+#. 8NF47
+#: 02160000.xhp
+msgctxt ""
+"02160000.xhp\n"
+"par_id481613812856744\n"
+"help.text"
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\">Formatting bar, Text Object bar or Character section of Properties Sidebar.</caseinline><defaultinline><emph>Text Formatting bar.</emph></defaultinline></switchinline>"
+msgstr "Щракнете върху иконата <emph>Цвят за осветяване на знаците</emph> в <switchinline select=\"appl\"><caseinline select=\"WRITER\">лентата „Форматиране“, лентата „Текстов обект“ или раздела „Знак“ на страничната лента „Свойства“.</caseinline><defaultinline><emph>лентата „Форматиране на текст“.</emph></defaultinline></switchinline>"
+
#. YETEY
#: 02160000.xhp
msgctxt ""
@@ -11310,7 +11319,7 @@ msgctxt ""
"par_id3152551\n"
"help.text"
msgid "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149177\">Character Highlighting Color Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149177\">Икона „Цвят за осветяване на знаците“</alt></image>"
#. zJCAE
#: 02160000.xhp
@@ -11319,7 +11328,7 @@ msgctxt ""
"par_id3147210\n"
"help.text"
msgid "Character Highlighting Color icon"
-msgstr ""
+msgstr "Икона „Цвят за осветяване на знаците“"
#. 4M9HV
#: 02160000.xhp
@@ -11328,7 +11337,7 @@ msgctxt ""
"par_idN10736\n"
"help.text"
msgid "To change the highlighting color, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click the color that you want."
-msgstr ""
+msgstr "За да промените цвета на осветяването, щракнете върху стрелката до иконата <emph>Цвят за осветяване на знаците</emph>, след което щракнете върху желания цвят."
#. ZBF5S
#: 02160000.xhp
@@ -11337,7 +11346,7 @@ msgctxt ""
"hd_id711610982428158\n"
"help.text"
msgid "Apply Highlighting"
-msgstr ""
+msgstr "Прилагане на осветяване"
#. UgA5i
#: 02160000.xhp
@@ -11346,7 +11355,7 @@ msgctxt ""
"hd_id111610983384915\n"
"help.text"
msgid "To a Text Selection"
-msgstr ""
+msgstr "Върху текстова селекция"
#. sDQjr
#: 02160000.xhp
@@ -11355,16 +11364,16 @@ msgctxt ""
"par_id741610983082687\n"
"help.text"
msgid "Select the text that you want to highlight."
-msgstr ""
+msgstr "Изберете текста, който искате да осветите."
-#. 94UES
+#. AQAQh
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id851610983100948\n"
"help.text"
-msgid "Click the <emph>Character Highlighting Color</emph> icon on the <emph>Formatting</emph> bar."
-msgstr ""
+msgid "Click the <emph>Character Highlighting Color</emph> icon on the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Formatting</emph> or <emph>Text Object</emph></caseinline><defaultinline><emph>Text Formatting</emph></defaultinline></switchinline> bar."
+msgstr "Щракнете върху иконата <emph>Цвят за осветяване на знаците</emph> в лентата <switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Форматиране</emph> или <emph>Текстов обект</emph></caseinline><defaultinline><emph>„Форматиране на текст“</emph></defaultinline></switchinline>."
#. bVPsm
#: 02160000.xhp
@@ -11373,7 +11382,7 @@ msgctxt ""
"par_id461611232078309\n"
"help.text"
msgid "To type after the selection without highlighting, click <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>."
-msgstr ""
+msgstr "За да въвеждате след селекцията без осветяване, натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>."
#. ftHsB
#: 02160000.xhp
@@ -11382,7 +11391,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "For Multiple Selections"
-msgstr ""
+msgstr "За няколко селекции"
#. UfC2U
#: 02160000.xhp
@@ -11391,7 +11400,7 @@ msgctxt ""
"par_id57161098864299\n"
"help.text"
msgid "Start with no text selected."
-msgstr ""
+msgstr "Започнете без избран текст."
#. SL9j6
#: 02160000.xhp
@@ -11400,7 +11409,7 @@ msgctxt ""
"par_idN1072B\n"
"help.text"
msgid "On the <emph>Formatting</emph> bar, click the <emph>Character Highlighting Color</emph> icon."
-msgstr ""
+msgstr "В лентата <emph>Форматиране</emph> щракнете върху иконата <emph>Цвят за осветяване на знаците</emph>."
#. qfcjf
#: 02160000.xhp
@@ -11409,7 +11418,7 @@ msgctxt ""
"par_id571610984733742\n"
"help.text"
msgid "The mouse cursor changes to the <emph>Apply Highlighting</emph> cursor."
-msgstr ""
+msgstr "Курсорът на мишката се превръща в курсор <emph>Прилагане на осветяване</emph>."
#. okbzE
#: 02160000.xhp
@@ -11418,7 +11427,7 @@ msgctxt ""
"par_id81610984914998\n"
"help.text"
msgid "<image src=\"vcl/res/fill.png\" id=\"img_id341610984914998\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id801610984914998\">Apply Highlighting Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"vcl/res/fill.png\" id=\"img_id341610984914998\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id801610984914998\">Икона за прилагане на осветяване</alt></image>"
#. EEgUx
#: 02160000.xhp
@@ -11427,7 +11436,7 @@ msgctxt ""
"par_id241610984914998\n"
"help.text"
msgid "Apply Highlighting cursor"
-msgstr ""
+msgstr "Курсор „Прилагане на оцветяване“"
#. EZBA3
#: 02160000.xhp
@@ -11436,7 +11445,7 @@ msgctxt ""
"par_idN1073E\n"
"help.text"
msgid "Use the <emph>Apply Highlighting</emph> cursor to select text that you want to highlight."
-msgstr ""
+msgstr "Изберете курсора <emph>Прилагане на осветяване</emph>, за да изберете текста, който искате да осветите."
#. bDpTu
#: 02160000.xhp
@@ -11445,7 +11454,7 @@ msgctxt ""
"par_idN10757\n"
"help.text"
msgid "To turn off highlighting cursor, click the <emph>Character Highlighting Color</emph> icon again, or press <keycode>Esc</keycode>."
-msgstr ""
+msgstr "За да изключите курсора за осветяване, щракнете отново върху иконата <emph>Цвят за осветяване на знаците</emph> или натиснете <keycode>Esc</keycode>."
#. CnFYE
#: 02160000.xhp
@@ -11454,7 +11463,7 @@ msgctxt ""
"par_idN10743\n"
"help.text"
msgid "To apply highlighting to a single word, double-click the word; for a sentence use triple-click, and quadruple-click for a paragraph."
-msgstr ""
+msgstr "За да приложите осветяване върху отделна дума, щракнете двукратно върху нея; за изречение използвайте трикратно щракване, а за абзац – четирикратно."
#. Ev2VU
#: 02160000.xhp
@@ -11474,14 +11483,14 @@ msgctxt ""
msgid "Select the highlighted text."
msgstr "Изберете осветения текст."
-#. BTFWr
+#. yRMNb
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3149784\n"
"help.text"
-msgid "On the <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
-msgstr ""
+msgid "On the <switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph>Text</emph></defaultinline></switchinline> <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
+msgstr "В лентата <emph>Форматиране</emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph> на текст</emph></defaultinline></switchinline> щракнете върху стрелката до иконата <emph>Цвят за осветяване на знаците</emph> и после върху <emph>Без запълване</emph>."
#. yDDr8
#: 02160000.xhp
@@ -11490,7 +11499,7 @@ msgctxt ""
"par_id681610983533210\n"
"help.text"
msgid "For multiple selections, click the <emph>Character Highlighting Color</emph> icon with <emph>No Fill</emph>, select highlighting to remove, then finish by clicking the icon again or pressing <keycode>Esc</keycode>."
-msgstr ""
+msgstr "За няколко селекции щракнете върху иконата <emph>Цвят за осветяване на знаците</emph> с <emph>Без запълване</emph>, изберете осветяването, което трябва да се премахне, и завършете, като щракнете отново върху иконата или натиснете <keycode>Esc</keycode>."
#. fRhjf
#: 02170000.xhp
@@ -12347,23 +12356,23 @@ msgctxt ""
msgid "Move Down"
msgstr "Местене надолу"
-#. qjHwq
+#. ZvBbZ
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"tit\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Водачи - вкл./изкл."
+msgid "Toggle Unordered List"
+msgstr "Превключване на неподреден списък"
-#. 2pB5k
+#. CCrby
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"hd_id3154228\n"
"help.text"
-msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Bullets On/Off</link>"
-msgstr "<link href=\"text/shared/02/06120000.xhp\" name=\"Водачи - вкл./изкл.\">Водачи - вкл./изкл.</link>"
+msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Toggle Unordered List</link>"
+msgstr "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Превключване на неподреден списък</link>"
#. GQ9yd
#: 06120000.xhp
@@ -12410,23 +12419,23 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text box and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Разстоянието между текста и левия край на текстовото поле и позицията на водачите може да се задава в диалоговия прозорец <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph\"><emph>Форматиране - Абзац</emph></link> чрез въвеждане на левия отстъп и отстъпа за първия ред.</caseinline></switchinline>"
-#. QCjAp
+#. X9H2x
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3150355\n"
"help.text"
-msgid "<image id=\"img_id3157909\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157909\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3157909\">Икона</alt></image>"
+msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon</alt></image>"
+msgstr "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Икона</alt></image>"
-#. iHX8u
+#. TEain
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3149233\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Водачи - вкл./изкл."
+msgid "Toggle Unordered List"
+msgstr "Превключване на неподреден списък"
#. 6UAmF
#: 07010000.xhp
@@ -12824,14 +12833,41 @@ msgctxt ""
msgid "<variable id=\"hyperdiatext\"><ahelp hid=\".\">Opens a dialog that enables you to create and edit hyperlinks.</ahelp></variable>"
msgstr "<variable id=\"hyperdiatext\"><ahelp hid=\".\">Отваря диалог, в който можете да създавате и редактирате хипервръзки.</ahelp></variable>"
-#. thKGB
+#. H5bDr
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id511616406933483\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Hyperlink</menuitem>."
+msgstr ""
+
+#. CFNbD
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id771616410590648\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Hyperlink</menuitem>, when the cursor is placed in a hyperlink."
+msgstr ""
+
+#. E6FB3
+#: 09070000.xhp
+msgctxt ""
+"09070000.xhp\n"
+"par_id161616407054506\n"
+"help.text"
+msgid "On <link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\"><emph>Standard</emph></link> bar, click"
+msgstr ""
+
+#. MSjJA
#: 09070000.xhp
msgctxt ""
"09070000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3093440\">Icon</alt></image>"
-msgstr "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3093440\">Икона</alt></image>"
+msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3093440\">Icon</alt></image>"
+msgstr ""
#. Dty7B
#: 09070000.xhp
@@ -13364,6 +13400,15 @@ msgctxt ""
msgid "Document"
msgstr "Документ"
+#. 8Cn55
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"bm_id551615667308718\n"
+"help.text"
+msgid "<bookmark_value>hyperlinks;to files</bookmark_value> <bookmark_value>hyperlinks;to folders</bookmark_value>"
+msgstr "<bookmark_value>хипервръзки;към файлове</bookmark_value> <bookmark_value>хипервръзки;към папки</bookmark_value>"
+
#. RCfpV
#: 09070300.xhp
msgctxt ""
@@ -13382,6 +13427,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Enter a <emph>URL</emph> for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
msgstr "<ahelp hid=\".\">Въведете <emph>URL адрес</emph> за файла, който искате да се отвори при щракване върху хипервръзката. Ако не зададете рамка цел, файлът ще се отвори в текущия документ или рамка.</ahelp>"
+#. taJit
+#: 09070300.xhp
+msgctxt ""
+"09070300.xhp\n"
+"par_id91615666930995\n"
+"help.text"
+msgid "If the URL refers to a <emph>folder</emph>, the standard file manager in your operating system opens showing the contents of the specified folder."
+msgstr "Ако URL адресът сочи към <emph>папка</emph>, се отваря стандартният файлов диспечер на операционната система и показва съдържанието на указаната папка."
+
#. GQcJJ
#: 09070300.xhp
msgctxt ""
@@ -16764,7 +16818,7 @@ msgctxt ""
"hd_id3148668\n"
"help.text"
msgid "<variable id=\"setting_margins\"><link href=\"text/shared/02/13020000.xhp\" name=\"Setting Indents, Margins, and Columns\">Setting Indents, Margins, and Columns</link></variable>"
-msgstr ""
+msgstr "<variable id=\"setting_margins\"><link href=\"text/shared/02/13020000.xhp\" name=\"Setting Indents, Margins, and Columns\">Задаване на отстъпи, полета и колони</link></variable>"
#. eXPSg
#: 13020000.xhp
@@ -16917,7 +16971,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "In order to change the left indent starting with the second line of a paragraph, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key, click the triangle on the bottom left, and drag it to the right."
-msgstr ""
+msgstr "За да промените левия отстъп от втория ред на абзаца нататък, задръжте клавиша <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, щракнете върху левия долен триъгълник и го плъзнете надясно."
#. 5mWdm
#: 13020000.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/04.po b/source/bg/helpcontent2/source/text/shared/04.po
index aaf608e008a..493140c21d5 100644
--- a/source/bg/helpcontent2/source/text/shared/04.po
+++ b/source/bg/helpcontent2/source/text/shared/04.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: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2020-07-30 22:38+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared04/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared04/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1548551367.000000\n"
#. GEuoc
@@ -70,14 +70,14 @@ msgctxt ""
msgid "When operating your application, you can choose between using the mouse or the keyboard for almost all of the operations available."
msgstr "Когато работите с приложенията, можете да избирате между клавиатурата и мишката за изпълнението на почти всяка операция."
-#. iE2uQ
+#. Q2ALG
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"hd_id3154186\n"
"help.text"
-msgid "Calling Menus With Shortcut Keys"
-msgstr "Извикване на менюта с клавиши"
+msgid "Calling Menus with Mnemonics"
+msgstr "Извикване на менюта с мнемонични комбинации"
#. Lv2Sv
#: 01010000.xhp
@@ -761,7 +761,7 @@ msgctxt ""
"par_id3144506\n"
"help.text"
msgid "Sets focus in next visible subwindow, including menu bar, toolbars, windows such as Sidebar and Navigator, and document canvas/data source."
-msgstr ""
+msgstr "Премества фокуса в следващия видим подпрозорец, включително лентата с менюта, лентите с инструменти, прозорци от рода на страничната лента и навигатора и платното за документи / източника на данни."
#. Enxuj
#: 01010000.xhp
@@ -788,7 +788,7 @@ msgctxt ""
"par_id341612296864115\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F6</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F6</keycode>"
#. SvF5v
#: 01010000.xhp
@@ -797,7 +797,7 @@ msgctxt ""
"par_id521612296878916\n"
"help.text"
msgid "Sets focus in the document canvas/data source."
-msgstr ""
+msgstr "Премества фокуса в платното за документи/източника на данни."
#. Y7pzu
#: 01010000.xhp
@@ -842,7 +842,7 @@ msgctxt ""
"par_id631612398592490\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F10</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F10</keycode>"
#. QFqB4
#: 01010000.xhp
@@ -851,7 +851,7 @@ msgctxt ""
"par_id111612398626979\n"
"help.text"
msgid "Docks and undocks floating subwindows such as unlocked toolbars, Sidebar and Navigator."
-msgstr ""
+msgstr "Закачва и откачва плаващи подпрозорци като отключените ленти с инструменти, страничната лента и навигатора."
#. CFAWe
#: 01010000.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/explorer/database.po b/source/bg/helpcontent2/source/text/shared/explorer/database.po
index 04d4adea553..1fdd8d848f6 100644
--- a/source/bg/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bg/helpcontent2/source/text/shared/explorer/database.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-01 17:02+0100\n"
-"PO-Revision-Date: 2020-11-10 20:35+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-15 20:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -16,465 +16,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1549986591.000000\n"
-#. n4gFz
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "Релации"
-
-#. Mdpfp
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153323\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations\">Relations</link>"
-msgstr "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Релации\">Релации</link>"
-
-#. GxBiD
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3146957\n"
-"help.text"
-msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
-msgstr "<bookmark_value>релационни бази от данни (Base)</bookmark_value>"
-
-#. YYXkm
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3146957\n"
-"help.text"
-msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
-msgstr "Тази команда отваря прозореца <emph>Проектиране на релации</emph>, в който можете да задавате връзки между таблиците в базата от данни."
-
-#. vMuED
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3154823\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
-msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">Тук можете да свързвате таблици на текущата база от данни чрез общи полета с данни.</ahelp> За да създавате връзки, щракайте върху иконата <emph>Нова релация</emph> или просто плъзгайте и пускайте полета с мишката."
-
-#. zHWMJ
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3145316\n"
-"help.text"
-msgid "This function is only available if you are working with a relational database."
-msgstr "Тази функция е достъпна само ако работите с релационна база от данни."
-
-#. 5MXvo
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
-msgstr "Когато изберете <emph>Инструменти - Релации</emph>, се отваря прозорец, в който са показани съществуващите връзки между таблици в текущата база от данни. Ако не са били зададени връзки или ако искате да свържете други таблици в базата от данни, щракнете върху иконата <emph>Добавяне на таблици</emph>. Ще се появи диалоговият прозорец <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Добавяне на таблици</link>, в който можете да изберете таблиците, за които да бъде зададена връзка."
-
-#. krxTw
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3152812\n"
-"help.text"
-msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
-msgstr "Ако е отворен прозорецът <emph>Проектиране на релации</emph>, избраните таблици не могат да бъдат променяни, дори в режим на проектиране. Така се гарантира, че таблиците няма да се изменят по време на създаване на връзките между тях."
-
-#. zZFEP
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3150541\n"
-"help.text"
-msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
-msgstr "Избраните таблици се показват в горната част на изгледа за проектиране на връзки. Можете да затворите прозорец на таблица чрез контекстното меню или клавиша Delete."
-
-#. uJVYH
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3148922\n"
-"help.text"
-msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
-msgstr "<bookmark_value>първични ключове;вмъкване (Base)</bookmark_value><bookmark_value>ключове;първични ключове (Base)</bookmark_value><bookmark_value>външни ключове (Base)</bookmark_value>"
-
-#. ek2aE
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3148922\n"
-"help.text"
-msgid "Primary key and foreign keys"
-msgstr "Първичен ключ и външни ключове"
-
-#. ksuDX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149168\n"
-"help.text"
-msgid "If you want to define a relation among the various tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that uniquely identifies a data field of an existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as a foreign key."
-msgstr "Ако искате да зададете връзка между две таблици, трябва да създадете <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">първичен ключ</link>, който еднозначно идентифицира записите на съществуваща таблица. След това можете да го използвате, за да посочвате записите на тази таблица от други таблици. Полетата от други таблици, които цитират този първичен ключ, се наричат външни ключове."
-
-#. FACvb
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3147085\n"
-"help.text"
-msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
-msgstr "Всички полета, отнасящи се до първичен ключ, се обозначават в прозореца на таблицата с малък символ – ключ."
-
-#. vro8F
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"hd_id3153193\n"
-"help.text"
-msgid "Define relations"
-msgstr "Задаване на релации"
-
-#. wmwWU
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"bm_id3155430\n"
-"help.text"
-msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
-msgstr "<bookmark_value>релации; създаване и изтриване (Base)</bookmark_value>"
-
-#. pGNLA
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155430\n"
-"help.text"
-msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
-msgstr "Всички съществуващи връзки се виждат в прозореца с релации като линии, свързващи полета от първичен ключ с полета от външен ключ. За да добавите релация, плъзнете полето от едната таблица и го пуснете върху поле от другата. За да премахнете връзка, изберете я и натиснете клавиша Delete."
-
-#. McRUh
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3149984\n"
-"help.text"
-msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr "Освен това можете да щракнете върху иконата <emph>Нова релация</emph> в горната част на полето с релации и да зададете връзката между две таблици в диалоговия прозорец <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Релации\"><emph>Релации</emph></link>."
-
-#. yTadX
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3153093\n"
-"help.text"
-msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
-msgstr "Ако използвате $[officename] като потребителски интерфейс за релационна база от данни, създаването и изтриването на връзки не се извършва във временна памет от $[officename], а се предава директно към базата от данни."
-
-#. bnCjW
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"par_id3155856\n"
-"help.text"
-msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
-msgstr "Когато щракнете двукратно върху съединителна линия, се отваря диалоговият прозорец <emph>Релации</emph>. В него можете да задавате някои свойства на връзките."
-
-#. zaiku
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Relations"
-msgstr "Релации"
-
-#. BAAZE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"bm_id3150499\n"
-"help.text"
-msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
-msgstr "<bookmark_value>релации; свойства (Base)</bookmark_value><bookmark_value>ключови полета за релации (Base)</bookmark_value><bookmark_value>каскадно обновяване (Base)</bookmark_value>"
-
-#. tDgC3
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "Relations"
-msgstr "Релации"
-
-#. 5fAEp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3150499\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
-msgstr "<ahelp hid=\".uno:DBAddRelation\">Позволява ви да задавате или редактирате връзка между две таблици.</ahelp>"
-
-#. yHc9N
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155136\n"
-"help.text"
-msgid "The update and delete options are only available if they are supported by the database used."
-msgstr "Настройките за обновяване и изтриване са достъпни само ако се поддържат от използваната СУБД."
-
-#. BDC5P
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3155341\n"
-"help.text"
-msgid "Tables"
-msgstr "Участващи таблици"
-
-#. BAGsd
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153880\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">Тук са показани двете свързани таблици.</ahelp> Когато създавате нова връзка, можете да изберете по една таблица от комбинираните полета в горната част на диалоговия прозорец."
-
-#. 4UCC7
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154047\n"
-"help.text"
-msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
-msgstr "Ако сте отворили диалоговия прозорец <emph>Релации</emph> за съществуваща връзка чрез двукратно щракване върху линия в прозореца с релации, участващите таблици не могат да се сменят."
-
-#. VBeNf
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3153822\n"
-"help.text"
-msgid "Key fields"
-msgstr "Участващи полета"
-
-#. CnkB6
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3159157\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Определя ключовите полета за релацията.</ahelp>"
-
-#. tG7Wy
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3149235\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">Имената на избраните за връзката таблици са показани тук като заглавия на колони.</ahelp> Ако щракнете върху поле, можете да използвате бутоните със стрелки, за да изберете поле от таблицата. Всяка връзка между две полета е изписана на отделен ред."
-
-#. ECqps
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145609\n"
-"help.text"
-msgid "Update options"
-msgstr "Действие при обновяване"
-
-#. TcZQE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153061\n"
-"help.text"
-msgid "Here you can select options that take effect when there are changes to a primary key field."
-msgstr "Тук можете да укажете какво да се случва, когато някоя от стойностите на първичния ключ се промени."
-
-#. SNgAC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3149046\n"
-"help.text"
-msgid "No action"
-msgstr "Без действие"
-
-#. BQgh9
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3152360\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Указва, че промените в първичния ключ не влияят върху външните ключове.</ahelp>"
-
-#. UzK5q
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3148664\n"
-"help.text"
-msgid "Updating cascade"
-msgstr "Каскадно обновяване"
-
-#. GFtru
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154073\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Когато първичният ключ се промени, се обновяват и всички съответни външни ключове (каскадно обновяване).</ahelp>"
-
-#. xydLE
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145171\n"
-"help.text"
-msgid "Set null"
-msgstr "Попълване с null"
-
-#. ksYnw
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154123\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\">Ако първичният ключ се промени, всички цитиращи го външни ключове ще бъдат поставени в състояние „IS NULL“, което означава „празно поле“.</ahelp>"
-
-#. FGxMC
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3150448\n"
-"help.text"
-msgid "Set default"
-msgstr "Подразбирана стойност"
-
-#. T7dEQ
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3151041\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> Ако първичният ключ се промени, съответните външни ключове ще бъдат попълнени с подразбираната си стойност.</ahelp> Подразбираните стойности на полетата – външни ключове се задават при попълване свойствата на полетата по време на създаването на съответната таблица."
-
-#. AvWBL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3125863\n"
-"help.text"
-msgid "Delete options"
-msgstr "Действие при изтриване"
-
-#. ayyns
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153193\n"
-"help.text"
-msgid "Here you can select options that take effect when a primary key field is deleted."
-msgstr "Тук можете да изберете какво да се случва, когато стойност на първичния ключ бъде изтрита."
-
-#. jTCSL
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3159252\n"
-"help.text"
-msgid "No action"
-msgstr "Без действие"
-
-#. PgDqt
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3145785\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Изтриването на стойност на първичния ключ не се отразява върху външните ключове.</ahelp>"
-
-#. hFmB4
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3154146\n"
-"help.text"
-msgid "Delete cascade"
-msgstr "Каскадно изтриване"
-
-#. ESpAp
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155309\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">При изтриване на стойност на първичния ключ се изтриват и всички записи със същата стойност на външния ключ.</ahelp>"
-
-#. ZaNTh
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153140\n"
-"help.text"
-msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
-msgstr "Когато изтриете запис от таблица, чийто първичен ключ е с настройка <emph>Каскадно изтриване</emph>, всички записи от други таблици, които цитират съответната стойност чрез външен ключ, също ще бъдат изтрити. Използвайте този режим много внимателно – в него е възможно да бъде изтрита голяма част от данните в базата."
-
-#. mAu9C
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3152596\n"
-"help.text"
-msgid "Set null"
-msgstr "Попълване с null"
-
-#. dAtCx
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3153363\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">Ако изтриете дадена стойност на първичния ключ, на всички съответни външни ключове ще бъде приписана стойност „IS NULL“.</ahelp>"
-
-#. 474LG
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3145272\n"
-"help.text"
-msgid "Set Default"
-msgstr "Подразбирана стойност"
-
-#. ktJ6K
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3154320\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
-msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">Ако изтриете дадена стойност на първичния ключ, всички съответни стойности на външните ключове ще бъдат заменени с подразбирани стойности.</ahelp>"
-
#. x8A6E
#: 05030000.xhp
msgctxt ""
@@ -1436,7 +977,7 @@ msgctxt ""
"par_id3159399\n"
"help.text"
msgid "<ahelp hid=\".\">Allows the user to modify the defined references, for example, to enter new relations for the table or to delete existing relations.</ahelp>"
-msgstr "<ahelp hid=\".\">Позволява на потребителя да променя зададените връзки, например да въвежда нови релации за таблицата или да изтрива съществуващи.</ahelp>"
+msgstr "<ahelp hid=\".\">Позволява на потребителя да променя зададените връзки, например да въвежда нови връзки за таблицата или да изтрива съществуващи.</ahelp>"
#. 2sbVx
#: 05040200.xhp
@@ -1535,7 +1076,7 @@ msgctxt ""
"par_id3154143\n"
"help.text"
msgid "To open the data source view, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F4</keycode> in a text, spreadsheet or form document."
-msgstr ""
+msgstr "За да отворите изгледа за източник на данни, натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F4</keycode> в текстов документ, електронна таблица или формуляр."
#. qiyEE
#: 11000002.xhp
@@ -3769,15 +3310,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Set up ADO connection</link>"
msgstr "<link href=\"text/shared/explorer/database/dabawiz02ado.xhp\">Настройване на връзка към ADO</link>"
-#. V9baD
-#: dabawiz00.xhp
-msgctxt ""
-"dabawiz00.xhp\n"
-"par_idN10610\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Set up LDAP connection</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Настройване на връзка към LDAP</link>"
-
#. bbTEe
#: dabawiz00.xhp
msgctxt ""
@@ -4795,132 +4327,6 @@ msgctxt ""
msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
msgstr "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Помощник за бази от данни</link>"
-#. XLfeM
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"tit\n"
-"help.text"
-msgid "LDAP Connection"
-msgstr "Връзка с LDAP"
-
-#. E4K9F
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"bm_id22583\n"
-"help.text"
-msgid "<bookmark_value>LDAP server; address books (Base)</bookmark_value><bookmark_value>address books; LDAP server (Base)</bookmark_value><bookmark_value>data sources; LDAP server (Base)</bookmark_value>"
-msgstr "<bookmark_value>LDAP сървър; адресни бележници (Base)</bookmark_value><bookmark_value>адресни бележници; LDAP сървър (Base)</bookmark_value><bookmark_value>източници на данни; LDAP сървър (Base)</bookmark_value>"
-
-#. HDgwj
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "<variable id=\"ldap\"><link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">LDAP Connection</link></variable>"
-msgstr "<variable id=\"ldap\"><link href=\"text/shared/explorer/database/dabawiz02ldap.xhp\">Връзка с LDAP</link></variable>"
-
-#. Xdbya
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies the settings for importing a database using LDAP</ahelp> (<emph>Lightweight Directory Access Protocol)</emph>. This page is only available if you registered an LDAP server as an address database."
-msgstr "<ahelp hid=\".\">Определя настройките за импортиране на база от данни чрез LDAP</ahelp> (<emph>Lightweight Directory Access Protocol)</emph>. Тази страница е достъпна само ако сте регистрирали LDAP сървър като база от данни с адреси."
-
-#. ZMeDx
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10579\n"
-"help.text"
-msgid "Server URL"
-msgstr "URL на сървъра"
-
-#. ScRnC
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_HOSTNAME\">Enter the name of the LDAP server using the format \"ldap.server.com\".</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_HOSTNAME\">Въведете името на LDAP сървъра във формата „ldap.server.com“.</ahelp>"
-
-#. WRJRs
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Base DN"
-msgstr "Базов DN"
-
-#. kFVmv
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN10598\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Enter the starting point to search the LDAP database, for example, \"dc=com\".</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_BASEDN\">Въведете началната точка за търсене в базата от данни на LDAP, например „dc=com“.</ahelp>"
-
-#. AKFCR
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Port number"
-msgstr "Номер на порт"
-
-#. 9Bhwf
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_LDAP_PORTNUMBER\">Enter the port of the LDAP server, normally 389.</ahelp>"
-msgstr "<ahelp hid=\"HID_DSADMIN_LDAP_PORTNUMBER\">Въведете порта на LDAP сървъра, обикновено – 389.</ahelp>"
-
-#. 8FGvh
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CA\n"
-"help.text"
-msgid "Use secure connection (SSL)"
-msgstr "Използване на сигурна връзка (SSL)"
-
-#. REnMu
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105CE\n"
-"help.text"
-msgid "<ahelp hid=\"HID_DSADMIN_USESSL_LDAP\">Creates a secure connection to the LDAP server through the Secure Sockets Layer (SSL).</ahelp> By default, an SSL connection uses port 636. A regular connection uses port 389."
-msgstr "<ahelp hid=\"HID_DSADMIN_USESSL_LDAP\">Сзъдава защитена връзка до LDAP сървъра чрез SSL (Secure Sockets Layer).</ahelp> По подразбиране за връзка през SSL се използва порт 636. За обикновена връзка се използва порт 389."
-
-#. PXBAE
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105DE\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz03auth.xhp\">Authentication</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz03auth.xhp\">Идентификация</link>"
-
-#. EkPas
-#: dabawiz02ldap.xhp
-msgctxt ""
-"dabawiz02ldap.xhp\n"
-"par_idN105F5\n"
-"help.text"
-msgid "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link>"
-msgstr "<link href=\"text/shared/explorer/database/dabawiz00.xhp\">Помощник за бази от данни</link>"
-
#. Y4EFA
#: dabawiz02mysql.xhp
msgctxt ""
@@ -5180,7 +4586,7 @@ msgctxt ""
"par_id8856776\n"
"help.text"
msgid "To edit or add records to a database table in $[officename], the table must have a unique index field."
-msgstr "За да редактирате или добавяте записи в таблица на база от данни в $[officename], е необходимо таблицата да има поле с индекс без повторения."
+msgstr "За да редактирате или добавяте записи в таблица на база от данни в $[officename], е необходимо таблицата да има поле с уникален индекс."
#. xs2Yc
#: dabawiz02odbc.xhp
@@ -6638,16 +6044,16 @@ msgctxt ""
"par_idN10560\n"
"help.text"
msgid "Relationships"
-msgstr "Релации"
+msgstr "Връзки"
-#. agJkV
+#. DKgXb
#: menutools.xhp
msgctxt ""
"menutools.xhp\n"
"par_idN10576\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/explorer/database/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
-msgstr "<ahelp hid=\".\">Отваря изгледа <link href=\"text/shared/explorer/database/05020000.xhp\">Проектиране на релации</link> и проверява дали връзката към база от данни поддържа релации.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/sdatabase/05020000.xhp\">Relation Design</link> view and checks whether the database connection supports relations.</ahelp>"
+msgstr "<ahelp hid=\".\">Отваря изгледа <link href=\"text/sdatabase/05020000.xhp\">Проектиране на връзки</link> и проверява дали свързаната база от данни поддържа връзки между таблици.</ahelp>"
#. B2YV6
#: menutools.xhp
@@ -6836,7 +6242,7 @@ msgctxt ""
"par_idN1057C\n"
"help.text"
msgid "Tables"
-msgstr "Участващи таблици"
+msgstr "Таблици"
#. Cy23D
#: menuview.xhp
@@ -7241,7 +6647,7 @@ msgctxt ""
"par_idN10559\n"
"help.text"
msgid "Tables"
-msgstr "Участващи таблици"
+msgstr "Таблици"
#. RBgge
#: querywizard01.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index c588f3c0213..ac6b88c4a5d 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: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
"PO-Revision-Date: 2021-01-20 13:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/bg/>\n"
@@ -8162,13 +8162,13 @@ msgctxt ""
msgid "Tables"
msgstr "Таблици"
-#. k3n7x
+#. Gcdea
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3163713\n"
"help.text"
-msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/shared/explorer/database/05020000.xhp\" name=\"relations\">relations</link>"
+msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">Create new table, edit table structure</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/sdatabase/05020000.xhp\" name=\"relations\">relations</link>"
msgstr ""
#. AENyR
@@ -18620,68 +18620,77 @@ msgctxt ""
msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
msgstr "Водачи и номерация на абзац могат да бъдат създавани в Writer, Impress и Draw."
-#. 4DAtN
+#. LnEF2
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id3147618\n"
+"help.text"
+msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>No List</emph> icon in the <emph>Formatting</emph> bar. The list indenting is also removed."
+msgstr ""
+
+#. R49Gn
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3154288\n"
"help.text"
-msgid "<image id=\"img_id3153527\" src=\"cmd/sc_removebullets.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153527\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153527\" src=\"cmd/sc_removebullets.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153527\">Икона</alt></image>"
+msgid "<image id=\"img_id3153527\" src=\"cmd/lc_removebullets.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153527\">No List icon</alt></image>"
+msgstr ""
-#. zSuGJ
+#. nFCu3
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3150443\n"
+"par_id151614326512513\n"
"help.text"
-msgid "<image id=\"img_id3163802\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3163802\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163802\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3163802\">Икона</alt></image>"
+msgid "No List icon"
+msgstr ""
-#. it4t7
+#. Uzqm6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3147618\n"
+"par_id3144511\n"
"help.text"
-msgid "For the current paragraph or selected paragraphs you can switch off the automatic numbering or listing. Click the <emph>Numbering Off</emph> icon in the <emph>Bullets and Numbering</emph> bar."
-msgstr "Можете да изключите автоматичното номериране или водещите символи за текущия абзац или избрани абзаци. Щракнете върху иконата <emph>Номериране – изключено</emph> в лентата <emph>Водачи и номерация</emph>."
+msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Toggle Unordered List</emph> icon on the <emph>Text Formatting</emph> bar."
+msgstr ""
-#. CcCTx
+#. XLYd6
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3155449\n"
"help.text"
-msgid "<image id=\"img_id3158432\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3158432\">Icon</alt></image>"
-msgstr "<image id=\"img_id3158432\" src=\"cmd/sc_defaultbullet.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3158432\">Икона</alt></image>"
+msgid "<image id=\"img_id3158432\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3158432\">Icon</alt></image>"
+msgstr ""
-#. biscq
+#. ikjGP
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
-"par_id3144511\n"
+"par_id781614327726646\n"
"help.text"
-msgid "If the cursor is located within a numbered or bulleted list, you can turn off automatic numbers or bullets for the current paragraph or selected paragraphs by clicking the <emph>Bullets On/Off </emph>icon on the <emph>Text Formatting</emph> bar."
-msgstr "Ако курсорът се намира в списък с номера или водачи, можете да изключите автоматичните номера или водачи за текущия абзац или избрани абзаци, като щракнете върху иконата <emph>Водачи - вкл./изкл.</emph> в лентата <emph>Форматиране на текст</emph>."
+msgid "Toggle Unordered List icon"
+msgstr ""
-#. CfCjc
+#. RE37f
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148946\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To remove numbering from a paragraph using the keyboard: </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">За да премахнете номериране от абзац с клавиатурата: </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"> To remove a number or bullet from a paragraph while preserving the list indenting: </caseinline></switchinline>"
+msgstr ""
-#. qETFj
+#. EsxZF
#: numbering_stop.xhp
msgctxt ""
"numbering_stop.xhp\n"
"par_id3148663\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a numbered paragraph and press the Backspace key. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Поставете курсора в началото на номериран абзац и натиснете клавиша Backspace. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Place the cursor at the beginning of a paragraph in a list and press the <keycode>Backspace</keycode> key. </caseinline></switchinline>"
+msgstr ""
#. TY7jM
#: numbering_stop.xhp
@@ -18692,6 +18701,15 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The numbering of the paragraph disappears and is removed from the numbering sequence. Numbering resumes in the following paragraph. </caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Номерът на абзаца изчезва и се премахва от последователността на номерирането. Номерацията продължава в следващия абзац. </caseinline></switchinline>"
+#. B8akd
+#: numbering_stop.xhp
+msgctxt ""
+"numbering_stop.xhp\n"
+"par_id911614326873271\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> at the beginning of a list paragraph to return the number or bullet."
+msgstr ""
+
#. FrmUz
#: numbering_stop.xhp
msgctxt ""
@@ -23327,14 +23345,14 @@ msgctxt ""
msgid "If --convert-to is used more than once, last value of OutputFileExtension[:OutputFilterName] is effective. If --outdir is used more than once, only its last value is effective. For example:"
msgstr "Ако --convert-to е използван повече от веднъж, в сила е последната стойност на разширение_на_резултата[:име_на_изходен_филтър]. Ако --outdir е използван повече от веднъж, в сила е само последната му стойност. Например:"
-#. ir37U
+#. RYx7a
#: start_parameters.xhp
msgctxt ""
"start_parameters.xhp\n"
"par_id781554408625219\n"
"help.text"
-msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion."
-msgstr "За преобразуване на файлове вижте <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">списъка с филтри за документи</link>."
+msgid "<variable id=\"seefilters\">See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion.</variable>"
+msgstr ""
#. EiUnD
#: start_parameters.xhp
@@ -23930,14 +23948,14 @@ msgctxt ""
msgid "If you want to change the settings of your default tab stops, you will find further information under <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Text Document - General\">%PRODUCTNAME Writer - General</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - General\">%PRODUCTNAME Calc - General</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Drawing - General\">%PRODUCTNAME Draw - General</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Presentation - General\">%PRODUCTNAME Impress - General</link></caseinline><defaultinline>(module name) - General</defaultinline></switchinline> in the Options dialog box."
msgstr "Ако искате да промените настройките на подразбираните позиции за табулация, можете да намерите още информация в <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01040900.xhp\" name=\"Текстов документ - Общи\">%PRODUCTNAME Writer - Общи</link></caseinline><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060300.xhp\" name=\"Електронна таблица - Общи\">%PRODUCTNAME Calc - Общи</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Рисунка - Общи\">%PRODUCTNAME Draw - Общи</link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/shared/optionen/01070500.xhp\" name=\"Презентация - Общи\">%PRODUCTNAME Impress - Общи</link></caseinline><defaultinline>(име на модул) - Общи</defaultinline></switchinline> в диалоговия прозорец Настройки."
-#. hqPQR
+#. hA4kf
#: tabs.xhp
msgctxt ""
"tabs.xhp\n"
"par_id3146972\n"
"help.text"
-msgid "The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
-msgstr "<link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">Контекстното меню</link> на скалата ви позволява да променяте показваните мерни единици. Тази промяна важи само докато затворите $[officename] и се отнася само за скалата, в чието контекстно меню сте я нанесли. Ако желаете да промените мерните единици на скалите за постоянно, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline><menuitem> - [Вид документи] - Изглед</menuitem> и сменете мерната единица."
+msgid "The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the ruler allows you to change the displayed units of measurement. These changes are only valid until you exit $[officename], and they only apply to the ruler on whose context menu you made the change. If you want to change the ruler measurement units permanently, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - [Document type] - View</menuitem> and change the measurement unit there."
+msgstr ""
#. ojDwN
#: tabs.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 5a621440b32..ac9ab748750 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: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2020-12-20 15:57+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/bg/>\n"
"Language: bg\n"
@@ -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.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562351576.000000\n"
@@ -1230,7 +1230,7 @@ msgctxt ""
"hd_id3149514\n"
"help.text"
msgid "<variable id=\"pathsh1\"><link href=\"text/shared/optionen/01010300.xhp\" name=\"Paths\">Paths</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pathsh1\"><link href=\"text/shared/optionen/01010300.xhp\" name=\"Paths\">Пътища</link></variable>"
#. PUqHN
#: 01010300.xhp
@@ -1311,7 +1311,7 @@ msgctxt ""
"par_id691607812924039\n"
"help.text"
msgid "The <emph>{user profile}</emph> directory and its subdirectories contain user data.<variable id=\"userprofile_location\">The location of the <emph>{user profile}</emph> directory is determined when %PRODUCTNAME is installed. See the <link href=\"https://wiki.documentfoundation.org/UserProfile#Default_locations\" name=\"Default_location\">Default location</link> section in the Wiki page about <emph>LibreOffice user profile</emph> for more information about typical locations of the <emph>user profile</emph> in different operating systems.</variable>"
-msgstr ""
+msgstr "Директорията <emph>{потребителски профил}</emph> и поддиректориите ѝ съдържат данни, свързани с потребител. <variable id=\"userprofile_location\">Местоположението на директорията <emph>{потребителски профил}</emph> се определя по време на инсталирането на %PRODUCTNAME. Вижте раздела <link href=\"https://wiki.documentfoundation.org/UserProfile#Default_locations\" name=\"Default_location\">Default location</link> („Подразбирано местоположение“) в уикистраницата за <emph>потребителски профили на LibreOffice</emph> за повече информация относно типичните местоположения на <emph>потребителския профил</emph> в различни операционни системи.</variable>"
#. cFiDw
#: 01010300.xhp
@@ -1320,7 +1320,7 @@ msgctxt ""
"par_id601607813017831\n"
"help.text"
msgid "The following list shows the default predefined paths for storing user data, and explains what type of user data is stored in each path. Use the <emph>Edit</emph> dialog to change, add, or delete paths for the different types."
-msgstr ""
+msgstr "В следващия списък са показани подразбираните предварително дефинирани пътища за съхранение на данни, свързани с потребител, и е пояснено какъв вид данни се съхраняват във всеки от пътищата. Използвайте диалога <emph>Редактиране</emph>, за да променяте, добавяте или изтривате пътища за различните типове."
#. WkpG4
#: 01010300.xhp
@@ -1338,7 +1338,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "Default Path"
-msgstr ""
+msgstr "Подразбиран път"
#. X5fVa
#: 01010300.xhp
@@ -1365,7 +1365,7 @@ msgctxt ""
"par_id3753776\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/autocorr</caseinline><caseinline select=\"MAC\">{user profile}/user/autocorr</caseinline><defaultinline>{user profile}\\user\\autocorr</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/autocorr</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/autocorr</caseinline><defaultinline>{потребителски профил}\\user\\autocorr</defaultinline></switchinline>"
#. dAcPa
#: 01010300.xhp
@@ -1392,7 +1392,7 @@ msgctxt ""
"par_id7858516\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/autotext</caseinline><caseinline select=\"MAC\">{user profile}/user/autotext</caseinline><defaultinline>{user profile}\\user\\autotext</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/autotext</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/autotext</caseinline><defaultinline>{потребителски профил}\\user\\autotext</defaultinline></switchinline>"
#. UkYUE
#: 01010300.xhp
@@ -1419,7 +1419,7 @@ msgctxt ""
"par_id3154915\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/backup</caseinline><caseinline select=\"MAC\">{user profile}/user/backup</caseinline><defaultinline>{user profile}\\user\\backup</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/backup</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/backup</caseinline><defaultinline>{потребителски профил}\\user\\backup</defaultinline></switchinline>"
#. VkjYd
#: 01010300.xhp
@@ -1437,7 +1437,7 @@ msgctxt ""
"par_id271607721701065\n"
"help.text"
msgid "Dictionaries"
-msgstr ""
+msgstr "Речници"
#. FXATD
#: 01010300.xhp
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id651607721812472\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/wordbook</caseinline><caseinline select=\"MAC\">{user profile}/user/wordbook</caseinline><defaultinline>{user profile}\\user\\wordbook</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/wordbook</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/wordbook</caseinline><defaultinline>{потребителски профил}\\user\\wordbook</defaultinline></switchinline>"
#. bY2D9
#: 01010300.xhp
@@ -1455,7 +1455,7 @@ msgctxt ""
"par_id491607721838854\n"
"help.text"
msgid "This folder stores files with words in your custom dictionaries."
-msgstr ""
+msgstr "В тази папка се съхраняват файлове с думите на потребителските ви речници."
#. EaKN5
#: 01010300.xhp
@@ -1473,7 +1473,7 @@ msgctxt ""
"par_id3154484\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/gallery</caseinline><caseinline select=\"MAC\">{user profile}/user/gallery</caseinline><defaultinline>{user profile}\\user\\gallery</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/gallery</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/gallery</caseinline><defaultinline>{потребителски профил}\\user\\gallery</defaultinline></switchinline>"
#. xsB26
#: 01010300.xhp
@@ -1491,7 +1491,7 @@ msgctxt ""
"par_id3151333\n"
"help.text"
msgid "Images"
-msgstr ""
+msgstr "Изображения"
#. s2XBY
#: 01010300.xhp
@@ -1500,7 +1500,7 @@ msgctxt ""
"par_id3152890\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/gallery</caseinline><caseinline select=\"MAC\">{user profile}/user/gallery</caseinline><defaultinline>{user profile}\\user\\gallery</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/gallery</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/gallery</caseinline><defaultinline>{потребителски профил}\\user\\gallery</defaultinline></switchinline>"
#. gA5VT
#: 01010300.xhp
@@ -1527,7 +1527,7 @@ msgctxt ""
"par_id9014252\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/template</caseinline><caseinline select=\"MAC\">{user profile}/user/template</caseinline><defaultinline>{user profile}\\user\\template</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/template</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/template</caseinline><defaultinline>{потребителски профил}\\user\\template</defaultinline></switchinline>"
#. s3p3u
#: 01010300.xhp
@@ -1554,7 +1554,7 @@ msgctxt ""
"par_id3149343\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{user profile}/user/temp</caseinline><caseinline select=\"MAC\">{user profile}/user/temp</caseinline><defaultinline>{user profile}\\user\\temp</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{потребителски профил}/user/temp</caseinline><caseinline select=\"MAC\">{потребителски профил}/user/temp</caseinline><defaultinline>{потребителски профил}\\user\\temp</defaultinline></switchinline>"
#. A6rYi
#: 01010300.xhp
@@ -1608,7 +1608,7 @@ msgctxt ""
"par_id3149344\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{install}/share/classification/example.xml</caseinline><caseinline select=\"MAC\">{install}/share/classification/example.xml</caseinline><defaultinline>{install}\\share\\classification\\example.xml</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">{инсталация}/share/classification/example.xml</caseinline><caseinline select=\"MAC\">{инсталация}/share/classification/example.xml</caseinline><defaultinline>{инсталация}\\share\\classification\\example.xml</defaultinline></switchinline>"
#. XWkWA
#: 01010300.xhp
@@ -1626,7 +1626,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "<emph>Internal Paths</emph> shows the paths where predefined content for %PRODUCTNAME is installed. These paths cannot be edited in this dialog box."
-msgstr ""
+msgstr "<emph>Вътрешни пътища</emph> показва пътищата, където е инсталирано предварително зададено съдържание за %PRODUCTNAME. Тези пътища не могат да бъдат редактирани в този диалогов прозорец."
#. 2vzzF
#: 01010300.xhp
@@ -1635,7 +1635,7 @@ msgctxt ""
"par_id131608971415763\n"
"help.text"
msgid "The paths refer to subdirectories in <literal>{install}</literal><switchinline select=\"sys\"><caseinline select=\"WIN\">\\</caseinline><defaultinline>/</defaultinline></switchinline><literal>share</literal>. These subdirectories are read-only and contain content shown to all users. The location of the <literal>{install}</literal> directory is determined when %PRODUCTNAME is installed."
-msgstr ""
+msgstr "Пътищата се отнасят за поддиректории на <literal>{инсталация}</literal><switchinline select=\"sys\"><caseinline select=\"WIN\">\\</caseinline><defaultinline>/</defaultinline></switchinline><literal>share</literal>. Тези поддиректории са само за четене и съдържат материали, които са видими за всички потребители. Местоположението на директорията <literal>{инсталация}</literal> се определя по време на инсталирането на %PRODUCTNAME."
#. n5y6M
#: 01010301.xhp
@@ -3741,7 +3741,7 @@ msgctxt ""
"par_id3150110\n"
"help.text"
msgid "<menuitem>Edit - Copy</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+C</keycode>."
-msgstr ""
+msgstr "<menuitem>Редактиране - Копиране</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+C</keycode>."
#. kx5rB
#: 01010800.xhp
@@ -3768,7 +3768,7 @@ msgctxt ""
"par_id3156337\n"
"help.text"
msgid "<menuitem>Edit - Paste</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+V</keycode> pastes at the cursor position."
-msgstr ""
+msgstr "<menuitem>Редактиране - Поставяне</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+V</keycode> поставя на позицията на курсора."
#. MCFEo
#: 01010800.xhp
@@ -3813,7 +3813,7 @@ msgctxt ""
"par_idN10A1D\n"
"help.text"
msgid "<ahelp hid=\"20201\">Press <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+R</keycode> to restore or refresh the view of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"20201\">Натиснете <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+R</keycode>, за да възстановите или опресните изгледа на текущия документ.</ahelp>"
#. 9BPVM
#: 01010800.xhp
@@ -6146,23 +6146,23 @@ msgctxt ""
msgid "List"
msgstr "Списък"
-#. AcAJa
+#. sEbwG
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3144433\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the fonts for lists and numbering and all derived styles.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Задава шрифтовете за списъци и номерация и всички производни на тях стилове.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Specifies the font and font size for the <emph>List</emph> paragraph style, which is inherited by all derived paragraph styles.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\">Указва името и размера на шрифта за абзацния стил <emph>Списък</emph>, който се наследява от всички производни абзацни стилове.</ahelp>"
-#. KnLN9
+#. aQFY4
#: 01040300.xhp
msgctxt ""
"01040300.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><emph>Format - Numbering/Bullets</emph></link></caseinline><defaultinline><emph>Format - Numbering/Bullets</emph></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
-msgstr "Когато изберете <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Форматиране - Номерация и водачи\"><emph>Форматиране - Номерация и водачи</emph></link></caseinline><defaultinline><emph>Форматиране - Номерация и водачи</emph></defaultinline></switchinline>, за да форматирате абзаци с номера или водачи в текстов документ, програмата автоматично приписва тези абзацни стилове."
+msgid "When you choose <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><menuitem>Format - Bullets and Numbering</menuitem></link></caseinline><defaultinline><menuitem>Format - Bullets and Numbering</menuitem></defaultinline></switchinline> to format a paragraph with numbers or bullets in a text document, the program assigns these Paragraph Styles automatically."
+msgstr "Когато изберете <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><menuitem>Форматиране - Водачи и номерация</menuitem></link></caseinline><defaultinline><menuitem>Форматиране - Водачи и номерация</menuitem></defaultinline></switchinline>, за да форматирате абзаци с номера или водещи символи в текстов документ, програмата автоматично приписва тези абзацни стилове."
#. 3nSZ5
#: 01040300.xhp
@@ -6236,14 +6236,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Specifies print settings within a text or HTML document.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/PrintOptionsPage\">Задава настройките за печатане в текстов документ или документ на HTML.</ahelp>"
-#. m2BYE
+#. rwhVS
#: 01040400.xhp
msgctxt ""
"01040400.xhp\n"
"par_id3153542\n"
"help.text"
-msgid "The print settings defined on this tab page apply to all subsequent print jobs, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
-msgstr "Настройките за печат, зададени в този раздел, важат за всички следващи документи, докато не ги промените отново. Ако желаете да смените само настройките за текущия документ, използвайте диалоговия прозорец <menuitem>Файл - Печат</menuitem>."
+msgid "The print settings defined on this tab page apply to subsequent new documents, until you change the settings again. If you want to change the settings for the current print job only, use the <menuitem>File - Print</menuitem> dialog."
+msgstr "Настройките за печат, зададени в този раздел, важат за следващи нови документи, докато не ги промените отново. Ако желаете да смените само настройките за текущия документ, използвайте диалоговия прозорец <menuitem>Файл - Печат</menuitem>."
#. kHkS3
#: 01040400.xhp
@@ -6567,7 +6567,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table (Options)"
-msgstr ""
+msgstr "Таблица (Настройки)"
#. qKJfB
#: 01040500.xhp
@@ -6720,7 +6720,7 @@ msgctxt ""
"par_id3149481\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/opttablepage/numformatting\">Specifies that numbers entered into a text table cell are recognized and formatted as numbers.</ahelp> Table cells in %PRODUCTNAME Writer can recognize a number when it is represented in one of the number formats available in categories of Numbers, Percent, Currency, Date, Time, Scientific, Fraction and Boolean."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/opttablepage/numformatting\">Указва, че числата, въвеждани в клетки на текстова таблица, трябва да се разпознават и форматират като числа.</ahelp> Табличните клетки в %PRODUCTNAME Writer разпознават числата, когато са представени в някой от наличните числови формати в категориите „Число“, „Процент“, „Валута“, „Дата“, „Час“, „Експоненциален запис“, „Дроб“ и „Булева стойност“."
#. 4UzAW
#: 01040500.xhp
@@ -6891,7 +6891,7 @@ msgctxt ""
"hd_id3155938\n"
"help.text"
msgid "Insert cell"
-msgstr ""
+msgstr "Вмъкване на клетка"
#. Axafs
#: 01040500.xhp
@@ -8187,7 +8187,7 @@ msgctxt ""
"par_id581599002628645\n"
"help.text"
msgid "Editors and publishers often define a “standard” page as containing a specified number of characters or words. Mark this field to allow quick calculation of the number of these pages."
-msgstr ""
+msgstr "Редакторите и издателите често дефинират „стандартна“ страница, която съдържа указан брой знаци или думи. Отмятането на това поле позволява бързо изчисляване на броя такива страници."
#. eQjAd
#: 01040900.xhp
@@ -11148,7 +11148,7 @@ msgctxt ""
"par_id3153349\n"
"help.text"
msgid "To select multiple sheets, click on the sheet names on the bottom margin of the workspace while keeping the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key pressed."
-msgstr ""
+msgstr "За да изберете няколко листа, щракнете върху имената им в долния край на работната площ, задържайки клавиша <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> натиснат."
#. StkQC
#: 01060800.xhp
@@ -13524,7 +13524,7 @@ msgctxt ""
"bm_id881592499093945\n"
"help.text"
msgid "<bookmark_value>Microsoft lock files</bookmark_value><bookmark_value>lock files;Microsoft Office</bookmark_value><bookmark_value>lock files;%PRODUCTNAME</bookmark_value><bookmark_value>OLE objects;import and export</bookmark_value><bookmark_value>embedded objects;import and export</bookmark_value><bookmark_value>OLE objects;Microsoft Office</bookmark_value><bookmark_value>OLE objects;PDF</bookmark_value><bookmark_value>character highlighting;Microsoft Office export</bookmark_value><bookmark_value>character shading;Microsoft Office export</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Microsoft, заключващи файлове на</bookmark_value><bookmark_value>заключващи файлове;Microsoft Office</bookmark_value><bookmark_value>заключващи файлове;%PRODUCTNAME</bookmark_value><bookmark_value>OLE обекти;импортиране и експортиране</bookmark_value><bookmark_value>вградени обекти;импортиране и експортиране</bookmark_value><bookmark_value>OLE обекти;Microsoft Office</bookmark_value><bookmark_value>OLE обекти;PDF</bookmark_value><bookmark_value>осветяване на знаци;експортиране за Microsoft Office</bookmark_value><bookmark_value>оцветяване фона на знаци;експортиране за Microsoft Office</bookmark_value>"
#. HgnAh
#: 01130200.xhp
@@ -13641,7 +13641,7 @@ msgctxt ""
"par_id3150671\n"
"help.text"
msgid "<ahelp hid=\".\">Microsoft Office has two character attributes similar to $[officename] character highlighting. Use this control to select the attribute, <emph>highlighting</emph> or <emph>shading</emph>, that $[officename] should use when exporting $[officename] character highlighting to Microsoft Office file formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">В Microsoft Office има два знакови атрибута, подобни на осветяването на знаци в $[officename]. Използвайте тази настройка, за да изберете кой атрибут – <emph>осветяване</emph> (highlighting) или <emph>оцветяване на фона</emph> (shading) – да използва $[officename], когато експортира осветяване на знаци на $[officename] към файловите формати на Microsoft Office.</ahelp>"
#. DxMaG
#: 01130200.xhp
@@ -13650,7 +13650,7 @@ msgctxt ""
"par_id11611125644396\n"
"help.text"
msgid "Highlighting exports the closest match between a $[officename] highlighting color and one of the 16 Microsoft highlighting colors, using the Office character attribute that makes it easy for Office users to edit with the highlighting tool in Office applications. This is the default setting in $[officename] 5.0 to 6.4."
-msgstr ""
+msgstr "„Осветяване“ експортира най-близкото съответствие между цвят за осветяване на $[officename] и някой от 16-те цвята за осветяване на Microsoft, използвайки знаковия атрибут на Office, който позволява на потребителите на Office лесно да редактират с инструмента за осветяване в приложенията на Office. Това е подразбираната настройка в $[officename] от 5.0 до 6.4."
#. vmGuu
#: 01130200.xhp
@@ -13659,7 +13659,7 @@ msgctxt ""
"par_id971611126299924\n"
"help.text"
msgid "Shading exports all RGB colors to the other Office character attribute. This preserves color fidelity between $[officename] and Microsoft Office documents, but Office users must edit this character attribute with a tool that is not commonly used or easy to find in Office applications. This is the default setting since $[officename] 7.0."
-msgstr ""
+msgstr "„Оцветяване“ експортира всички цветове RGB към другия знаков атрибут на Office. Така се запазва цветовото съответствие между документите на $[officename] и на Microsoft Office, но потребителите на Office трябва да редактират този знаков атрибут с инструмент, който не е често използван или лесен за намиране в приложенията на Office. Това е подразбираната настройка от $[officename] 7.0 нататък."
#. mnCpY
#: 01130200.xhp
@@ -13668,7 +13668,7 @@ msgctxt ""
"par_id11611137020276\n"
"help.text"
msgid "The compatibility filter in the <emph>Character Highlighting Color</emph> dialog provides the Microsoft Office highlighting colors. Use those colors and choose <emph>Export as: Highlighting</emph> if you want both color fidelity and ease of editing for Office users."
-msgstr ""
+msgstr "Филтърът за съвместимост в диалога <emph>Цвят за осветяване на знаците</emph> показва цветовете за осветяване на Microsoft. Използвайте тези цветове и изберете <emph>Експортиране като: Осветяване</emph>, ако искате и цветово съответствие, и лесно редактиране за потребителите на Office."
#. hpDE5
#: 01130200.xhp
@@ -13704,7 +13704,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Languages (Options)"
-msgstr ""
+msgstr "Езици (Настройки)"
#. 7peEQ
#: 01140000.xhp
@@ -13884,7 +13884,7 @@ msgctxt ""
"par_id3145121\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Задава шаблоните за разпознаване на дати за текущия локал. При въвеждане в таблични клетки в Calc и Writer въведеното трябва да отговаря на тези шаблони, за да се разпознае като валидна дата.</ahelp>"
#. 6ECpC
#: 01140000.xhp
@@ -13893,7 +13893,7 @@ msgctxt ""
"par_id381606257267459\n"
"help.text"
msgid "If you type numbers and characters that correspond to the defined date acceptance patterns in a table cell, and then move the cursor outside of the cell, %PRODUCTNAME will automatically recognize and convert the input to a date, and format it according to the locale setting."
-msgstr ""
+msgstr "Ако въведете в таблична клетка числа и знаци, които съответстват на зададените шаблони за разпознаване на дати, и после преместите курсора извън клетката, %PRODUCTNAME автоматично ще разпознае въведеното, ще го преобразува в дата и ще го форматира според настройката на локала."
#. wU2Gq
#: 01140000.xhp
@@ -13902,7 +13902,7 @@ msgctxt ""
"par_id391606257292899\n"
"help.text"
msgid "The initial pattern(s) in <emph>Date acceptance patterns</emph> are determined by the locale (set in <emph>Locale setting</emph>), but you can modify these default patterns, and add more patterns. Use <keycode>;</keycode> to separate each pattern."
-msgstr ""
+msgstr "Началните шаблони в <emph>Шаблони за разпознаване на дати</emph> се определят от локала (зададен в <emph>Настройка за локал</emph>), но можете да променяте тези подразбирани шаблони и да добавяте още. Разделяйте шаблоните един от друг с <keycode>;</keycode>."
#. YREM6
#: 01140000.xhp
@@ -13911,7 +13911,7 @@ msgctxt ""
"par_id261606302453895\n"
"help.text"
msgid "Patterns can be composed according to the following rules:"
-msgstr ""
+msgstr "За съставянето на шаблони важат следните правила:"
#. bg257
#: 01140000.xhp
@@ -13920,7 +13920,7 @@ msgctxt ""
"par_id941606302524110\n"
"help.text"
msgid "A pattern must start with <emph>D</emph>, <emph>M</emph>, or <emph>Y</emph>, and include at least two items, with at least one separator between each one."
-msgstr ""
+msgstr "Шаблонът трябва да започва с <emph>D</emph>, <emph>M</emph> или <emph>Y</emph> и да включва поне два елемента с поне един разделител между тях."
#. qNewM
#: 01140000.xhp
@@ -13929,7 +13929,7 @@ msgctxt ""
"par_id961606302527780\n"
"help.text"
msgid "A pattern may also include all three, in any order."
-msgstr ""
+msgstr "Шаблонът може да включва и всичките три, в произволен ред."
#. WUra2
#: 01140000.xhp
@@ -13938,7 +13938,7 @@ msgctxt ""
"par_id3157939\n"
"help.text"
msgid "<emph>Y</emph> means year, <emph>M</emph> means month, and <emph>D</emph> means day, regardless of which locale is set. Each can only be used once in a pattern."
-msgstr ""
+msgstr "<emph>Y</emph> означава година, <emph>M</emph> – месец, а <emph>D</emph> – ден, независимо кой локал е зададен. Всяко може да се използва само по веднъж в шаблон."
#. ssLFh
#: 01140000.xhp
@@ -13947,7 +13947,7 @@ msgctxt ""
"par_id601606302514959\n"
"help.text"
msgid "<keycode>.</keycode> <keycode>-</keycode> <keycode>:</keycode> <keycode>/</keycode> <keycode>,</keycode> can be used as separators between and after <emph>D</emph>, <emph>M</emph>, and <emph>Y</emph>."
-msgstr ""
+msgstr "<keycode>.</keycode> <keycode>-</keycode> <keycode>:</keycode> <keycode>/</keycode> <keycode>,</keycode> могат да се използват като разделители между и след <emph>D</emph>, <emph>M</emph> и <emph>Y</emph>."
#. rGYfD
#: 01140000.xhp
@@ -13956,7 +13956,7 @@ msgctxt ""
"par_id621606303306587\n"
"help.text"
msgid "Any combination of separators can be used, and more than one separator can be used between <emph>D</emph>, <emph>M</emph>, and <emph>Y</emph>, but the input must match the separator pattern exactly for recognition."
-msgstr ""
+msgstr "Допустими са всякакви комбинации от разделители и може да се използват по няколко разделителя между <emph>D</emph>, <emph>M</emph> и <emph>Y</emph>, но за разпознаване въведеното трябва точно да съответства на шаблона."
#. Wyfmd
#: 01140000.xhp
@@ -13965,7 +13965,7 @@ msgctxt ""
"par_id621606303767851\n"
"help.text"
msgid "Patterns can combine different separators, and may include a trailing separator."
-msgstr ""
+msgstr "Шаблоните може да комбинират различни разделители и може да завършват с разделител."
#. 7GtCj
#: 01140000.xhp
@@ -13974,7 +13974,7 @@ msgctxt ""
"par_id151606303867002\n"
"help.text"
msgid "Examples of valid patterns are: <literal>D,Y ; Y-M ; M.D.Y ; D-M/Y ; M.D.</literal>"
-msgstr ""
+msgstr "Примери за валидни шаблони са: <literal>D,Y ; Y-M ; M.D.Y ; D-M/Y ; M.D.</literal>"
#. bceAZ
#: 01140000.xhp
@@ -13983,7 +13983,7 @@ msgctxt ""
"par_id181606257326394\n"
"help.text"
msgid "If you change the <emph>Locale setting</emph>, the date acceptance pattern will be reset to the new locale default, and any user-defined modifications or additions will be lost."
-msgstr ""
+msgstr "Ако промените <emph>Настройка за локал</emph>, шаблонът за разпознаване на дати ще бъде нулиран до подразбирания за новия локал и всички потребителски промени или допълнения ще бъдат изгубени."
#. Jvd5V
#: 01140000.xhp
@@ -13992,7 +13992,7 @@ msgctxt ""
"par_id821606257357323\n"
"help.text"
msgid "In addition to the explicit patterns defined in the edit box, input matching the <literal>Y-M-D</literal> pattern is implicitly recognized and converted automatically to a date. Input that starts from 1 to 31 is not interpreted with this implicit Y-M-D pattern. Since %PRODUCTNAME 3.5, this input is formatted as <literal>YYYY-MM-DD</literal> (ISO 8601)."
-msgstr ""
+msgstr "В допълнение към изрично зададените в текстовото поле шаблони, въвежданите данни, отговарящи на шаблона <literal>Y-M-D</literal>, по премълчаване се разпознават и преобразуват автоматично в дати. Входни данни, започващи с числата от 1 до 31, не се интерпретират с този неявен шаблон Y-M-D. От %PRODUCTNAME 3.5 нататък такива входни данни се форматират като <literal>YYYY-MM-DD</literal> (ISO 8601)."
#. 8FexU
#: 01140000.xhp
@@ -14001,7 +14001,7 @@ msgctxt ""
"par_id391606902516870\n"
"help.text"
msgid "For all patterns, two-digit year input is interpreted according to the setting in <link href=\"text/shared/optionen/01010600.html#jahreszahlen\" name=\"twodigityears\">Tools - Options - General - Year (Two Digits)</link>."
-msgstr ""
+msgstr "За всички шаблони двуцифрените години се интерпретират според настройката в <link href=\"text/shared/optionen/01010600.html#jahreszahlen\" name=\"twodigityears\">Инструменти - Настройки - Общи - Двуцифрени години</link>."
#. 9RYTi
#: 01140000.xhp
@@ -14118,7 +14118,7 @@ msgctxt ""
"hd_id3158407\n"
"help.text"
msgid "Complex text layout"
-msgstr ""
+msgstr "Сложни писмености"
#. wbSKU
#: 01140000.xhp
@@ -15603,7 +15603,7 @@ msgctxt ""
"hd_id1000010\n"
"help.text"
msgid "This feature is experimental and may produce errors or behave unexpectedly. To enable it anyway, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Advanced</menuitem> and select <emph>Enable experimental features</emph> checkbox."
-msgstr ""
+msgstr "Тази функционалност е експериментална и може да предизвика грешки или да се държи по неочакван начин. За да я включите все пак, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Разширени</menuitem> и отметнете <emph>Разрешаване на експериментални възможности</emph>."
#. EGraU
#: expertconfig.xhp
@@ -15920,6 +15920,15 @@ msgctxt ""
msgid "Java options"
msgstr "Настройки на Java"
+#. BYguG
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id181614855578590\n"
+"help.text"
+msgid "The current list of %PRODUCTNAME modules and resources that depends on Java is available <link href=\"https://wiki.documentfoundation.org/Faq/General/015\" name=\"Java wiki\">in the wiki</link>."
+msgstr "Текущият списък на модули и ресурси на %PRODUCTNAME, които зависят от Java, е достъпен <link href=\"https://wiki.documentfoundation.org/Faq/General/015\" name=\"Java wiki\">в уикито</link> (на английски)."
+
#. J8Yfv
#: java.xhp
msgctxt ""
@@ -15938,6 +15947,15 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optadvancedpage/javaenabled\">Allows you to run Java applications in %PRODUCTNAME.</ahelp> When a Java application attempts to access your hard drive, a prompt opens."
msgstr "<ahelp hid=\"cui/ui/optadvancedpage/javaenabled\">Позволява ви да стартирате приложения на Java в %PRODUCTNAME.</ahelp> Когато приложение на Java се опитват да осъществят достъп до твърдия диск, се показва прозорец за потвърждение."
+#. JLKwC
+#: java.xhp
+msgctxt ""
+"java.xhp\n"
+"par_id881614855922649\n"
+"help.text"
+msgid "Make sure to install a JRE compatible with the %PRODUCTNAME architecture: 64-bit JRE for 64-bit %PRODUCTNAME and 32-bit JRE for 32-bit %PRODUCTNAME."
+msgstr "Погрижете се да инсталирате обкръжение за Java, съвместимо с архитектурата на %PRODUCTNAME: 64-битово за 64-битов %PRODUCTNAME и 32-битово за 32-битов %PRODUCTNAME."
+
#. BBqDy
#: java.xhp
msgctxt ""
@@ -17385,7 +17403,7 @@ msgctxt ""
"hd_id1972106\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>-click required to follow hyperlinks"
-msgstr ""
+msgstr "Отварянето на хипервръзки изисква <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+щракване"
#. UoEVE
#: securityoptionsdialog.xhp
@@ -17394,7 +17412,7 @@ msgctxt ""
"par_id79042\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/ctrlclick\">If enabled, you must hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/ctrlclick\">Ако е отметнато, проследяването на хипервръзки става с щракване върху тях със задържан клавиш <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>. Ако не е отметнато, хипервръзките се отварят с обикновено щракване.</ahelp>"
#. Vw6Bz
#: securityoptionsdialog.xhp
diff --git a/source/bg/helpcontent2/source/text/simpress.po b/source/bg/helpcontent2/source/text/simpress.po
index e098c43411c..959de12412f 100644
--- a/source/bg/helpcontent2/source/text/simpress.po
+++ b/source/bg/helpcontent2/source/text/simpress.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-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-10-30 22:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1558972034.000000\n"
#. 2Va4w
@@ -1555,6 +1555,24 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr "<ahelp hid=\".\">С командите от това меню можете да форматирате оформлението и съдържанието на документа.</ahelp>"
+#. vmbqC
+#: main_format.xhp
+msgctxt ""
+"main_format.xhp\n"
+"hd_id451615217475502\n"
+"help.text"
+msgid "Styles"
+msgstr "Стилове"
+
+#. bpU6u
+#: main_format.xhp
+msgctxt ""
+"main_format.xhp\n"
+"par_id41615217505414\n"
+"help.text"
+msgid "Shows commands to edit, update, create, and manage styles."
+msgstr "Показва команди за редактиране, обновяване, създаване и управление на стилове."
+
#. CJJ22
#: main_format.xhp
msgctxt ""
@@ -1582,59 +1600,41 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Водачи и номерация</link>"
-#. TVJ8F
-#: main_format.xhp
-msgctxt ""
-"main_format.xhp\n"
-"hd_id3149499\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Object and Shape</link>"
-msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Обект и фигура</link>"
-
-#. XrW2e
+#. LnFgm
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3154510\n"
+"hd_id801615217485302\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Линия</link>"
+msgid "Table"
+msgstr "Таблица"
-#. wt8hF
+#. ZH8Cz
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3149021\n"
+"par_id61615217563797\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Област</link>"
+msgid "Shows commands to format, edit, and delete a table and its elements."
+msgstr "Показва команди за форматиране, редактиране и изтриване на таблица и елементите ѝ."
-#. VkWBC
+#. iZgpC
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3155961\n"
+"hd_id401615217493429\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Текст</link>"
+msgid "Image"
+msgstr "Изображение"
-#. nGRHD
+#. RNZjn
#: main_format.xhp
msgctxt ""
"main_format.xhp\n"
-"hd_id3156286\n"
+"par_id901615217674598\n"
"help.text"
-msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Дизайн на кадър</link>"
-
-#. MwAqP
-#: main_format.xhp
-msgctxt ""
-"main_format.xhp\n"
-"hd_id3163827\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Оформление на кадър</link>"
+msgid "Shows commands to crop, edit, and manage images."
+msgstr "Показва команди за подрязване, редактиране и управление на изображения."
#. F98f9
#: main_slide.xhp
@@ -1663,23 +1663,392 @@ msgctxt ""
msgid "This menu provides slide management and navigation commands."
msgstr "Това меню съдържа команди за управление на кадрите и навигация."
-#. qN8UF
+#. XaqGZ
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id611615489755701\n"
+"help.text"
+msgid "Duplicate Slide"
+msgstr "Дублиране на кадър"
+
+#. uJcAM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id71615490370664\n"
+"help.text"
+msgid "Creates a copy of the currently selected slide."
+msgstr "Създава копие на текущо избрания кадър."
+
+#. Jtf2o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id631615489785082\n"
+"help.text"
+msgid "Delete Slide"
+msgstr "Изтриване на кадър"
+
+#. FAJJ6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491193340\n"
+"help.text"
+msgid "Deletes the selected slide(s)."
+msgstr "Изтрива избрания кадър или кадри."
+
+#. iZWVK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id721615489786162\n"
+"help.text"
+msgid "Save Background Image"
+msgstr "Записване на фоново изображение"
+
+#. 8ydAh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id841615491449943\n"
+"help.text"
+msgid "If the slide has a background image, this option allows the user to save the corresponding background image file."
+msgstr "Ако кадърът има фоново изображение, тази команда позволява на потребителя да запише съответния файл с фоново изображение."
+
+#. Bhh37
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id161615489786339\n"
+"help.text"
+msgid "Set Background Image"
+msgstr "Задаване на фоново изображение"
+
+#. ekbFN
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id781615491497404\n"
+"help.text"
+msgid "Opens a File Picker to choose an image file to be set as the background of the current slide."
+msgstr "Отваря търсачка за файлове, с която да изберете файл с изображение за фона на текущия кадър."
+
+#. 92Pku
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id3145801\n"
+"hd_id921615489787123\n"
"help.text"
-msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Нов кадър</link>"
+msgid "New Master"
+msgstr "Нов образец"
-#. BkUdP
+#. kPJER
#: main_slide.xhp
msgctxt ""
"main_slide.xhp\n"
-"hd_id551556824896520\n"
+"par_id131615493790751\n"
"help.text"
-msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Свойства</link>"
+msgid "Creates a new Master Slide. This function is only available in <emph>Master View</emph>."
+msgstr "Създава нов кадър образец. Тази функция е достъпна само в <emph>изглед „Образец“</emph>."
+
+#. Vwom7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id491615494190854\n"
+"help.text"
+msgid "To enter the Master View, go to <emph>View - Master Slide</emph>. To exit the Master View, go to <emph>View - Normal</emph>."
+msgstr "За да влезете в изгледа „Образец“, изберете <emph>Изглед - Кадър образец</emph>. За да излезете от изгледа „Образец“, изберете <emph>Изглед - Обикновен</emph>."
+
+#. HQQHh
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id421615489787299\n"
+"help.text"
+msgid "Delete Master"
+msgstr "Изтриване на образец"
+
+#. EBxxM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id661615494028415\n"
+"help.text"
+msgid "Deletes the currently selected Master Slide. This function is only available in <emph>Master View</emph>"
+msgstr "Изтрива текущо избрания кадър образец. Тази функция е достъпна само в <emph>изглед „Образец“</emph>."
+
+#. hXNB7
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id841615489787538\n"
+"help.text"
+msgid "Master Background"
+msgstr "Фон от образеца"
+
+#. Kf3CF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id921615494351365\n"
+"help.text"
+msgid "This option allows to show or hide the background image defined in the master slide."
+msgstr "Тази команда позволява показване и скриване на фоновото изображение, зададено в кадъра образец."
+
+#. 9GSWp
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id621615489788132\n"
+"help.text"
+msgid "Master Objects"
+msgstr "Обекти от образеца"
+
+#. wjDcS
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id541615494644223\n"
+"help.text"
+msgid "This option allows to show or hide objects defined in the master slide."
+msgstr "Тази команда позволява показване и скриване на обектите, зададени в кадъра образец."
+
+#. BVTEY
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id51615489788356\n"
+"help.text"
+msgid "Master Elements"
+msgstr "Елементи на образеца"
+
+#. GaTGo
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id111615494747246\n"
+"help.text"
+msgid "Displays a dialog box where the following elements from the master slide can be enabled or disabled:"
+msgstr "Показва диалогов прозорец, в който могат да се разрешават и забраняват следните елементи от кадъра образец:"
+
+#. fvE2V
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id41615494861841\n"
+"help.text"
+msgid "Header"
+msgstr "Горен колонтитул"
+
+#. xcmiq
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615494881187\n"
+"help.text"
+msgid "Date/Time"
+msgstr "Дата/час"
+
+#. kfNdX
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id721615494891164\n"
+"help.text"
+msgid "Footer"
+msgstr "Долен колонтитул"
+
+#. LLGmD
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id401615494904662\n"
+"help.text"
+msgid "Slide Number"
+msgstr "Номер на кадър"
+
+#. sYXNP
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id851615489788586\n"
+"help.text"
+msgid "Show Slide"
+msgstr "Показване на кадър"
+
+#. 6hQEB
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495037553\n"
+"help.text"
+msgid "If a slide is hidden, this function makes it visible again."
+msgstr "Ако кадърът е скрит, тази команда го прави отново видим."
+
+#. FFLV4
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id201615489788874\n"
+"help.text"
+msgid "Hide Slide"
+msgstr "Скриване на кадър"
+
+#. jdiSK
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id961615495104794\n"
+"help.text"
+msgid "If a slide is visible, this function hides it."
+msgstr "Ако кадърът е видим, тази команда го скрива."
+
+#. nV23n
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id121615489789140\n"
+"help.text"
+msgid "Rename Slide"
+msgstr "Преименуване на кадър"
+
+#. GpHBE
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id901615495187958\n"
+"help.text"
+msgid "Opens a dialog box where a name can be set for the current slide."
+msgstr "Отваря диалогов прозорец, в който може да бъде зададено име за текущия кадър."
+
+#. D6GtH
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id551615489789347\n"
+"help.text"
+msgid "Jump to Last Edited Slide"
+msgstr "Към последния редактиран кадър"
+
+#. Snoa6
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id741615495336473\n"
+"help.text"
+msgid "Navigates to the last edited slide in the document."
+msgstr "Преминава към последния редактиран кадър в документа."
+
+#. FA3Ra
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id641615489789548\n"
+"help.text"
+msgid "Move"
+msgstr "Преместване"
+
+#. GBPvF
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id371615495363225\n"
+"help.text"
+msgid "Shows a list of move operations that can be applied to the current slide:"
+msgstr "Показва списък с операции за преместване, които могат да бъдат приложени върху текущия кадър:"
+
+#. TF4iz
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id711615495448201\n"
+"help.text"
+msgid "<emph>Slide to Start:</emph> Moves the current slide to the first position."
+msgstr "<emph>Кадър в началото:</emph> премества текущия кадър на първата позиция."
+
+#. uAt25
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id101615495452464\n"
+"help.text"
+msgid "<emph>Slide Up:</emph> Moves the current slide one position up in the presentation."
+msgstr "<emph>Кадър нагоре:</emph> премества текущия кадър с една позиция нагоре в презентацията."
+
+#. PdEMy
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id761615495456499\n"
+"help.text"
+msgid "<emph>Slide Down:</emph> Moves the current slide one position down in the presentation."
+msgstr "<emph>Кадър надолу:</emph> премества текущия кадър с една позиция надолу в презентацията."
+
+#. ESDFM
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id321615495459372\n"
+"help.text"
+msgid "<emph>Slide to End:</emph> Moves the current slide to the last position."
+msgstr "<emph>Кадър в края:</emph> премества текущия кадър на последната позиция."
+
+#. AsscG
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"hd_id301615489789755\n"
+"help.text"
+msgid "Navigate"
+msgstr "Навигация"
+
+#. 62VZA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558050553\n"
+"help.text"
+msgid "Shows a list of functions that can be used to navigate through the slides:"
+msgstr "Показва списък от функции за навигация между кадрите:"
+
+#. Mdi6Y
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id381615558169403\n"
+"help.text"
+msgid "<emph>To First Slide:</emph> Selects the first slide in the presentation."
+msgstr "<emph>Към първия кадър:</emph> избира първия кадър в презентацията."
+
+#. bYEak
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id131615558173437\n"
+"help.text"
+msgid "<emph>To Previous Slide:</emph> Navigates to the previous slide with respect to the currently selected slide."
+msgstr "<emph>Към предишния кадър:</emph> преминава към предишния кадър спрямо текущо избрания."
+
+#. YXD3o
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id941615558176178\n"
+"help.text"
+msgid "<emph>To Next Slide:</emph> Navigates to the next slide with respect to the currently selected slide."
+msgstr "<emph>Към следващия кадър:</emph> преминава към следващия кадър спрямо текущо избрания."
+
+#. dspAA
+#: main_slide.xhp
+msgctxt ""
+"main_slide.xhp\n"
+"par_id91615558179041\n"
+"help.text"
+msgid "<emph>To Last Slide:</emph> Selects the last slide in the presentation."
+msgstr "<emph>Към последния кадър:</emph> избира последния кадър в презентацията."
#. rCA2e
#: main_tools.xhp
@@ -1734,3 +2103,30 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Персонализиране</link>"
+
+#. oAFfK
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object and Shape (Impress)"
+msgstr "Обект и фигура (Impress)"
+
+#. RHunz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"hd_id231615117568430\n"
+"help.text"
+msgid "<link href=\"text/simpress/submenu_object_shape.xhp\" name=\"Object and Shape\">Object and Shape</link>"
+msgstr "<link href=\"text/simpress/submenu_object_shape.xhp\" name=\"Object and Shape\">Обект и фигура</link>"
+
+#. HZBpz
+#: submenu_object_shape.xhp
+msgctxt ""
+"submenu_object_shape.xhp\n"
+"par_id111615131426235\n"
+"help.text"
+msgid "Opens a submenu to edit the properties of the selected object or shape."
+msgstr "Отваря подменю за редактиране свойствата на избрания обект или фигура."
diff --git a/source/bg/helpcontent2/source/text/simpress/00.po b/source/bg/helpcontent2/source/text/simpress/00.po
index 914c3df3df0..acb55db8e1a 100644
--- a/source/bg/helpcontent2/source/text/simpress/00.po
+++ b/source/bg/helpcontent2/source/text/simpress/00.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-03 12:43+0100\n"
-"PO-Revision-Date: 2020-11-05 10:35+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress00/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress00/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1557753857.000000\n"
#. sqmGT
@@ -1420,14 +1420,14 @@ msgctxt ""
msgid "<variable id=\"frtiteh\">Choose <menuitem>Slide - Slide Properties</menuitem> and then click the <emph>Background</emph> tab </variable>"
msgstr "<variable id=\"frtiteh\">Изберете <menuitem>Кадър - Свойства на кадър</menuitem> и отворете раздела <emph>Фон</emph>.</variable>"
-#. y5oEX
+#. fuqnR
#: slide_menu.xhp
msgctxt ""
"slide_menu.xhp\n"
"par_id3155266\n"
"help.text"
-msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Slide Layout</menuitem> </variable>"
-msgstr "<variable id=\"adnsei\">Изберете <menuitem>Кадър - Оформление на кадър</menuitem>.</variable>"
+msgid "<variable id=\"adnsei\">Choose <menuitem>Slide - Layout</menuitem> </variable>"
+msgstr "<variable id=\"adnsei\">Изберете <menuitem>Кадър - Оформление</menuitem>.</variable>"
#. j5KeJ
#: slide_menu.xhp
diff --git a/source/bg/helpcontent2/source/text/simpress/01.po b/source/bg/helpcontent2/source/text/simpress/01.po
index 3b0622b916b..4fe5ede20ea 100644
--- a/source/bg/helpcontent2/source/text/simpress/01.po
+++ b/source/bg/helpcontent2/source/text/simpress/01.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: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2020-05-15 22:16+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress01/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1558857650.000000\n"
#. mu9aV
@@ -473,7 +473,7 @@ msgctxt ""
"par_id3156448\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F5</keycode> to open the Navigator when you are editing a presentation."
-msgstr ""
+msgstr "За да отворите навигатора, когато редактирате презентация, натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F5</keycode>."
#. GVMFK
#: 02110000.xhp
@@ -3220,14 +3220,14 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/04140000.xhp\" name=\"Summary Slide\">Summary Slide</link>"
msgstr "<link href=\"text/simpress/01/04140000.xhp\" name=\"Обобщаващ кадър\">Обобщаващ кадър</link>"
-#. zGg5h
+#. sYR47
#: 04140000.xhp
msgctxt ""
"04140000.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains a bulleted list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
-msgstr "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Създава нов кадър със списък с подточки, образувани от заглавията на кадрите след избрания кадър. Обобщаващият кадър се вмъква след последния кадър.</ahelp>"
+msgid "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Creates a new slide that contains an unordered list from the titles of the slides that follow the selected slide. The summary slide is inserted behind the last slide.</ahelp>"
+msgstr "<ahelp hid=\".uno:SummaryPage\" visibility=\"visible\">Създава нов кадър, който съдържа неподреден списък от заглавията на кадрите след избрания кадър. Обобщаващият кадър се вмъква след последния кадър.</ahelp>"
#. jvuJN
#: 04990000.xhp
@@ -4147,14 +4147,14 @@ msgctxt ""
msgid "Delete Column"
msgstr "Изтриване на колона"
-#. qrDGC
+#. Luyeg
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"tit\n"
"help.text"
-msgid "Slide Layout"
-msgstr "Оформление на кадър"
+msgid "Layout"
+msgstr "Оформление"
#. HJ8Jm
#: 05130000.xhp
@@ -4165,22 +4165,22 @@ msgctxt ""
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
msgstr "<bookmark_value>промяна; оформления на кадри</bookmark_value><bookmark_value>оформления на кадри</bookmark_value>"
-#. REe2P
+#. 4dvDP
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "Slide Layout"
-msgstr "Оформление на кадър"
+msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Layout\">Layout</link>"
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Layout\">Оформление</link>"
-#. dmgco
+#. dZ3GJ
#: 05130000.xhp
msgctxt ""
"05130000.xhp\n"
"par_id3149126\n"
"help.text"
-msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp> </variable>"
+msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp></variable>"
msgstr "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Отваря подменю с оформления на кадър.</ahelp></variable>"
#. CFkTY
@@ -7619,7 +7619,7 @@ msgctxt ""
"par_id3146965\n"
"help.text"
msgid "Press F3 to quickly enter a group and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F3</keycode> to leave the group."
-msgstr ""
+msgstr "За да влезете бързо в група, натиснете F3, а за да я напуснете – <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F3</keycode>."
#. faBGW
#: 13050300.xhp
@@ -9007,23 +9007,23 @@ msgctxt ""
msgid "Click <emph>Remove Client Authorization</emph>."
msgstr "Натиснете бутона <emph>Премахване пълномощията на клиента</emph>."
-#. 7oZpm
+#. hTau2
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"tit\n"
"help.text"
-msgid "Slide"
-msgstr "Кадър"
+msgid "Slide Properties"
+msgstr "Свойства на кадър"
-#. baLrD
+#. PGY7f
#: slide_properties.xhp
msgctxt ""
"slide_properties.xhp\n"
"hd_id3149379\n"
"help.text"
-msgid "Slide"
-msgstr "Кадър"
+msgid "Slide Properties"
+msgstr "Свойства на кадър"
#. YMWN6
#: slide_properties.xhp
diff --git a/source/bg/helpcontent2/source/text/simpress/04.po b/source/bg/helpcontent2/source/text/simpress/04.po
index c989c05d754..07341d0146b 100644
--- a/source/bg/helpcontent2/source/text/simpress/04.po
+++ b/source/bg/helpcontent2/source/text/simpress/04.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2020-04-18 12:21+0000\n"
+"PO-Revision-Date: 2021-03-07 20:55+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress04/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress04/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547404610.000000\n"
#. mYCYv
@@ -1679,7 +1679,7 @@ msgctxt ""
"hd_id3149138\n"
"help.text"
msgid "Navigating with the Keyboard in Slide Sorter and Slide Pane"
-msgstr ""
+msgstr "Управление с клавиатурата в „Сортиране на кадри“ и панела „Кадри“"
#. 8SbTN
#: 01020000.xhp
@@ -1751,7 +1751,7 @@ msgctxt ""
"par_ii3729361\n"
"help.text"
msgid "Move selected slides down one position in Slide Sorter list. If you select multiple slides, they are moved together with the last selected slide in the list."
-msgstr ""
+msgstr "Преместване на избраните кадри с една позиция надолу в списъка „Сортиране на кадри“. Ако изберете няколко кадъра, те се преместват заедно с последния избран кадър в списъка."
#. BzoeA
#: 01020000.xhp
@@ -1769,7 +1769,7 @@ msgctxt ""
"par_ii1797235\n"
"help.text"
msgid "Move selected slides up one position. If you select multiple slides, they are moved together with the first selected slide in the list."
-msgstr ""
+msgstr "Преместване на избраните кадри с една позиция нагоре. Ако изберете няколко кадъра, те се преместват заедно с последния избран кадър в списъка."
#. YbZLB
#: 01020000.xhp
@@ -1787,7 +1787,7 @@ msgctxt ""
"par_ii3151055\n"
"help.text"
msgid "Move selected slides to end of Slide Sorter list."
-msgstr ""
+msgstr "Преместване на избраните кадри в края на списъка „Сортиране на кадри“."
#. DJ9EV
#: 01020000.xhp
@@ -1805,7 +1805,7 @@ msgctxt ""
"par_ii3156825\n"
"help.text"
msgid "Move selected slides to start of Slide Sorter list."
-msgstr ""
+msgstr "Преместване на избраните кадри в началото на списъка „Сортиране на кадри“."
#. 9dpmN
#: 01020000.xhp
@@ -1823,7 +1823,7 @@ msgctxt ""
"par_id3157548\n"
"help.text"
msgid "Change to Normal Mode with the active slide when in <emph>Slide Sorter</emph>. Add a new slide when in <emph>Slide Pane</emph>."
-msgstr ""
+msgstr "Преминаване към режима „Обикновен“ с активния кадър, когато сте в изглед <emph>Сортиране на кадри</emph>. Добавя нов кадър, ако сте в <emph>панела Кадри</emph>."
#. uKr5Q
#: presenter.xhp
diff --git a/source/bg/helpcontent2/source/text/simpress/guide.po b/source/bg/helpcontent2/source/text/simpress/guide.po
index 367910a08b3..4fcea9d6ac8 100644
--- a/source/bg/helpcontent2/source/text/simpress/guide.po
+++ b/source/bg/helpcontent2/source/text/simpress/guide.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2020-10-02 22:35+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpressguide/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -932,7 +932,7 @@ msgctxt ""
"par_id3143233\n"
"help.text"
msgid "Choose <menuitem>View - Slide Sorter</menuitem>, select one or more slides, and then drag the slides to another location. To select multiple slides, hold down shift and click on the slides. To create a copy of a selected slide, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> while you drag. The mouse pointer changes to a plus sign. You can also drag a copy of a slide into another open $[officename] Impress document."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Сортиране на кадри</menuitem>, изберете един или повече кадри и ги плъзнете на друго място. За да изберете няколко кадъра, щракнете върху тях със задържан Shift. За да създадете копие на избран кадър, задръжте <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, докато плъзгате. Показалецът на мишката ще се превърне в знак плюс. Освен това можете да плъзнете копие на кадър в друг отворен документ на $[officename] Impress."
#. zszFb
#: arrange_slides.xhp
@@ -1148,7 +1148,7 @@ msgctxt ""
"par_id3150757\n"
"help.text"
msgid "To use a custom image for the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">slide</caseinline><defaultinline>page</defaultinline></switchinline> background, click the <emph>Import</emph> button. Locate the image and click <widget>Open</widget>. On returning to the <emph>Background</emph> tab, the imported image is in the <emph>Bitmap</emph> list."
-msgstr ""
+msgstr "За да използвате изображение по избор като фон на <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">кадъра</caseinline><defaultinline>страницата</defaultinline></switchinline>, натиснете бутона <emph>Импортиране</emph>. Намерете изображението и натиснете <widget>Отваряне</widget>. Когато се върнете в раздела <emph>Фон</emph>, импортираното изображение ще присъства в списъка <emph>Растерно изображение</emph>."
#. 24cCs
#: background.xhp
@@ -1319,7 +1319,7 @@ msgctxt ""
"par_id7954954\n"
"help.text"
msgid "If you are using a mouse with a scroll wheel, you can hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> and turn the wheel to change the zoom factor in all main modules of %PRODUCTNAME."
-msgstr ""
+msgstr "Ако използвате мишка с колелце, задръжте <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> и завъртете колелцето, за да промените мащаба на изгледа. Това важи за всички главни модули на %PRODUCTNAME."
#. 3DGwA
#: change_scale.xhp
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3146313\n"
"help.text"
msgid "In the place where you want to insert the text, choose <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><menuitem>Slide - Insert Slide from File</menuitem></caseinline> <defaultinline><menuitem>Page - Insert Page from File</menuitem></defaultinline></switchinline>."
-msgstr ""
+msgstr "На мястото, където искате да вмъкнете текста, изберете <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><menuitem>Кадър - Вмъкване на кадър от файл</menuitem></caseinline><defaultinline><menuitem>Страница - Вмъкване на страница от файл</menuitem></defaultinline></switchinline>."
#. NCRij
#: html_import.xhp
@@ -2516,7 +2516,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "Under <emph>Existing Slides</emph>, select the slides to add to your slide show, and click the <widget>>></widget> button. Hold down <keycode>Shift</keycode> to select a range of consecutive slides, or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> to select multiple individual slides."
-msgstr ""
+msgstr "В <emph>Съществуващи кадри</emph> изберете кадрите, които искате да добавите към прожекцията, и натиснете бутона <widget>>></widget>. Задръжте <keycode>Shift</keycode>, за да изберете диапазон от последователни кадри, или <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, за да изберете няколко отделни кадъра."
#. KyDj4
#: individual.xhp
@@ -2741,7 +2741,7 @@ msgctxt ""
"par_id3150212\n"
"help.text"
msgid "$[officename] Impress <emph>AutoLayouts</emph> use placeholders for slide titles, text, and objects. To select a placeholder, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>. To move to the next placeholder, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode> again."
-msgstr ""
+msgstr "В <emph>автооформленията</emph> на $[officename] Impress са използвани запазени места за заглавия на кадри, текст и обекти. За да изберете запазено място, натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>. За да преминете към следващото запазено място, отново натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>."
#. 7bBsE
#: keyboard.xhp
@@ -2750,7 +2750,7 @@ msgctxt ""
"par_id3166467\n"
"help.text"
msgid "If you press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode> after you reach the last placeholder in a slide, a new slide is inserted after the current slide. The new slide uses the same layout as the current slide."
-msgstr ""
+msgstr "Ако натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>, след като сте достигнали последното запазено място в кадъра, след него ще бъде вмъкнат нов кадър със същото оформление."
#. FinYA
#: keyboard.xhp
@@ -2761,13 +2761,31 @@ msgctxt ""
msgid "During a Slide Show"
msgstr "По време на прожекция"
-#. DaXcL
+#. aonrJ
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id941616435513490\n"
+"help.text"
+msgid "To start a Slide Show"
+msgstr ""
+
+#. 3vhZG
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150650\n"
"help.text"
-msgid "To start a slide show, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F2</keycode> or <keycode>F5</keycode>."
+msgid "To start a slide show from the begining, press <keycode>F5</keycode>."
+msgstr ""
+
+#. WaqYV
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id911616435506012\n"
+"help.text"
+msgid "To start a slide show from the current slide, press <keycode>Shift+F5</keycode>."
msgstr ""
#. K3r3c
@@ -2912,7 +2930,7 @@ msgctxt ""
"par_id3156060\n"
"help.text"
msgid "Use the arrow keys to navigate to the slide that you want to copy, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+C</keycode>."
-msgstr ""
+msgstr "Чрез клавишите със стрелки преминете към кадъра, който искате да копирате, после натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+C</keycode>."
#. FwWfn
#: keyboard.xhp
@@ -2921,7 +2939,7 @@ msgctxt ""
"par_id3148769\n"
"help.text"
msgid "Move to the slide where you want to paste the copied slide, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+V</keycode>."
-msgstr ""
+msgstr "Преминете към кадъра, където искате да вмъкнете копирания, след което натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+V</keycode>."
#. pCBar
#: keyboard.xhp
@@ -2939,7 +2957,7 @@ msgctxt ""
"par_id3155987\n"
"help.text"
msgid "Use the arrow keys to navigate to the slide that you want to move, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+X</keycode>."
-msgstr ""
+msgstr "Чрез клавишите със стрелки преминете към кадъра, който искате да преместите, после натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+X</keycode>."
#. CRsNL
#: keyboard.xhp
@@ -2948,7 +2966,7 @@ msgctxt ""
"par_id3147171\n"
"help.text"
msgid "Position the cursor where you want to move the slide, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+V</keycode>."
-msgstr ""
+msgstr "Преместете курсора там, където искате да преместите кадъра, след което натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+V</keycode>."
#. LUhAj
#: keyboard.xhp
@@ -4165,32 +4183,32 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Точки за съединяване\">Точки за съединяване</link>"
-#. GhgSf
+#. 3LhEr
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"tit\n"
"help.text"
-msgid "Copying Slides From Other Presentations"
-msgstr "Копиране на кадри от други презентации"
+msgid "Insert Slide from File"
+msgstr "Вмъкване на кадър от файл"
-#. BEQux
+#. 34kPB
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"bm_id3146971\n"
"help.text"
-msgid "<bookmark_value>copying; slides</bookmark_value><bookmark_value>slides; copying between documents</bookmark_value><bookmark_value>pages; copying</bookmark_value><bookmark_value>inserting; slides from files</bookmark_value><bookmark_value>pasting;slides from other presentations</bookmark_value>"
+msgid "<bookmark_value>copying; slides</bookmark_value> <bookmark_value>slides; copying between documents</bookmark_value> <bookmark_value>pages; copying</bookmark_value> <bookmark_value>inserting; slides from files</bookmark_value> <bookmark_value>pasting;slides from other presentations</bookmark_value>"
msgstr "<bookmark_value>копиране; кадри</bookmark_value><bookmark_value>кадри; копиране между документи</bookmark_value><bookmark_value>страници; копиране</bookmark_value><bookmark_value>вмъкване; кадри от файлове</bookmark_value><bookmark_value>поставяне;кадри от други презентации</bookmark_value>"
-#. paiDj
+#. BCJDc
#: page_copy.xhp
msgctxt ""
"page_copy.xhp\n"
"hd_id3146971\n"
"help.text"
-msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Copying Slides From Other Presentations</link></variable>"
-msgstr "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Копиране на кадри от други презентации\">Копиране на кадри от други презентации</link></variable>"
+msgid "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Insert Slide from File</link></variable>"
+msgstr "<variable id=\"page_copy\"><link href=\"text/simpress/guide/page_copy.xhp\" name=\"Copying Slides From Other Presentations\">Вмъкване на кадър от файл</link></variable>"
#. BNyAE
#: page_copy.xhp
@@ -4622,7 +4640,7 @@ msgctxt ""
"par_id221120161524594919\n"
"help.text"
msgid "If several images are in the same folder, you can select a group of photos using the <keycode>Shift</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> keys while clicking on their filenames."
-msgstr ""
+msgstr "Ако няколко снимки се намират в една и съща папка, можете да ги изберете наведнъж, като задържате <keycode>Shift</keycode> или <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, докато щраквате върху имената им."
#. z7nPC
#: photo_album.xhp
diff --git a/source/bg/helpcontent2/source/text/smath/01.po b/source/bg/helpcontent2/source/text/smath/01.po
index 5016dbea8be..f1a819a8d8d 100644
--- a/source/bg/helpcontent2/source/text/smath/01.po
+++ b/source/bg/helpcontent2/source/text/smath/01.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-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-11-02 14:56+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356902.000000\n"
@@ -206,14 +206,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03040000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr "<link href=\"text/smath/01/03040000.xhp\" name=\"Увеличаване\">Увеличаване</link>"
-#. oeXhg
+#. 4GCbo
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
"par_id3154490\n"
"help.text"
-msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">Увеличава екранния мащаб на формулата с 25%.</ahelp> Текущият мащаб се показва в лентата на състоянието. избрана част от възможностите за задаване на мащаба е достъпна чрез <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"контекстно меню\">контекстното меню</link>. Контекстното меню на работната област също съдържа команди за мащабиране."
+msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgstr "<ahelp hid=\".\">Увеличава екранния мащаб на формулата с 25%.</ahelp> Текущият мащаб се показва в лентата на състоянието. Няколко подбрани възможности за мащабиране са достъпни чрез <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link>. Контекстното меню на работната област също съдържа команди за мащабиране."
#. EyasV
#: 03050000.xhp
@@ -242,14 +242,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03050000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr "<link href=\"text/smath/01/03050000.xhp\" name=\"Умаляване\">Умаляване</link>"
-#. Q2ZAD
+#. yxSWi
#: 03050000.xhp
msgctxt ""
"03050000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\".\">Намалява екранния мащаб на формулите с 25%.</ahelp> Текущият мащаб се показва в лентата на състоянието. Избрана част от наличните възможности за мащабиране е достъпна чрез <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"контекстно меню\">контекстното меню</link>. Контекстното меню на работната област също съдържа команди за мащабиране."
+msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
+msgstr "<ahelp hid=\".\">Намалява екранния мащаб на формулите с 25%.</ahelp> Текущият мащаб се показва в лентата на състоянието. Няколко подбрани възможности за мащабиране са достъпни чрез <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link>. Контекстното меню на работната област също съдържа команди за мащабиране."
#. xSbDA
#: 03060000.xhp
@@ -278,14 +278,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03060000.xhp\" name=\"Show All\">Show All</link>"
msgstr "<link href=\"text/smath/01/03060000.xhp\" name=\"Show All\">Показване - всичко</link>"
-#. cMH92
+#. HGtyh
#: 03060000.xhp
msgctxt ""
"03060000.xhp\n"
"par_id3148571\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
-msgstr "<ahelp hid=\".\">Показва цялата формула с максималния възможен размер, при който се побират всички елементи. Формулата се увеличава или умалява така, че всичките й елементи да се покажат в работната област.</ahelp> Текущият коефициент на мащабиране се показва в лентата на състоянието. Избрана част от наличните възможности за мащабиране е достъпна чрез <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">контекстното меню</link>. Контекстното меню в работната област също съдържа команди за мащабиране. Командите и иконите за управление на мащаба са налице само в документи на Math, не и за вградени обекти на Math."
+msgid "<ahelp hid=\".\">Displays the entire formula in the maximum size possible so that all elements are included. The formula is reduced or enlarged so that all formula elements can be displayed in the work area.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands. The zoom commands and icons are only available in Math documents, not for embedded Math objects."
+msgstr "<ahelp hid=\".\">Показва цялата формула с максималния възможен размер, при който се побират всички елементи. Формулата се увеличава или умалява така, че всичките ѝ елементи да се покажат в работната област.</ahelp> Текущият мащаб се показва в лентата на състоянието. Няколко подбрани възможности за мащабиране са достъпни чрез <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link>. Контекстното меню на работната област също съдържа команди за мащабиране. Командите и иконите за управление на мащаба са налице само в документи на Math, не и за вградени обекти на Math."
#. WGriM
#: 03070000.xhp
@@ -458,14 +458,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090100.xhp\" name=\"Unary/Binary Operators\">Unary/Binary Operators</link>"
msgstr "<link href=\"text/smath/01/03090100.xhp\" name=\"Едноместни/двуместни операции\">Едноместни/двуместни операции</link>"
-#. JBpRR
+#. T3SNE
#: 03090100.xhp
msgctxt ""
"03090100.xhp\n"
"par_id3151241\n"
"help.text"
-msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
-msgstr "За изграждане на вашите формули в $[officename] Math разполагате със символи за различни едноместни и двуместни операции. Едноместни са операциите, влияещи върху едно запазено място. Двуместните операции свързват по две запазени места. Отделните операции се показват в долната част на панела „Елементи“. <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">Контекстното меню</link> на прозореца <emph>Команди</emph> също съдържа списък на тези и на още допълнителни операции. Ако ви е нужна операция, чийто символ отсъства в панела „Елементи“, използвайте контекстното меню или направо я напишете в прозореца <emph>Команди</emph>."
+msgid "You can choose various unary and binary operators to build your $[officename] Math formula. Unary refers to operators that affect one placeholder. Binary refers to operators that connect two placeholders. The lower area of the Elements pane displays the individual operators. The <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window also contains a list of these operators, as well as additional operators. If you need an operator that is not contained in the Elements pane, use the context menu or type it directly in the <emph>Commands</emph> window."
+msgstr "За изграждане на вашите формули в $[officename] Math разполагате със символи за различни едноместни и двуместни операции. Едноместни са операциите, влияещи върху едно запазено място. Двуместните операции свързват по две запазени места. Отделните операции се показват в долната част на панела „Елементи“. <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">Контекстното меню</link> на прозореца <emph>Команди</emph> също съдържа списък на тези и на още допълнителни операции. Ако ви е нужна операция, чийто символ отсъства в панела „Елементи“, използвайте контекстното меню или направо я напишете в прозореца <emph>Команди</emph>."
#. 86s5i
#: 03090100.xhp
@@ -1934,14 +1934,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090300.xhp\" name=\"Operators\">Operators</link>"
msgstr "<link href=\"text/smath/01/03090300.xhp\" name=\"Оператори\">Оператори</link>"
-#. 9GqEF
+#. fJzeE
#: 03090300.xhp
msgctxt ""
"03090300.xhp\n"
"par_id3149755\n"
"help.text"
-msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr "В <emph>$[officename] Math</emph> имате на разположение широк набор от оператори. Те са достъпни в долната част на панела „Елементи“. Операторите са изброени и в <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Всички оператори, отсъстващи в панела „Елементи“ и контекстното меню, трябва да бъдат въвеждани ръчно в прозореца <emph>Команди</emph>."
+msgid "You can choose among various operators to structure your <emph>$[officename] Math</emph> formula. All available operators appear in the lower part of the Elements pane. They are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All operators not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgstr "В <emph>$[officename] Math</emph> имате на разположение широк набор от оператори. Те са достъпни в долната част на панела „Елементи“. Операторите са изброени и в <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Всички оператори, отсъстващи в панела „Елементи“ и контекстното меню, трябва да бъдат въвеждани ръчно в прозореца <emph>Команди</emph>."
#. hDyQo
#: 03090300.xhp
@@ -2393,14 +2393,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090400.xhp\" name=\"Functions\">Functions</link>"
msgstr "<link href=\"text/smath/01/03090400.xhp\" name=\"Функции\">Функции</link>"
-#. ELsLc
+#. Q9Kv7
#: 03090400.xhp
msgctxt ""
"03090400.xhp\n"
"par_id3155374\n"
"help.text"
-msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr "Изберете функция в долната част на панела „Елементи“. Тези функции са изброени и в <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Функциите, отсъстващи в панела „Елементи“, трябва да се изписват ръчно в прозореца „Команди“."
+msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
+msgstr "Изберете функция в долната част на панела „Елементи“. Тези функции са изброени и в <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Функциите, отсъстващи в панела „Елементи“, трябва да се изписват ръчно в прозореца „Команди“."
#. 35FEB
#: 03090400.xhp
@@ -3140,14 +3140,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090500.xhp\" name=\"Brackets\">Brackets</link>"
msgstr "<link href=\"text/smath/01/03090500.xhp\" name=\"Скоби\">Скоби</link>"
-#. uHWGz
+#. EhUo8
#: 03090500.xhp
msgctxt ""
"03090500.xhp\n"
"par_id3147258\n"
"help.text"
-msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
-msgstr "При изграждането на формули в <emph>$[officename] Math</emph> имате на разположение различни видове скоби. Те са показани в долната част на панела „Елементи“. Видовете скоби са изброени и в <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"контекстно меню\">контекстното меню</link> на прозореца <emph>Команди</emph>. Скобите, които не са включени в панела „Елементи“ или контекстното меню, трябва да се въвеждат ръчно в прозореца <emph>Команди</emph>."
+msgid "You can choose among various bracket types to structure a <emph>$[officename] Math</emph> formula. Bracket types are displayed in the lower part of the Elements pane. These brackets are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All brackets that are not contained in the Elements pane or in the context menu can be typed manually in the <emph>Commands</emph> window."
+msgstr "При изграждането на формули в <emph>$[officename] Math</emph> имате на разположение различни видове скоби. Те са показани в долната част на панела „Елементи“. Видовете скоби са изброени и в <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Скобите, които не са включени в панела „Елементи“ или контекстното меню, трябва да се въвеждат ръчно в прозореца <emph>Команди</emph>."
#. zusZw
#: 03090500.xhp
@@ -3851,14 +3851,14 @@ msgctxt ""
msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">Attributes</link> </variable>"
msgstr "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">Атрибути</link></variable>"
-#. Q2dMs
+#. mFqph
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145802\n"
"help.text"
-msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
-msgstr "При изграждане на формули в <emph>%PRODUCTNAME Math</emph> можете да задавате различни атрибути. Някои от тях са показани в долната част на панела „Елементи“. Те са изброени и в <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Атрибутите, отсъстващи в панела „Елементи“ и в контекстното меню, трябва да се въвеждат ръчно в прозореца <emph>Команди</emph>."
+msgid "You can choose from various attributes for <emph>%PRODUCTNAME Math</emph> formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the <emph>Commands</emph> window."
+msgstr "При изграждане на формули в <emph>%PRODUCTNAME Math</emph> можете да задавате различни атрибути. Някои от тях са показани в долната част на панела „Елементи“. Те са изброени и в <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Атрибутите, отсъстващи в панела „Елементи“ и в контекстното меню, трябва да се въвеждат ръчно в прозореца <emph>Команди</emph>."
#. LGFaf
#: 03090600.xhp
@@ -4652,14 +4652,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090700.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/smath/01/03090700.xhp\" name=\"Формати\">Формати</link>"
-#. dcihp
+#. ZG9A4
#: 03090700.xhp
msgctxt ""
"03090700.xhp\n"
"par_id3147262\n"
"help.text"
-msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr "В $[officename] Math имате на разположение различни възможности за форматиране на формулите. Те са показани в долната част на панела „Елементи“. Същите формати са изброени и в <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>."
+msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
+msgstr "В $[officename] Math имате на разположение различни възможности за форматиране на формулите. Те са показани в долната част на панела „Елементи“. Същите формати са изброени и в <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>."
#. oGTCQ
#: 03090700.xhp
@@ -5255,14 +5255,14 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090800.xhp\" name=\"Set Operations\">Set Operations</link>"
msgstr "<link href=\"text/smath/01/03090800.xhp\" name=\"Операции с множества\">Операции с множества</link>"
-#. QzFc8
+#. X4op9
#: 03090800.xhp
msgctxt ""
"03090800.xhp\n"
"par_id3154641\n"
"help.text"
-msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
-msgstr "В <emph>$[officename] Math</emph> можете да включвате във формулите си различни означения, свързани с множества. Отделните операции са показани в долната част на панела „Елементи“. Същите са изброени и в <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Означенията, отсъстващи в панела „Елементи“, трябва да се въвеждат ръчно в прозореца „Команди“. Можете да вмъквате ръчно и други части от формула, независимо дали има символи за тях."
+msgid "Assign different set operators to the characters in your <emph>$[officename] Math</emph> formula. The individual operators are shown in the lower section of the Elements pane. Call the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> in the <emph>Commands</emph> window to see an identical list of the individual functions. Any operators not found in the Elements pane have to be entered directly in the Commands window. You can also directly insert other parts of the formula even if symbols already exist for them."
+msgstr "В <emph>$[officename] Math</emph> можете да включвате във формулите си различни означения, свързани с множества. Отделните операции са показани в долната част на панела „Елементи“. Същите са изброени и в <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">контекстното меню</link> на прозореца <emph>Команди</emph>. Означенията, отсъстващи в панела „Елементи“, трябва да се въвеждат директно в прозореца „Команди“. Можете да вмъквате директно и други части от формула, независимо дали има символи за тях."
#. CJVPF
#: 03090800.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter.po b/source/bg/helpcontent2/source/text/swriter.po
index 9874669a038..c11e356bece 100644
--- a/source/bg/helpcontent2/source/text/swriter.po
+++ b/source/bg/helpcontent2/source/text/swriter.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: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2020-11-21 15:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562356909.000000\n"
#. P7iNX
@@ -1060,14 +1060,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr "<ahelp hid=\".uno:FormatMenu\">С командите от това меню можете да форматирате оформлението и съдържанието на документа.</ahelp>"
-#. dWAnk
+#. zjGX9
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id551602974854459\n"
"help.text"
-msgid "Align"
-msgstr "Подравняване"
+msgid "Align Text"
+msgstr "Подравняване на текст"
#. 7FD3V
#: main0105.xhp
@@ -1078,41 +1078,41 @@ msgctxt ""
msgid "Opens a submenu where you can align text and objects."
msgstr "Отваря подменю, с което можете да подравнявате текст и обекти."
-#. 7iyia
+#. 5EJHh
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id951602975070826\n"
+"hd_id3147261\n"
"help.text"
-msgid "Lists"
-msgstr "Списъци"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Знак</link>"
-#. SkZuS
+#. y8Ux2
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"par_id461602975083850\n"
+"hd_id3147286\n"
"help.text"
-msgid "Opens a submenu where you can modify the structure of numbered and bulleted paragraphs."
-msgstr "Отваря подменю, с което можете да променяте структурата на номерирани абзаци и абзаци с водещи знаци."
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Абзац</link>"
-#. 5EJHh
+#. 7iyia
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147261\n"
+"hd_id951602975070826\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Знак</link>"
+msgid "Lists"
+msgstr "Списъци"
-#. y8Ux2
+#. MKjWR
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
-"hd_id3147286\n"
+"par_id461602975083850\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Абзац</link>"
+msgid "Opens a submenu where you can modify the formatting of list paragraphs."
+msgstr "Отваря подменю, с което можете да променяте форматирането на абзаци от списъци."
#. gYqLC
#: main0105.xhp
@@ -1132,14 +1132,14 @@ msgctxt ""
msgid "Title Page"
msgstr "Заглавна страница"
-#. DyKLQ
+#. crAFH
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"par_id471602976213270\n"
"help.text"
-msgid "Opens submenu where you can design a title page."
-msgstr "Отваря подменю, с което можете да конструирате заглавна страница."
+msgid "Opens a dialog where you can design a title page."
+msgstr "Отваря диалог, в който можете да конструирате заглавна страница."
#. QKypm
#: main0105.xhp
@@ -1168,14 +1168,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</link>"
msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Колони</link>"
-#. JThwL
+#. HtHdy
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id11602979335965\n"
"help.text"
-msgid "Watermark"
-msgstr "Воден знак"
+msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Watermark</link>"
+msgstr "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Воден знак</link>"
#. QSMBC
#: main0105.xhp
@@ -1195,24 +1195,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Image</link>"
msgstr "<link href=\"text/swriter/01/05060000.xhp\" name=\"Image\">Изображение</link>"
-#. fqUFz
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id881602977324204\n"
-"help.text"
-msgid "Text Box and Shape"
-msgstr "Текстово поле и фигура"
-
-#. 5XtDF
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"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 "Отваря подменю, с което можете да променяте позицията, фо̀рмата, запълването, атрибутите на текста и настройките на Fontwork за избраното текстово поле или фигура."
-
#. FUiBn
#: main0105.xhp
msgctxt ""
@@ -1283,7 +1265,7 @@ msgctxt ""
"hd_id691612907136111\n"
"help.text"
msgid "<link href=\"text/shared/02/18030000.xhp\" name=\"Automatic Spell Checking\">Automatic Spell Checking</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/18030000.xhp\" name=\"Automatic Spell Checking\">Автоматична проверка на правописа</link>"
#. qKqMR
#: main0106.xhp
@@ -1319,7 +1301,7 @@ msgctxt ""
"hd_id3145713\n"
"help.text"
msgid "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnotes\">Footnotes and Endnotes</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnotes\">Бележки под линия/в края</link>"
#. qFpLr
#: main0106.xhp
@@ -1328,7 +1310,7 @@ msgctxt ""
"hd_id501612910204859\n"
"help.text"
msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Address Book Source\">Address Book Source</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01110101.xhp\" name=\"Address Book Source\">Източник за адресния бележник</link>"
#. ASZh8
#: main0106.xhp
@@ -1436,7 +1418,7 @@ msgctxt ""
"par_id881605975490097\n"
"help.text"
msgid "<variable id=\"submenu\">Opens a submenu with the following command options:</variable>"
-msgstr ""
+msgstr "<variable id=\"submenu\">Отваря подменю със следните команди:</variable>"
#. dAYGb
#: main0110.xhp
@@ -1445,7 +1427,7 @@ msgctxt ""
"hd_id71605976065472\n"
"help.text"
msgid "Rows Above"
-msgstr ""
+msgstr "Редове отгоре"
#. ETuzB
#: main0110.xhp
@@ -1454,7 +1436,7 @@ msgctxt ""
"par_id811605976075887\n"
"help.text"
msgid "Insert a row above the row where the cursor is currently placed."
-msgstr ""
+msgstr "Вмъква ред над реда, в който се намира курсорът."
#. 3B4Ea
#: main0110.xhp
@@ -1463,7 +1445,7 @@ msgctxt ""
"hd_id621605976125265\n"
"help.text"
msgid "Rows Below"
-msgstr ""
+msgstr "Редове отдолу"
#. sZV4E
#: main0110.xhp
@@ -1472,7 +1454,7 @@ msgctxt ""
"par_id701605976138113\n"
"help.text"
msgid "Insert a row below the row where the cursor is currently placed."
-msgstr ""
+msgstr "Вмъква ред под реда, в който се намира курсорът."
#. zVM8o
#: main0110.xhp
@@ -1481,7 +1463,7 @@ msgctxt ""
"par_idN105E5\n"
"help.text"
msgid "<link href=\"text/swriter/01/05120400.xhp\" name=\"insertrows\">Rows</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05120400.xhp\" name=\"insertrows\">Редове</link>"
#. AN99u
#: main0110.xhp
@@ -1490,7 +1472,7 @@ msgctxt ""
"par_idN105E8\n"
"help.text"
msgid "Opens dialog box for inserting rows."
-msgstr ""
+msgstr "Отваря диалогов прозорец за вмъкване на редове."
#. FedsM
#: main0110.xhp
@@ -1499,7 +1481,7 @@ msgctxt ""
"hd_id841605976313559\n"
"help.text"
msgid "Columns Before"
-msgstr ""
+msgstr "Колони преди"
#. bkDEH
#: main0110.xhp
@@ -1508,7 +1490,7 @@ msgctxt ""
"par_id531605976347665\n"
"help.text"
msgid "Insert a column before the column where the cursor is currently placed."
-msgstr ""
+msgstr "Вмъква колона преди колоната, в която се намира курсорът."
#. UE3RA
#: main0110.xhp
@@ -1517,7 +1499,7 @@ msgctxt ""
"hd_id21605976318849\n"
"help.text"
msgid "Columns After"
-msgstr ""
+msgstr "Колони след"
#. A6B3G
#: main0110.xhp
@@ -1526,7 +1508,7 @@ msgctxt ""
"par_id731605976350615\n"
"help.text"
msgid "Insert a column before the column where the cursor is currently placed."
-msgstr ""
+msgstr "Вмъква колона преди колоната, в която се намира курсорът."
#. KepEk
#: main0110.xhp
@@ -1535,7 +1517,7 @@ msgctxt ""
"par_idN105CD\n"
"help.text"
msgid "<link href=\"text/swriter/01/05120400.xhp\" name=\"insertrows\">Columns</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05120400.xhp\" name=\"insertrows\">Колони</link>"
#. i3nKB
#: main0110.xhp
@@ -1544,7 +1526,7 @@ msgctxt ""
"par_idN105D0\n"
"help.text"
msgid "Opens dialog box for inserting columns."
-msgstr ""
+msgstr "Отваря диалогов прозорец за вмъкване на колони."
#. ttkBa
#: main0110.xhp
@@ -1697,7 +1679,7 @@ msgctxt ""
"par_idN105FB\n"
"help.text"
msgid "Size"
-msgstr ""
+msgstr "Размер"
#. C4FY8
#: main0110.xhp
@@ -1724,7 +1706,7 @@ msgctxt ""
"hd_id451605990864684\n"
"help.text"
msgid "Minimize Row Height"
-msgstr ""
+msgstr "Минимални височини на редове"
#. RWpv2
#: main0110.xhp
@@ -1733,7 +1715,7 @@ msgctxt ""
"par_id261605990897312\n"
"help.text"
msgid "Set the row height to the smallest possible for the content in each selected row."
-msgstr ""
+msgstr "Задава на всеки от избраните редове най-малката възможна за съдържанието му височина."
#. EF7XB
#: main0110.xhp
@@ -1760,7 +1742,7 @@ msgctxt ""
"par_idN106B5\n"
"help.text"
msgid "Column Width"
-msgstr ""
+msgstr "Ширина на колона"
#. cuCmA
#: main0110.xhp
@@ -1778,7 +1760,7 @@ msgctxt ""
"hd_id671605991381461\n"
"help.text"
msgid "Minimize Column Width"
-msgstr ""
+msgstr "Минимални ширини на колони"
#. gwGLW
#: main0110.xhp
@@ -1787,7 +1769,7 @@ msgctxt ""
"par_id581605991965966\n"
"help.text"
msgid "Set column width to the smallest possible for the content in each selected column."
-msgstr ""
+msgstr "Задава на всяка от избраните колони най-малката възможна за съдържанието ѝ височина."
#. Y4m4U
#: main0110.xhp
@@ -1832,7 +1814,7 @@ msgctxt ""
"hd_id371605978330177\n"
"help.text"
msgid "Protect Cells"
-msgstr ""
+msgstr "Защита на клетките"
#. GHXsD
#: main0110.xhp
@@ -1841,7 +1823,7 @@ msgctxt ""
"hd_id531605978352545\n"
"help.text"
msgid "Unprotect Cells"
-msgstr ""
+msgstr "Премахване на защитата на клетки"
#. 5CFq9
#: main0110.xhp
@@ -1850,7 +1832,7 @@ msgctxt ""
"par_idN105F7\n"
"help.text"
msgid "<link href=\"text/swriter/01/05150101.xhp\">AutoFormat Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05150101.xhp\">Стилове за автоформатиране</link>"
#. KRMHM
#: main0110.xhp
@@ -1877,7 +1859,7 @@ msgctxt ""
"hd_id931605978707761\n"
"help.text"
msgid "<link href=\"text/swriter/guide/number_date_conv.xhp\" name=\"numberrecognition\">Number Recognition</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/number_date_conv.xhp\" name=\"numberrecognition\">Разпознаване на числа</link>"
#. CW8ME
#: main0110.xhp
@@ -1886,7 +1868,7 @@ msgctxt ""
"par_id511605978897703\n"
"help.text"
msgid "Toggles the setting for automatically recognizing numbers or dates that you enter into a table cell, converting them from text to an appropriate number format."
-msgstr ""
+msgstr "Превключва автоматичното разпознаване на числа или дати, въведени в клетки от таблица, при което те се преобразуват от текст в подходящ числов формат."
#. kwKdS
#: main0110.xhp
@@ -1940,7 +1922,7 @@ msgctxt ""
"par_idN1092F\n"
"help.text"
msgid "Text Formula"
-msgstr ""
+msgstr "Текстова формула"
#. xLmxB
#: main0110.xhp
@@ -1967,7 +1949,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "<link href=\"text/swriter/01/05090000.xhp\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05090000.xhp\">Свойства</link>"
#. JcZa3
#: main0115.xhp
@@ -1976,7 +1958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Styles (menu)"
-msgstr ""
+msgstr "Стилове (меню)"
#. uvGcE
#: main0115.xhp
@@ -2048,7 +2030,7 @@ msgctxt ""
"hd_id111529881431158\n"
"help.text"
msgid "Update Selected Style"
-msgstr ""
+msgstr "Обновяване на избрания стил"
#. 5mGuj
#: main0115.xhp
@@ -2066,7 +2048,7 @@ msgctxt ""
"hd_id191529881446409\n"
"help.text"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Нов стил от избраното"
#. gYvit
#: main0115.xhp
@@ -2084,7 +2066,7 @@ msgctxt ""
"hd_id351529881470044\n"
"help.text"
msgid "<link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Load Styles from Template</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Зареждане на стилове от шаблон</link>"
#. gfThj
#: main0115.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/00.po b/source/bg/helpcontent2/source/text/swriter/00.po
index 11b6c7a32f5..7fbdee5b500 100644
--- a/source/bg/helpcontent2/source/text/swriter/00.po
+++ b/source/bg/helpcontent2/source/text/swriter/00.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-11-19 19:35+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-22 13:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter00/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter00/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -635,7 +635,7 @@ msgctxt ""
"par_id3149356\n"
"help.text"
msgid "<variable id=\"pagecount_field\">Choose <menuitem>Insert - Field - Page Count</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"pagecount_field\">Изберете <menuitem>Вмъкване - Поле - Брой страници</menuitem>.</variable>"
#. 6qzDS
#: 00000404.xhp
@@ -1481,7 +1481,7 @@ msgctxt ""
"par_idN10715\n"
"help.text"
msgid "Right-click a paragraph with style <literal>Text body</literal>. Choose <menuitem>Paragraph - Edit Style - Condition</menuitem> tab."
-msgstr ""
+msgstr "Щракнете с десния бутон на мишката върху абзац със стил <literal>Основен текст</literal>. Изберете раздела <menuitem>Абзац - Редактиране на стил - Условие</menuitem>."
#. 8fkUm
#: 00000405.xhp
@@ -1499,7 +1499,7 @@ msgctxt ""
"par_id221579830516951\n"
"help.text"
msgid "Choose <menuitem>Styles - Load Styles from Template</menuitem>"
-msgstr ""
+msgstr "Изберете <menuitem>Стилове - Зареждане на стилове от шаблон</menuitem>."
#. 26CFe
#: 00000405.xhp
@@ -1508,7 +1508,7 @@ msgctxt ""
"par_id655978063576\n"
"help.text"
msgid "In the Styles window, do a long click on the <emph>Styles action</emph> icon on the top right. Choose <menuitem>Load Styles from Template</menuitem> from the submenu."
-msgstr ""
+msgstr "В прозореца „Стилове“ щракнете и задръжте върху иконата <emph>Действия със стилове</emph> горе вдясно. Изберете <menuitem>Зареждане на стилове от шаблон</menuitem> от подменюто."
#. hcD58
#: 00000405.xhp
@@ -1564,32 +1564,50 @@ msgctxt ""
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 "Изберете <menuitem>Изглед - Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - изберете „Стилове за страници“ - отворете контекстното меню за избрания стил - <emph>Нов/Промяна</emph>."
-#. JW9yE
+#. 4fpCB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154470\n"
"help.text"
-msgid "Choose <menuitem>Format - Paragraph - Outline & Numbering</menuitem> tab."
-msgstr "Изберете раздела <menuitem>Форматиране - Абзац - План и номерация</menuitem>."
+msgid "Choose <menuitem>Format - Paragraph - Outline & List</menuitem> tab."
+msgstr ""
+
+#. q583F
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id231616224233651\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Paragraph - Outline & List</menuitem> tab."
+msgstr ""
+
+#. ExS89
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id41616224423602\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>Paragraph - Edit Style - Outline & List</menuitem> tab."
+msgstr ""
-#. qWCzG
+#. n5kFM
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154413\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Outline & Numbering</menuitem> tab (Paragraph Styles)."
-msgstr "Изберете раздела <menuitem>Стилове - Редактиране на стил - План и номерация</menuitem> (стилове за абзаци)."
+msgid "Choose <menuitem>Styles - Edit Style - Outline & List</menuitem> tab (Paragraph Styles)."
+msgstr ""
-#. 7GJUj
+#. oVPyS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - Outline & Numbering</menuitem> tab (Paragraph Styles)."
-msgstr "Изберете <menuitem>Изглед - Стилове -</menuitem> отворете контекстното меню <menuitem>Промяна/Нов - раздел План и номерация</menuitem> (за стилове на абзаци)."
+msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - List & Numbering</menuitem> tab (Paragraph Styles)."
+msgstr ""
#. Rp3Q3
#: 00000405.xhp
@@ -1706,7 +1724,7 @@ msgctxt ""
"par_id3153356\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> or <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) to open Styles deck."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> или <menuitem>Стилове - Управление на стиловете</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), за да отворите раздела „Стилове“."
#. JPQQP
#: 00000405.xhp
@@ -1715,7 +1733,7 @@ msgctxt ""
"par_id61610557667046\n"
"help.text"
msgid "Click on the Character Style icon at top of the deck, then select a character style."
-msgstr ""
+msgstr "Щракнете върху иконата „Знаков стил“ в горния край на раздела, после изберете знаков стил."
#. j5skL
#: 00000405.xhp
@@ -1724,7 +1742,7 @@ msgctxt ""
"par_id501610557723109\n"
"help.text"
msgid "Right-click to open context menu and choose <menuitem>Modify/New</menuitem>."
-msgstr ""
+msgstr "Щракнете с десния бутон, за да отворите контекстното меню, и изберете <menuitem>Промяна/Нов</menuitem>."
#. SrKCw
#: 00000405.xhp
@@ -1733,7 +1751,7 @@ msgctxt ""
"par_id61610556682785\n"
"help.text"
msgid "<image src=\"sw/res/sf01.png\" id=\"img_id301610556682785\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881610556682785\">Character Style Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"sw/res/sf01.png\" id=\"img_id301610556682785\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id881610556682785\">Икона за знаков стил</alt></image>"
#. jFYz7
#: 00000405.xhp
@@ -1742,7 +1760,7 @@ msgctxt ""
"par_id451610556682785\n"
"help.text"
msgid "Character Style icon"
-msgstr ""
+msgstr "Икона „Знаков стил“"
#. woQEB
#: 00000405.xhp
@@ -1760,7 +1778,7 @@ msgctxt ""
"par_id3156364\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - open context menu <menuitem>Modify/New</menuitem> (for List Styles)."
-msgstr ""
+msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - отворете контекстното меню <menuitem>Промяна/Нов</menuitem> (за стилове на списъци)."
#. GnSG7
#: 00000405.xhp
@@ -1769,7 +1787,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "<variable id=\"while_typing\">Choose <menuitem>Tools - AutoCorrect - While Typing</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"while_typing\">Изберете <menuitem>Инструменти - Автокорекция - При въвеждане</menuitem>.</variable>"
#. EBrtG
#: 00000405.xhp
@@ -2858,7 +2876,7 @@ msgctxt ""
"par_id941529884998705\n"
"help.text"
msgid "<variable id=\"ses\">Choose <emph>Styles - Edit Styles</emph></variable>."
-msgstr ""
+msgstr "<variable id=\"ses\">Изберете <emph>Стилове - Редактиране на стилове</emph></variable>."
#. fCjG9
#: stylesmenu.xhp
@@ -2867,7 +2885,7 @@ msgctxt ""
"par_id511529885005747\n"
"help.text"
msgid "<variable id=\"sus\">Choose <menuitem>Styles - Update Selected Style</menuitem> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+ Shift+F11</keycode></variable>."
-msgstr ""
+msgstr "<variable id=\"sus\">Изберете <menuitem>Стилове - Обновяване на избрания стил</menuitem> или <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+ Shift+F11</keycode></variable>."
#. JhWrU
#: stylesmenu.xhp
@@ -2876,7 +2894,7 @@ msgctxt ""
"par_id411529885010612\n"
"help.text"
msgid "<variable id=\"sns\">Choose <menuitem>Styles - New Style from Selection</menuitem> or <keycode>Shift+F11</keycode></variable>."
-msgstr ""
+msgstr "<variable id=\"sns\">Изберете <menuitem>Стилове - Нов стил от избраното</menuitem> или <keycode>Shift+F11</keycode></variable>."
#. esEJn
#: stylesmenu.xhp
@@ -2885,7 +2903,7 @@ msgctxt ""
"par_id221529885015598\n"
"help.text"
msgid "<variable id=\"sls\">Choose <menuitem>Styles - Load Styles from Template</menuitem></variable>."
-msgstr ""
+msgstr "<variable id=\"sls\">Изберете <menuitem>Стилове - Зареждане на стилове от шаблон</menuitem></variable>."
#. rjrJe
#: stylesmenu.xhp
@@ -2894,4 +2912,4 @@ msgctxt ""
"par_id391529885020996\n"
"help.text"
msgid "<variable id=\"sms\">Choose <emph>Styles - Manage Styles</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline></variable>."
-msgstr "<variable id=\"sms\">Изберете <emph>Стилове - Управление на стиловете</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline></variable>."
+msgstr "<variable id=\"sms\">Изберете <emph>Стилове - Управление на стиловете</emph> или <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline></variable>."
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index be0734b7318..513f7dfa893 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
"PO-Revision-Date: 2020-11-21 15:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/bg/>\n"
@@ -5381,14 +5381,14 @@ msgctxt ""
msgid "Name"
msgstr "Име"
-#. 3FwA8
+#. wsww3
#: 04040000.xhp
msgctxt ""
"04040000.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then press <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Въведете името на показалеца, който искате да създадете. После натиснете <emph>Вмъкване</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Type the name of the bookmark that you want to create. Then, click <emph>Insert</emph>.</ahelp>"
+msgstr ""
#. s7rfA
#: 04040000.xhp
@@ -12059,14 +12059,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromheadings\">Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromheadings\">Създава указателя, използвайки нивата от плана. В указателя ще се добавят абзаците, форматирани с някой от готовите заглавни стилове (Заглавие 1-10).</ahelp>"
-#. XavFH
+#. RfKn4
#: 04120211.xhp
msgctxt ""
"04120211.xhp\n"
"par_id1209200804373840\n"
"help.text"
-msgid "You can also assign the outline levels in the <link href=\"text/swriter/01/05030800.xhp\">Outline & Numbering</link> tab page of the Format - Paragraph dialog."
-msgstr "Можете да задавате нивата на плана и в раздела <link href=\"text/swriter/01/05030800.xhp\">План и номерация</link> на диалоговия прозорец Форматиране - Абзац."
+msgid "You can also assign outline levels to paragraphs in the <link href=\"text/swriter/01/05030800.xhp\">Outline & List</link> tab page of the Format - Paragraph dialog."
+msgstr ""
#. y5UNJ
#: 04120211.xhp
@@ -16083,32 +16083,32 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">Select the formatting style that you want to apply to the drop caps.</ahelp> To use the formatting style of the current paragraph, select [None]."
msgstr "<ahelp hid=\"modules/swriter/ui/dropcapspage/comboBOX_TEMPLATE\">Изберете стила на форматиране, който искате да приложите върху битите букви.</ahelp> За да използвате стила на текущия абзац, изберете [Няма]."
-#. 24MpG
+#. nWCDv
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"tit\n"
"help.text"
-msgid "Outline & Numbering"
-msgstr "План и номерация"
+msgid "Outline & List"
+msgstr ""
-#. muqGR
+#. Nprja
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3151173\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & Numbering</link>"
-msgstr "<link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">План и номерация</link>"
+msgid "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & List</link></variable>"
+msgstr ""
-#. Zue75
+#. x3BNB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3154100\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, numbering, or bullets from the paragraph. You can also select the style of numbering to use, and reset the numbering in a numbered list.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Добавя или премахва ниво от плана, номер или водач от абзаца. Можете също да изберете стила на номериране, както и да започнете номерирането отначало.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, list style, and line numbering from the paragraph or paragraph style. You can also restart or modify the start number for numbered lists and line numbering.</ahelp>"
+msgstr ""
#. qNyVD
#: 05030800.xhp
@@ -16164,22 +16164,22 @@ msgctxt ""
msgid "Numbering"
msgstr "Номерация"
-#. UmpGx
+#. fFAFo
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"hd_id3154188\n"
"help.text"
-msgid "Numbering Style"
-msgstr "Стил за номерация"
+msgid "List Style"
+msgstr ""
-#. WGB2B
+#. T2yMF
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> if you click the <emph>List Styles</emph> icon."
+msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">List Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) if you click the <emph>List Styles</emph> icon."
msgstr ""
#. MycJD
@@ -16200,23 +16200,23 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected numbering style.</ahelp> These properties will apply to all paragraphs formatted with the given numbering style."
msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Редактиране свойствата на избрания стил за номерация.</ahelp> Тези свойства ще важат за всички абзаци, форматирани с дадения стил за номерация."
-#. dXFVa
+#. dxBEA
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3149195\n"
"help.text"
-msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering...</emph> to edit the outline level and numbering style."
-msgstr "Този бутон е недостъпен, когато е приложена номерация на главите. Изберете <emph>Инструменти - Номериране на глави...</emph>, за да редактирате нивото в плана и стила на номерацията."
+msgid "This button is disabled when Chapter Numbering is applied. Choose <emph>Tools - Chapter Numbering</emph> to edit the outline level and numbering format."
+msgstr ""
-#. GR3YW
+#. zBagB
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"par_id3151117\n"
"help.text"
-msgid "Outline level and Numbering Style are independent of each other. Use <emph>Tools - Chapter Numbering...</emph> to assign numbering styles to paragraph styles."
-msgstr "Нивото в плана и стила за номерация са независими помежду си. Използвайте <emph>Инструменти - Номериране на глави...</emph>, за да зададете стилове за номериране на абзацни стилове."
+msgid "Outline level and List style are independent of each other. Use <emph>Tools - Chapter Numbering</emph> to assign a numbering format to paragraph styles used as headings in a document outline structure."
+msgstr ""
#. 3KS2Y
#: 05030800.xhp
@@ -22563,13 +22563,22 @@ msgctxt ""
msgid "Here you can create a List Style. The List Styles are organized in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window."
msgstr ""
-#. FZ2HA
+#. hVmyj
+#: 05130004.xhp
+msgctxt ""
+"05130004.xhp\n"
+"par_id317365356036\n"
+"help.text"
+msgid "When a List Style is created, a name is assigned to the style. The list style can be applied to paragraphs or assigned to a paragraph style in the Apply List Style section of the <link href=\"text/swriter/01/05030800.xhp\" name=\"ApplyListStyle\">Outline & List</link> tab."
+msgstr ""
+
+#. MU724
#: 05130004.xhp
msgctxt ""
"05130004.xhp\n"
"par_id3151390\n"
"help.text"
-msgid "When a List Style is created, a name is assigned to the style. Ordered lists use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>, and can be created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the icons of the <link href=\"text/swriter/main0206.xhp\" name=\"object bar\">object bar</link>."
+msgid "Ordered lists and unordered lists created in the <link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/bullets\">Bullets and Numbering</link> dialog or with the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> and <link href=\"text/shared/02/06120000.xhp\" name=\"Toggle Unordered List\">Toggle Unordered List</link> icons of the <link href=\"text/swriter/main0202.xhp\" name=\"object bar\">Formatting</link> bar use <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"direct formatting\">direct formatting</link>. They are not list styles."
msgstr ""
#. UgisA
@@ -24606,50 +24615,41 @@ msgctxt ""
msgid "Chapter Numbering"
msgstr "Номерация на глави"
-#. 483kg
+#. EWVsz
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3154561\n"
"help.text"
-msgid "Chapter Numbering"
-msgstr "Номерация на глави"
+msgid "<variable id=\"ChapNumh1\"><link href=\"text/swriter/01/06060000.xhp\">Chapter Numbering</link></variable>"
+msgstr ""
-#. XxAe3
+#. bAdVd
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3145246\n"
"help.text"
-msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the number format and the hierarchy for chapter numbering in the current document.</ahelp></variable>"
-msgstr "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Определя формата на номерата и йерархията за номериране на глави в текущия документ.</ahelp></variable>"
+msgid "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Specifies the numbering scheme and outline format for chapter numbering in the current document.</ahelp></variable>"
+msgstr ""
-#. FqzZs
+#. PKJax
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150934\n"
"help.text"
-msgid "Chapter numbering is linked to paragraph styles. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding chapter and outline number levels (1-10). If you want, you can assign different paragraph styles to the outline number level."
-msgstr "Номерацията на главите е свързана с абзацните стилове. По подразбиране на съответните нива от плана на документа (1-10) са приписани абзацните стилове от \"Заглавие 1\" до \"Заглавие 10\". Ако желаете, можете да припишете на нивата от плана други абзацни стилове."
+msgid "Chapter numbering is achieved by assigning paragraph styles to outline levels, and a numbering scheme for each outline level. By default, the \"Heading\" paragraph styles (1-10) are assigned to the corresponding outline levels (1-10). You can use the dialog to assign a different paragraph style to an outline level."
+msgstr ""
-#. uuEEQ
+#. DpAKZ
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id8237250\n"
"help.text"
-msgid "If you want numbered headings, use the <emph>Tools - Chapter Numbering</emph> menu command to assign numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Ако желаете номерирани заглавия, използвайте командата <emph>Инструменти - Номерация на глави</emph>, за да зададете номериране за стила на абзаца. Не използвайте бутона „Номериране“ от лентата с инструменти „Форматиране“."
-
-#. GBEmb
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3147567\n"
-"help.text"
-msgid "To highlight the screen display of chapter and outline numbers, choose <emph>View - Field Shadings</emph>."
-msgstr "За се откроят на екрана номерата на главите и другите нива от плана, изберете <emph>Изглед - Фонове на полета</emph>."
+msgid "<variable id=\"chapter_numbering_tip\">If you want numbered headings, choose <menuitem>Tools - </menuitem><link name=\"chapternumbering\" href=\"text/swriter/01/06060000.xhp#ChapNumh1\"><menuitem>Chapter Numbering</menuitem></link>. This command opens a dialog where numbering schemes can be assigned to paragraph styles used for headings. Do not use the <link href=\"text/swriter/02/02110000.xhp\" name=\"Toggle Ordered List\">Toggle Ordered List</link> icon on the <link href=\"text/swriter/main0202.xhp\" name=\"FormattingBar\">Formatting Bar</link> or the <menuitem>Format - </menuitem><link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><menuitem>Bullets and Numbering</menuitem></link> dialog.</variable>"
+msgstr ""
#. DFbiG
#: 06060000.xhp
@@ -24660,23 +24660,23 @@ msgctxt ""
msgid "Load/Save"
msgstr "Зареждане/записване"
-#. YUER3
+#. 4jFGn
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3147512\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to all text documents.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Записва или зарежда формат за номериране на глави. Записаните формати за номериране на глави са достъпни във всички текстови документи.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Saves or loads a chapter numbering format. A saved chapter numbering format is available to load into other text documents.</ahelp>"
+msgstr ""
-#. Eoxwy
+#. DkYUj
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150979\n"
"help.text"
-msgid "The <emph>Load/Save</emph> button is only available for chapter numbering. For numbered or bulleted list styles, modify the numbering styles of the paragraphs."
-msgstr "Бутонът <emph>Зареждане/записване</emph> е наличен само при номериране на глави. При стиловете за списъци с номера или водачи променяйте стила за номериране на съответните абзаци."
+msgid "The <widget>Load/Save</widget> button is only available for chapter numbering. Use List styles to save formatting for ordered or unordered lists."
+msgstr ""
#. EV2DT
#: 06060000.xhp
@@ -24687,14 +24687,14 @@ msgctxt ""
msgid "Untitled 1 - 9"
msgstr "Неозаглавено 1 - 9"
-#. tbyhC
+#. GEBee
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3150350\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select the predefined numbering style that you want to assign to the selected outline level.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Изберете готовия стил за номериране, който желаете да припишете на избраното ниво от плана.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Select a predefined numbering format.</ahelp> Save your own predefined numbering formats using <emph>Save As</emph>."
+msgstr ""
#. NoHGV
#: 06060000.xhp
@@ -24705,32 +24705,14 @@ msgctxt ""
msgid "Save As"
msgstr "Съхраняване като"
-#. LsqXh
+#. bwJgP
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"par_id3155892\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current settings for the selected chapter and outline level. You can then load these settings from another document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Отваря диалогов прозорец, в който можете да запишете текущите настройки за избраното ниво от плана. След това можете да заредите тези настройки от друг документ.</ahelp>"
-
-#. G6SB9
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"hd_id3149689\n"
-"help.text"
-msgid "Save As"
-msgstr "Съхраняване като"
-
-#. Uq3CL
-#: 06060000.xhp
-msgctxt ""
-"06060000.xhp\n"
-"par_id3154200\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/numberingnamedialog/form\">Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/numberingnamedialog/form\">Щракнете върху стил за номериране в списъка, после въведете име за стила. Числата съответстват на нивото от плана, на което се приписват стиловете.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Opens a dialog where you can save the current numbering and position settings for all levels. Saved settings are available to load into other documents.</ahelp>"
+msgstr ""
#. G9Fz2
#: 06060100.xhp
@@ -24768,14 +24750,14 @@ msgctxt ""
msgid "Level"
msgstr "Ниво"
-#. EBZSv
+#. kFsmA
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3150018\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the chapter and outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Щракнете върху нивото от плана, което желаете да промените, после задайте настройките за номериране за това ниво.</ahelp> За да приложите настройките за номериране – с изключение на абзацния стил – върху всички нива, изберете „1-10“."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Click the outline level that you want to modify, and then specify the numbering options for the level.</ahelp> To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"."
+msgstr ""
#. s4LDs
#: 06060100.xhp
@@ -24804,14 +24786,14 @@ msgctxt ""
msgid "Paragraph Style"
msgstr "Стил за абзаци"
-#. EXNSB
+#. KQMUB
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3153722\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected chapter and outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Изберете абзацния стил, който желаете да припишете на избраното ниво от плана.</ahelp> Ако изберете „Няма“, избраното ниво от плана няма да бъде дефинирано."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Select the paragraph style that you want to assign to the selected outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
+msgstr ""
#. 2Ko3X
#: 06060100.xhp
@@ -24822,14 +24804,14 @@ msgctxt ""
msgid "Number"
msgstr "Номер"
-#. sayxC
+#. Ve6Gs
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3156319\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering style that you want to apply to the selected outline level.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Изберете стила на номериране, който желаете да приложите върху избраното ниво от плана.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering scheme that you want to apply to the selected outline level.</ahelp>"
+msgstr ""
#. uCj2F
#: 06060100.xhp
@@ -24849,6 +24831,24 @@ msgctxt ""
msgid "<emph>Description</emph>"
msgstr "<emph>Описание</emph>"
+#. AoxBN
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3155899\n"
+"help.text"
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
+
+#. rDEQw
+#: 06060100.xhp
+msgctxt ""
+"06060100.xhp\n"
+"par_id3154191\n"
+"help.text"
+msgid "Arabic numerals"
+msgstr "Арабски цифри"
+
#. aMCaW
#: 06060100.xhp
msgctxt ""
@@ -24921,24 +24921,6 @@ msgctxt ""
msgid "Roman numerals (lower)"
msgstr "Римски цифри (малки)"
-#. AoxBN
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3155899\n"
-"help.text"
-msgid "1, 2, 3, ..."
-msgstr "1, 2, 3, ..."
-
-#. rDEQw
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154191\n"
-"help.text"
-msgid "Arabic numerals"
-msgstr "Арабски цифри"
-
#. cihkt
#: 06060100.xhp
msgctxt ""
@@ -25002,14 +24984,14 @@ msgctxt ""
msgid "Character Style"
msgstr "Знаков стил"
-#. xjBZC
+#. h5uaa
#: 06060100.xhp
msgctxt ""
"06060100.xhp\n"
"par_id3147224\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the format of the numbering character.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Изберете формата на знака за номериране.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the character style of the numbering character.</ahelp>"
+msgstr ""
#. bkGnf
#: 06060100.xhp
@@ -26613,14 +26595,14 @@ msgctxt ""
msgid "Line Numbering"
msgstr "Номерация на редовете"
-#. ca98d
+#. ZDVZ9
#: 06180000.xhp
msgctxt ""
"06180000.xhp\n"
"par_id3150249\n"
"help.text"
-msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <emph>Format - Paragraph</emph>, click the <emph>Numbering </emph>tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
-msgstr "<variable id=\"zeinum\">Прибавя, изтрива и форматира номера на редове в текущия документ. За да изключите абзац от номерирането на редовете, щракнете в абзаца, изберете <emph>Форматиране - Абзац</emph>, отворете раздела <emph>Номериране</emph> и изтрийте отметката от полето <emph>Включване на този абзац в номерирането на редовете</emph>.</variable> От номерирането на редовете могат да се изключват и стилове за абзаци."
+msgid "<variable id=\"zeinum\">Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose <menuitem>Format - Paragraph</menuitem>, click the <emph>Outline & List</emph> tab, and then clear the <emph>Include this paragraph in line numbering</emph> check box.</variable> You can also exclude a paragraph style from line numbering."
+msgstr ""
#. GcdFF
#: 06180000.xhp
@@ -27090,50 +27072,32 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliography Entry</link>"
msgstr "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Библиографски запис</link>"
-#. 4qVPZ
+#. YwkE4
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"tit\n"
"help.text"
-msgid "Object"
-msgstr "Обект"
+msgid "Text Box and Shape"
+msgstr ""
-#. 2vkco
+#. 5XTkz
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/swriter/01/format_object.xhp\">Object</link>"
-msgstr "<link href=\"text/swriter/01/format_object.xhp\">Обект</link>"
+msgid "<link href=\"text/swriter/01/format_object.xhp\">Text Box and Shape</link>"
+msgstr ""
-#. ev5DK
+#. RfLw2
#: format_object.xhp
msgctxt ""
"format_object.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">Отваря подменю за редактиране свойствата на избрания обект.</ahelp>"
-
-#. QNeGm
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"hd_id1863460\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Text Attributes</link>"
-msgstr "<link href=\"text/shared/01/05990000.xhp\">Атрибути на текста</link>"
-
-#. vqJQ9
-#: format_object.xhp
-msgctxt ""
-"format_object.xhp\n"
-"par_id3542588\n"
-"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "Задава оформлението и закотвянето на текста в избрания графичен или текстов обект."
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected textbox or shape.</ahelp>"
+msgstr ""
#. UWnvc
#: format_object.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/02.po b/source/bg/helpcontent2/source/text/swriter/02.po
index f774908cb04..b9cb85ad1fb 100644
--- a/source/bg/helpcontent2/source/text/swriter/02.po
+++ b/source/bg/helpcontent2/source/text/swriter/02.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-10-08 08:35+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter02/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -16,23 +16,23 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547852096.000000\n"
-#. SGjBV
+#. sqxGb
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering on/off"
-msgstr "Номера - вкл./изкл."
+msgid "Toggle Ordered List"
+msgstr ""
-#. ACieD
+#. z8hCm
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150220\n"
"help.text"
-msgid "<link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Numbering On/Off</link>"
-msgstr "<link href=\"text/swriter/02/02110000.xhp\" name=\"Номера - вкл./изкл.\">Номера - вкл./изкл.</link>"
+msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\" name=\"Numbering on/off\">Toggle Ordered List</link></variable>"
+msgstr ""
#. 7QYre
#: 02110000.xhp
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\">Web Layout</link>."
msgstr "Някои от настройките за водачи и номерация не са достъпни при работа в режима <link href=\"text/swriter/01/03120000.xhp\" name=\"Оформление за WWW\">Оформление за WWW</link>."
-#. dARXh
+#. dwn77
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3150502\n"
"help.text"
-msgid "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150508\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150508\">Икона</alt></image>"
+msgid "<image id=\"img_id3150508\" src=\"cmd/lc_defaultnumbering.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150508\">Toggle Ordered List Icon</alt></image>"
+msgstr ""
-#. Xfqcn
+#. yYfzC
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Numbering On/Off"
-msgstr "Номера - вкл./изкл."
+msgid "Toggle Ordered List"
+msgstr ""
#. fVWig
#: 02110000.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Link Frames"
-msgstr ""
+msgstr "Свързване на рамки"
#. YvD8B
#: 03210000.xhp
@@ -95,7 +95,7 @@ msgctxt ""
"hd_id3148869\n"
"help.text"
msgid "<link href=\"text/swriter/02/03210000.xhp\" name=\"Link\">Link Frames</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/02/03210000.xhp\" name=\"Link\">Свързване на рамки</link>"
#. HhxBu
#: 03210000.xhp
@@ -113,7 +113,7 @@ msgctxt ""
"par_id721613395973296\n"
"help.text"
msgid "Choose <menuitem>Format - Frame and Object - Link Frames</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Рамка и обект - Свързване на рамки</menuitem>."
#. VTeFM
#: 03210000.xhp
@@ -122,7 +122,7 @@ msgctxt ""
"par_id531613396047070\n"
"help.text"
msgid "On the <emph>Format</emph> bar, click the <emph>Link Frames</emph> icon."
-msgstr ""
+msgstr "В лентата <emph>Форматиране</emph> щракнете върху иконата <emph>Свързване на рамки</emph>."
#. BA5Cn
#: 03210000.xhp
@@ -473,7 +473,7 @@ msgctxt ""
"par_id3154504\n"
"help.text"
msgid "%PRODUCTNAME recognizes the cell range for the sum function as long as the cells are filled with numbers. Prior to entering the data, you must choose <menuitem>Table - Number Recognition</menuitem> to enable this feature."
-msgstr ""
+msgstr "%PRODUCTNAME разпознава диапазона от клетки за сумиране, стига клетките да са попълнени с числа. Преди да въведете данните, трябва да изберете <menuitem>Таблица - Разпознаване на числа</menuitem>, за да разрешите тази функционалност."
#. CmiXF
#: 04250000.xhp
@@ -491,7 +491,7 @@ msgctxt ""
"par_id3145418\n"
"help.text"
msgid "<image id=\"img_id3147512\" src=\"cmd/sc_autosum.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147512\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147512\" src=\"cmd/sc_autosum.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147512\">Икона</alt></image>"
#. ZiCky
#: 04250000.xhp
@@ -502,50 +502,59 @@ msgctxt ""
msgid "Sum"
msgstr "Сума"
-#. 4a76q
+#. GqFYN
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Numbering Off"
-msgstr "Номериране - изключено"
+msgid "No List"
+msgstr ""
-#. hAqDK
+#. wCBAJ
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"hd_id3145822\n"
"help.text"
-msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">Numbering Off</link>"
-msgstr "<link href=\"text/swriter/02/06040000.xhp\" name=\"Номериране - изключено\">Номериране - изключено</link>"
+msgid "<link href=\"text/swriter/02/06040000.xhp\" name=\"Numbering Off\">No List</link>"
+msgstr ""
-#. i8F2B
+#. MPBzT
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3154505\n"
"help.text"
-msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Turns off numbering or bullets in the current paragraph or selected paragraphs.</ahelp>"
-msgstr "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Изключва номерирането или знаците - водачи за текущия абзац или избраните абзаци.</ahelp>"
+msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Removes numbering or bullets and list indenting for the current paragraph or selected paragraphs.</ahelp>"
+msgstr ""
-#. p6pTC
+#. LDHCy
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3151177\n"
"help.text"
-msgid "<image src=\"cmd/sc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon Numbering Off</alt></image>"
-msgstr "<image src=\"cmd/sc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Икона за изключване на номерирането</alt></image>"
+msgid "<image src=\"cmd/lc_removebullets.png\" id=\"img_id3145083\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145083\">Icon No List</alt></image>"
+msgstr ""
-#. tfm6a
+#. iNFhx
#: 06040000.xhp
msgctxt ""
"06040000.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "Numbering Off"
-msgstr "Номериране - изключено"
+msgid "No List"
+msgstr ""
+
+#. 5FX23
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id811614270889392\n"
+"help.text"
+msgid "To preserve indenting, but remove bullet or number, place cursor at the beginning of the paragraph and press <keycode>Backspace</keycode>."
+msgstr ""
#. MZn4T
#: 06070000.xhp
@@ -790,14 +799,41 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06140000.xhp\" name=\"Restart Numbering\">Restart Numbering</link>"
msgstr "<link href=\"text/swriter/02/06140000.xhp\" name=\"Започване на номерирането отначало\">Започване на номерирането отначало</link>"
-#. tRqAn
+#. iwJHH
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id3145249\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts the text numbering.</ahelp> This is only visible when the cursor is positioned within numbered or bulleted text."
-msgstr "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Започва номерирането отначало.</ahelp> Вижда се само ако курсорът е в текст с номера или водачи."
+msgid "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Restarts list numbering from 1.</ahelp> This command is only active when the cursor is positioned within a list."
+msgstr ""
+
+#. 89Xm9
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id631616370838434\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Restart Numbering</menuitem>."
+msgstr ""
+
+#. fh5aw
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id31616370717930\n"
+"help.text"
+msgid "Place cursor in a list paragraph, right-click and choose <menuitem>List - Restart Numbering</menuitem>."
+msgstr ""
+
+#. RgibL
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id351616370727010\n"
+"help.text"
+msgid "On <link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><emph>Bullets and Numbering</emph></link> bar, click"
+msgstr ""
#. SLjuC
#: 06140000.xhp
@@ -817,6 +853,24 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Започване на номерирането отначало"
+#. DmEY6
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id761616370463787\n"
+"help.text"
+msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
+msgstr ""
+
+#. bEE4F
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id261616371203225\n"
+"help.text"
+msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - </menuitem><embedvar href=\"textswriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
+msgstr ""
+
#. qCdhk
#: 08010000.xhp
msgctxt ""
@@ -3290,7 +3344,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "The format of the field inserted using the <emph>Page Count</emph> command can be modified using the <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Field\"><menuitem>Edit - Fields</menuitem></link> command."
-msgstr ""
+msgstr "Форматът на полетата, вмъкнати с командата <emph>Брой на страници</emph>, може да бъде променян и чрез командата <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Field\"><menuitem>Редактиране - Полета</menuitem></link>."
#. iqoa4
#: 18030400.xhp
@@ -3299,7 +3353,7 @@ msgctxt ""
"par_id291613751393995\n"
"help.text"
msgid "<link href=\"text/swriter/01/04090001.xhp\" name=\"Document\">Document Statistics Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04090001.xhp\" name=\"Document\">Полета със статистики за документа</link>"
#. GRfFZ
#: 18030500.xhp
@@ -3814,6 +3868,213 @@ msgctxt ""
msgid "Text Animation"
msgstr "Анимиран текст"
+#. RajEo
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. mjGvU
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"bm_id1001616018043189\n"
+"help.text"
+msgid "<bookmark_value>Add to List</bookmark_value><bookmark_value>Lists;merging</bookmark_value>"
+msgstr ""
+
+#. X8yaz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id711614068729277\n"
+"help.text"
+msgid "<variable id=\"addtolisth1\"><link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\">Add to List</link></variable>"
+msgstr ""
+
+#. kM6AJ
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id231614069215429\n"
+"help.text"
+msgid "Include selected paragraphs, whether a list item or not, as part of a list."
+msgstr ""
+
+#. pxcFF
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151614079148636\n"
+"help.text"
+msgid "<variable id=\"howtogetaddtolist\">Choose <menuitem>Format - Lists - Add to List</menuitem></variable>."
+msgstr ""
+
+#. PUsxs
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631614079159620\n"
+"help.text"
+msgid "Right-click a paragraph, choose <menuitem>List - Add to List</menuitem>."
+msgstr ""
+
+#. Zb43J
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id151615752168785\n"
+"help.text"
+msgid "<variable id=\"toolbar\">On <menuitem>Bullets and Numbering</menuitem> bar, click <emph>Add to List</emph> icon.</variable>"
+msgstr ""
+
+#. ViA36
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id651615752040364\n"
+"help.text"
+msgid "<image src=\"cmd/lc_continuenumbering.png\" id=\"img_id981615752040364\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761615752040364\">Add to List Icon</alt></image>"
+msgstr ""
+
+#. hxMDa
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id51615752040365\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. 6kruw
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id711616001147778\n"
+"help.text"
+msgid "The list labeling and indent formatting are applied to the selected paragraphs. The position of the paragraphs in the document does not change."
+msgstr ""
+
+#. pADj5
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id851614072896370\n"
+"help.text"
+msgid "Add Selected Paragraphs to a List"
+msgstr ""
+
+#. FGi4A
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id491615988072533\n"
+"help.text"
+msgid "Select paragraphs, whether in a list or not, to be added to a list."
+msgstr ""
+
+#. smjtz
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id271615998908234\n"
+"help.text"
+msgid "For multiple selections, press and hold the <keycode> Ctrl</keycode> key after the first selection. The <keycode>Ctrl</keycode> key can be released without losing the selections, but must be pressed when clicking in the document."
+msgstr ""
+
+#. gwgyD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id551615985719902\n"
+"help.text"
+msgid "Press and hold the <keycode>Ctrl</keycode> key, then place cursor in the list."
+msgstr ""
+
+#. 3VT7j
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id901615999151001\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. qPKKN
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id141615979735757\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#howtogetaddtolist\"/>"
+msgstr ""
+
+#. FADNr
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id961614073544958\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#toolbar\"/>"
+msgstr ""
+
+#. D98D9
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id161615999749854\n"
+"help.text"
+msgid "<variable id=\"rightclick\">Right-click, choose <menuitem>List - Add to List</menuitem>.</variable> To preserve the selection, at least one character must be selected in the list."
+msgstr ""
+
+#. qFmgS
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id861614074931979\n"
+"help.text"
+msgid "This procedure works for ordered and unordered lists."
+msgstr ""
+
+#. L9RdM
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"hd_id441616017998739\n"
+"help.text"
+msgid "Add Consecutive List Entries to an Immediately Prior List"
+msgstr ""
+
+#. GJuBD
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id631616018294373\n"
+"help.text"
+msgid "Select one or more consecutive list entries, starting from the first entry, that you want to add to the immediately prior list."
+msgstr ""
+
+#. g9LRR
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id621616018340980\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/02/add_to_list.xhp#rightclick\"/>"
+msgstr ""
+
+#. p9hUv
+#: add_to_list.xhp
+msgctxt ""
+"add_to_list.xhp\n"
+"par_id811616018796902\n"
+"help.text"
+msgid "Use this procedure to combine two lists."
+msgstr ""
+
#. JsrhA
#: word_count_stb.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/04.po b/source/bg/helpcontent2/source/text/swriter/04.po
index 2d6a572ff79..7f01f8d2f93 100644
--- a/source/bg/helpcontent2/source/text/swriter/04.po
+++ b/source/bg/helpcontent2/source/text/swriter/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-03-13 12:06+0100\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
"PO-Revision-Date: 2020-04-18 12:21+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter04/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 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555408423.000000\n"
#. brcGC
@@ -529,14 +529,14 @@ msgctxt ""
msgid "F12"
msgstr "F12"
-#. S2S9J
+#. jiXFc
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3148959\n"
"help.text"
-msgid "Numbering on"
-msgstr "Номерация - вкл."
+msgid "Toggle Ordered List"
+msgstr ""
#. wAUBd
#: 01020000.xhp
@@ -565,14 +565,14 @@ msgctxt ""
msgid "Shift+F12"
msgstr "Shift+F12"
-#. iuAiR
+#. fkbSD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3152763\n"
"help.text"
-msgid "Bullets on"
-msgstr "Водачи - вкл."
+msgid "Toggle Unordered List"
+msgstr ""
#. pneN5
#: 01020000.xhp
@@ -583,14 +583,14 @@ msgctxt ""
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F12"
msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F12"
-#. dGgoN
+#. E9pG5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3153901\n"
"help.text"
-msgid "Numbering / Bullets off"
-msgstr "Номерация/водачи - изкл."
+msgid "Ordered / Unordered List off"
+msgstr ""
#. HyF9c
#: 01020000.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index 8a1b84fbd2f..b5e2e10f810 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-12-13 23:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-08 14:24+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-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -540,12 +540,13 @@ msgstr "За да премахнете дума от списъка за авт
#. dLJuH
#: auto_off.xhp
+#, fuzzy
msgctxt ""
"auto_off.xhp\n"
"par_id3147274\n"
"help.text"
msgid "Choose <menuitem>Tools - AutoCorrect - AutoCorrect Options</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Автокорекция - Настройки на автокорекция</menuitem>."
#. iK5GF
#: auto_off.xhp
@@ -621,12 +622,13 @@ msgstr "За да спрете превръщането на първите бу
#. jv7DR
#: auto_off.xhp
+#, fuzzy
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Настройки на автокорекция</menuitem>."
#. 6TQxg
#: auto_off.xhp
@@ -1355,7 +1357,7 @@ msgctxt ""
"par_idN10A56\n"
"help.text"
msgid "<link href=\"text/shared/02/02160000.xhp\">Character Highlighting Color icon</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/02160000.xhp\">Икона „Цвят за осветяване на знаците“</link>"
#. 7cNgF
#: background.xhp
@@ -3031,14 +3033,14 @@ msgctxt ""
msgid "<bookmark_value>captions; adding chapter numbers</bookmark_value> <bookmark_value>objects; captioning automatically</bookmark_value> <bookmark_value>numbering; captions</bookmark_value> <bookmark_value>automatic numbering;of objects</bookmark_value> <bookmark_value>chapter numbers in captions</bookmark_value> <bookmark_value>inserting;chapter numbers in captions</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>"
-#. GfPV7
+#. xAnbA
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"hd_id3147684\n"
"help.text"
-msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link> </variable>"
-msgstr "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Добавяне номера на глави към надписи\">Добавяне номера на глави към надписи</link></variable>"
+msgid "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Adding Chapter Numbers to Captions</link></variable>"
+msgstr ""
#. 5efvj
#: captions_numbers.xhp
@@ -3076,14 +3078,14 @@ msgctxt ""
msgid "Choose <emph>Insert - Caption</emph>."
msgstr "Изберете <emph>Вмъкване - Надпис</emph>."
-#. UpjLH
+#. 4Js6V
#: captions_numbers.xhp
msgctxt ""
"captions_numbers.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "Select a caption title from the <item type=\"menuitem\">Category</item> box, and select a numbering style in the <item type=\"menuitem\">Numbering</item> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <item type=\"menuitem\">Caption</item> box."
-msgstr "Изберете заглавие на надпис от полето <item type=\"menuitem\">Категория</item> и стил за номериране в полето <item type=\"menuitem\">Номерация</item>. <br/>В този диалогов прозорец можете да въведете и текст за надписа. Ако желаете, въведете текста в полето <item type=\"menuitem\">Надпис</item>."
+msgid "Select a caption title from the <menuitem>Category</menuitem> box, and select a numbering scheme in the <menuitem>Numbering</menuitem> box. <br/>You also can enter a caption text in this dialog. If you want, enter text in the <menuitem>Caption</menuitem> box."
+msgstr ""
#. H329F
#: captions_numbers.xhp
@@ -3319,32 +3321,32 @@ msgctxt ""
msgid "To Add Automatic Numbering to a Heading Style"
msgstr "За да добавите автоматична номерация към заглавен стил"
-#. Dxqw8
+#. Q2Dq4
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3154255\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item>, and then click the <item type=\"menuitem\">Numbering</item> tab."
-msgstr "Изберете <item type=\"menuitem\">Инструменти - Номерация на глави</item> и отворете раздела <item type=\"menuitem\">Номерация</item>."
+msgid "Choose <menuitem>Tools - Chapter Numbering</menuitem>, and then click the <menuitem>Numbering</menuitem> tab."
+msgstr ""
-#. 8RDya
+#. UuWGT
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3155891\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Paragraph Style</item> box, select the heading style that you want to add chapter numbers to."
-msgstr "В полето <item type=\"menuitem\">Стил на абзац</item> изберете заглавния стил, към който желаете да добавите номера на глави."
+msgid "In the <menuitem>Paragraph style</menuitem> box, select the heading style that you want to add chapter numbers to."
+msgstr ""
-#. dGoy7
+#. EZW6q
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_id3150513\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Numbers</item> box, select the numbering style that you want to use, and then click <item type=\"menuitem\">OK</item>."
-msgstr "В полето <item type=\"menuitem\">Номер</item> изберете желания вид номериране, после натиснете бутона <item type=\"menuitem\">OK</item>."
+msgid "In the <menuitem>Number</menuitem> box, select the numbering scheme that you want to use, and then click <menuitem>OK</menuitem>."
+msgstr ""
#. EChDL
#: chapter_numbering.xhp
@@ -3364,14 +3366,23 @@ msgctxt ""
msgid "Click at the beginning of the text in the heading paragraph, after the number."
msgstr "Щракнете в началото на текста в абзаца - заглавие, точно след номера."
-#. ZbJV9
+#. ABejd
#: chapter_numbering.xhp
msgctxt ""
"chapter_numbering.xhp\n"
"par_idN107D9\n"
"help.text"
-msgid "Press the Backspace key to delete the number."
-msgstr "За да изтриете номера, натиснете клавиша Backspace."
+msgid "Press the <keycode>Backspace</keycode> key to delete the number."
+msgstr ""
+
+#. ycK3V
+#: chapter_numbering.xhp
+msgctxt ""
+"chapter_numbering.xhp\n"
+"par_id441614161571912\n"
+"help.text"
+msgid "Press <keycode>Shift+Backspace</keycode> with the cursor at the beginning of the heading to return the number."
+msgstr ""
#. itdUu
#: chapter_numbering.xhp
@@ -4523,7 +4534,7 @@ msgctxt ""
"par_id3150708\n"
"help.text"
msgid "To quickly open all input fields in a document for editing, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode>."
-msgstr ""
+msgstr "За да отворите бързо всички полета в документ за редактиране, натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode>."
#. CeNeZ
#: fields_userdata.xhp
@@ -5470,14 +5481,14 @@ msgctxt ""
msgid "Click 'Page' in the <emph>Type</emph> list and 'Next page' in the <emph>Select</emph> list."
msgstr "Изберете „Страница“ в списъка <emph>Тип</emph> и „Следваща страница“ в списъка <emph>Избор</emph>."
-#. 4Y7oL
+#. gWQDr
#: footer_nextpage.xhp
msgctxt ""
"footer_nextpage.xhp\n"
"par_id3150517\n"
"help.text"
-msgid "Click a numbering style in the <item type=\"menuitem\">Format</item> list."
-msgstr "Изберете вид номерация в списъка <item type=\"menuitem\">Формат</item>."
+msgid "Click a numbering scheme in the <menuitem>Format</menuitem> list."
+msgstr ""
#. 9YJwh
#: footer_nextpage.xhp
@@ -5702,7 +5713,7 @@ msgctxt ""
"par_id3148843\n"
"help.text"
msgid "<image id=\"img_id3148857\" src=\"cmd/sc_insertfootnote.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148857\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148857\" src=\"cmd/sc_insertfootnote.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148857\">Икона</alt></image>"
#. C8QT3
#: footnote_usage.xhp
@@ -5720,7 +5731,7 @@ msgctxt ""
"par_id41607163776333\n"
"help.text"
msgid "<image src=\"cmd/sc_insertendnote.png\" id=\"img_id341607163776333\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id511607163776333\">Insert Endnote Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_insertendnote.png\" id=\"img_id341607163776333\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id511607163776333\">Икона за вмъкване на бележка в края</alt></image>"
#. rgca7
#: footnote_usage.xhp
@@ -5729,7 +5740,7 @@ msgctxt ""
"par_id121607163776335\n"
"help.text"
msgid "You can insert endnotes directly by clicking the <menuitem>Insert Endnote</menuitem> icon on the <emph>Standard</emph> or <emph>Insert</emph> toolbar or choose <menuitem>Insert - Footnote and Endnote - Endnote</menuitem>."
-msgstr ""
+msgstr "Можете да вмъквате директно бележки в края, като щракнете върху иконата <menuitem>Вмъкване на бележка в края</menuitem> в лентата <emph>Стандартни</emph> или <emph>Вмъкване</emph> или изберете <menuitem>Вмъкване - Бележка под линия/в края - Бележка в края</menuitem>."
#. D3DDv
#: footnote_usage.xhp
@@ -5756,7 +5767,7 @@ msgctxt ""
"par_id3155563\n"
"help.text"
msgid "To edit the text of a footnote or endnote, click in the note, or click the anchor for the note in the text, or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+PageDown</keycode>."
-msgstr ""
+msgstr "За да редактирате текста на бележка под линия или в края, щракнете в бележката или върху котвата ѝ в текста или натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+PageDown</keycode>."
#. BULG3
#: footnote_usage.xhp
@@ -5819,7 +5830,7 @@ msgctxt ""
"par_id781607164467521\n"
"help.text"
msgid "Shortcut keys can be made to insert, edit, and navigate to footnotes and endnotes. Choose <menuitem>Tools - Customize - Keyboard</menuitem> tab and enter <input>note</input> in the Functions box to see possibilities."
-msgstr ""
+msgstr "Могат да се зададат клавишни комбинации за вмъкване, редактиране и навигация към бележки под линия и в края. Изберете раздела <menuitem>Инструменти - Персонализиране - Клавиатура</menuitem> и въведете <input>бележка</input> в полето „Функции“, за да видите възможностите."
#. nDvQ9
#: footnote_usage.xhp
@@ -5828,7 +5839,7 @@ msgctxt ""
"par_id251603931682056\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=\"makeshortcut\">Създаване на клавишна комбинация</link>"
#. r9FFt
#: footnote_with_line.xhp
@@ -6937,14 +6948,14 @@ msgctxt ""
msgid "To Create a Paragraph Style for Chapter Titles"
msgstr "За да създадете абзацен стил за заглавия на глави"
-#. 8ScLd
+#. caxXE
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3155874\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering.</item>"
-msgstr "Изберете <item type=\"menuitem\">Инструменти - Номерация на глави.</item>"
+msgid "Choose <menuitem>Tools - Chapter Numbering.</menuitem>"
+msgstr ""
#. B8P3C
#: header_with_chapter.xhp
@@ -6955,14 +6966,14 @@ msgctxt ""
msgid "In the <item type=\"menuitem\">Style</item> box, select the paragraph style that you want to use for chapter titles, for example, \"Heading 1\"."
msgstr "В полето <item type=\"menuitem\">Стил</item> изберете абзацния стил, който желаете да ползвате за заглавия на глави, например „Заглавие 1“."
-#. u3oNh
+#. LoZJ2
#: header_with_chapter.xhp
msgctxt ""
"header_with_chapter.xhp\n"
"par_id3147124\n"
"help.text"
-msgid "Select the numbering style for the chapter titles in the <item type=\"menuitem\">Number</item> box, for example, \"1,2,3...\"."
-msgstr "Изберете вида на номерирането на главите в полето <item type=\"menuitem\">Номер</item>, например „1,2,3...“."
+msgid "Select the numbering scheme for the chapter titles in the <menuitem>Number</menuitem> box, for example, \"1,2,3...\"."
+msgstr ""
#. AHCua
#: header_with_chapter.xhp
@@ -7774,14 +7785,14 @@ msgctxt ""
msgid "Position the cursor at the place where no hyphenation should occur."
msgstr "Позиционирайте курсора в текста на място, където не желаете да се извършва сричкопренасяне."
-#. pciJs
+#. eFYEG
#: hyphen_prevent.xhp
msgctxt ""
"hyphen_prevent.xhp\n"
"par_id0302200910262867\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Formatting Mark - No-width no break</item>."
-msgstr "Изберете <item type=\"menuitem\">Вмъкване - Знак за форматиране - Непрекъсваема връзка</item>."
+msgid "Choose <menuitem>Insert - Formatting Mark - Word Joiner</menuitem>."
+msgstr ""
#. 6u4r9
#: hyphen_prevent.xhp
@@ -8926,23 +8937,23 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Натиснете бутона <emph>OK</emph>."
-#. A74Fc
+#. FiGft
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id3146896\n"
"help.text"
-msgid "If you want to use a different paragraph style as a table of contents entry, select the <item type=\"menuitem\">Additional Styles</item> check box in the <item type=\"menuitem\">Create from</item> area, and then click the <item type=\"menuitem\">Assign styles</item> button next to the check box. In the <item type=\"menuitem\">Assign Styles</item> dialog, click the style in the list, and then click the <item type=\"menuitem\">>></item> or the <item type=\"menuitem\"><<</item> button to define the chapter level for the paragraph style."
-msgstr "Ако желаете да ползвате различен абзацен стил като елемент от съдържанието, отметнете полето <item type=\"menuitem\">Допълнителни стилове</item> в областта <item type=\"menuitem\">Създаване от</item>, след това натиснете бутона <item type=\"menuitem\">Присвояване на стилове</item> до полето за отметка. В диалоговия прозорец <item type=\"menuitem\">Присвояване на стилове</item> щракнете върху стила в списъка, а после върху бутона <item type=\"menuitem\">>></item> или <item type=\"menuitem\"><<</item>, за да определите нивото на избрания стил."
+msgid "If you want to use a different paragraph style as a table of contents entry, select the <menuitem>Additional Styles</menuitem> check box in the <menuitem>Create from</menuitem> area, and then click the <menuitem>Assign styles</menuitem> button next to the check box. In the <menuitem>Assign Styles</menuitem> dialog, click the style in the list, and then click the <menuitem>>></menuitem> or the <menuitem><<</menuitem> button to define the outline level for the paragraph style."
+msgstr ""
-#. a7Nyb
+#. mXE4E
#: indices_toc.xhp
msgctxt ""
"indices_toc.xhp\n"
"par_id1001574720273772\n"
"help.text"
-msgid "%PRODUCTNAME creates the table of contents entries based on the chapter level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
-msgstr "%PRODUCTNAME създава елементите в таблицата на съдържанието според нивото на абзацния стил и съдържанието на абзаца. Ако абзацът е празен, той няма да бъде включен в съдържанието. За да наложите включването на празен абзац, ръчно добавете в него обикновен или твърд интервал. Интервалите, добавени в текстовото поле <emph>След</emph> на раздела „Номерация“ в диалога „Номерация на глави“ не работят за тази цел, понеже те са част от номерацията на абзаците, а не от съдържанието им."
+msgid "%PRODUCTNAME creates the table of contents entries based on the outline level of the paragraph style and the paragraph contents. If the paragraph is empty, it will not be included in the table of contents. To force the empty paragraph to be listed in the table of contents, manually add a space or a non breaking space to the paragraph. Spaces added in the <emph>After</emph> text box of the Numbering tab in the Chapter Numbering dialog will not work for this purpose, since they are part of the paragraph numbering, not the paragraph contents."
+msgstr ""
#. Fdoe5
#: indices_toc.xhp
@@ -9419,7 +9430,7 @@ msgctxt ""
"par_id3145098\n"
"help.text"
msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> and click and hold the object for a moment."
-msgstr ""
+msgstr "Задръжте <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, щракнете върху обект и задръжте за момент бутона на мишката."
#. yFomr
#: insert_graphic_fromdraw.xhp
@@ -9619,32 +9630,32 @@ msgctxt ""
msgid "<bookmark_value>numbering; combining</bookmark_value> <bookmark_value>merging;numbered lists</bookmark_value> <bookmark_value>joining;numbered lists</bookmark_value> <bookmark_value>lists;combining numbered lists</bookmark_value> <bookmark_value>paragraphs;numbering non-consecutive</bookmark_value>"
msgstr "<bookmark_value>номериране; обединяване</bookmark_value> <bookmark_value>сливане;номерирани списъци</bookmark_value> <bookmark_value>обединяване;номерирани списъци</bookmark_value> <bookmark_value>списъци;номерирани, обединяване на</bookmark_value> <bookmark_value>абзаци;непоследователни, номериране</bookmark_value>"
-#. aUM78
+#. uwK2S
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3150495\n"
"help.text"
-msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Numbered Lists</link></variable>"
-msgstr "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Обединяване на номерирани списъци\">Обединяване на номерирани списъци</link></variable>"
+msgid "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Combining Ordered Lists</link></variable>"
+msgstr ""
-#. ygDg8
+#. kFGF5
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3149692\n"
"help.text"
-msgid "You can combine numbered lists into a single consecutively numbered list."
-msgstr "Можете да обедините няколко номерирани списъка в един последователно номериран списък."
+msgid "You can combine two ordered lists into a single list."
+msgstr ""
-#. G4bPG
+#. 2mCAG
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3149452\n"
"help.text"
-msgid "To Combine Consecutive Numbered Lists"
-msgstr "За да обедините последователни номерирани списъци"
+msgid "To Combine Two Ordered Lists"
+msgstr ""
#. e25XR
#: join_numbered_lists.xhp
@@ -9655,23 +9666,23 @@ msgctxt ""
msgid "Select all of the paragraphs in the lists."
msgstr "Изберете всички абзаци от списъците."
-#. FnnAw
+#. wTYyb
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3155911\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "В лентата <item type=\"menuitem\">Форматиране</item> щракнете два пъти върху иконата <item type=\"menuitem\">Номера - вкл./изкл.</item>."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
+msgstr ""
-#. huoiN
+#. yCERR
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"hd_id3155870\n"
"help.text"
-msgid "To Create a Numbered List From Non-consecutive Paragraphs:"
-msgstr "За да създадете номериран списък от непоследователни абзаци:"
+msgid "To Create a Ordered List From Non-consecutive Paragraphs"
+msgstr ""
#. 3fmSg
#: join_numbered_lists.xhp
@@ -9680,7 +9691,7 @@ msgctxt ""
"par_id3153417\n"
"help.text"
msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> and drag a selection in the first numbered paragraph. You only have to select one character."
-msgstr ""
+msgstr "Задръжте <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> и плъзнете в първия номериран абзац, за да изберете част от него. Достатъчно е да изберете един знак."
#. YUMLt
#: join_numbered_lists.xhp
@@ -9689,16 +9700,25 @@ msgctxt ""
"par_id3149644\n"
"help.text"
msgid "Continue to hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and drag a selection in each numbered paragraph of the lists you want to combine."
-msgstr ""
+msgstr "Без да пускате <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, създайте с плъзгане селекции във всички номерирани абзаци от списъците, които искате да комбинирате."
-#. mLFjo
+#. RaZCA
#: join_numbered_lists.xhp
msgctxt ""
"join_numbered_lists.xhp\n"
"par_id3145102\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "В лентата <item type=\"menuitem\">Форматиране</item> щракнете два пъти върху иконата <item type=\"menuitem\">Номера - вкл./изкл.</item>."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
+msgstr ""
+
+#. RNYoM
+#: join_numbered_lists.xhp
+msgctxt ""
+"join_numbered_lists.xhp\n"
+"par_id751615828987862\n"
+"help.text"
+msgid "To add selected paragraphs to an existing list, use <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
+msgstr ""
#. rDMRb
#: jump2statusbar.xhp
@@ -10337,7 +10357,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>table cells; 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><bookmark_value>разпознаване;числа</bookmark_value>"
#. aahB7
#: number_date_conv.xhp
@@ -10355,7 +10375,7 @@ msgctxt ""
"par_id3155179\n"
"help.text"
msgid "$[officename] can automatically recognize numbers or dates that you enter into a table cell, converting them from text to an appropriate number format. Use <menuitem>Table - Number Format</menuitem> to change the display of the entered value."
-msgstr ""
+msgstr "$[officename] може автоматично да разпознава числа или дати, въведени в клетка от таблица, като ги преобразува от текст в съответния числов формат. Използвайте <menuitem>Таблица - Числов формат</menuitem>, за да промените визуализацията на въведената стойност."
#. 8WZDL
#: number_date_conv.xhp
@@ -10364,7 +10384,7 @@ msgctxt ""
"par_id3149966\n"
"help.text"
msgid "To enable or disable this feature, do one of the following:"
-msgstr ""
+msgstr "За да включите или изключите тази функция, направете едно от следните неща:"
#. FQ5iR
#: number_date_conv.xhp
@@ -10373,7 +10393,7 @@ msgctxt ""
"par_id3155919\n"
"help.text"
msgid "Choose <menuitem>Table - Number Recognition</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Таблица - Разпознаване на числа</menuitem>."
#. EX3eD
#: number_date_conv.xhp
@@ -10382,7 +10402,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> има отметка."
#. D6uyv
#: number_date_conv.xhp
@@ -10654,14 +10674,14 @@ msgctxt ""
msgid "All paragraph styles are based on the \"Default\" style."
msgstr "Всички абзацни стилове са базирани на стила \"По подразбиране\"."
-#. zxroA
+#. 6Bnc6
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150931\n"
"help.text"
-msgid "Click the <emph>Outline & Numbering</emph> tab."
-msgstr "Отворете раздела <emph>План и номерация</emph>."
+msgid "Click the <emph>Outline & List</emph> tab."
+msgstr ""
#. kfFgy
#: numbering_lines.xhp
@@ -10744,14 +10764,14 @@ msgctxt ""
msgid "Click in a paragraph."
msgstr "Щракнете в някой абзац."
-#. En2MK
+#. pvF59
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3150721\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Paragraph</item>, and then click the <item type=\"menuitem\">Outline & Numbering</item> tab."
-msgstr "Изберете <item type=\"menuitem\">Форматиране - Абзац</item> и отворете раздела <item type=\"menuitem\">План и номерация</item>."
+msgid "Choose <menuitem>Format - Paragraph</menuitem>, and then click the <menuitem>Outline & List</menuitem> tab."
+msgstr ""
#. DB5Bp
#: numbering_lines.xhp
@@ -10798,14 +10818,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Tools - Line Numbering\">Tools - Line Numbering</link>"
msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Инструменти - Номериране на редове\">Инструменти - Номериране на редове</link>"
-#. y2EtS
+#. PG4ys
#: numbering_lines.xhp
msgctxt ""
"numbering_lines.xhp\n"
"par_id3153960\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05030800.xhp\" name=\"Format - Paragraph - Numbering\">Format - Paragraph - Numbering</link>"
-msgstr "<link href=\"text/swriter/01/05030800.xhp\" name=\"Форматиране - Абзац - Номерация\">Форматиране - Абзац - Номерация</link>"
+msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
+msgstr ""
#. foq8S
#: numbering_lines.xhp
@@ -10816,14 +10836,14 @@ msgctxt ""
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Уикистраница относно номерирането на абзаци чрез стилове</link> (на английски)"
-#. PngCd
+#. EQANu
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"tit\n"
"help.text"
-msgid "Modifying Numbering in a Numbered List"
-msgstr "Промяна на номерацията в номериран списък"
+msgid "Modifying Numbering in an Ordered List"
+msgstr ""
#. CZCFE
#: numbering_paras.xhp
@@ -10834,41 +10854,32 @@ msgctxt ""
msgid "<bookmark_value>numbering; removing/interrupting</bookmark_value> <bookmark_value>bullet lists; interrupting</bookmark_value> <bookmark_value>lists;removing/interrupting numbering</bookmark_value> <bookmark_value>deleting;numbers in lists</bookmark_value> <bookmark_value>interrupting numbered lists</bookmark_value> <bookmark_value>changing;starting numbers in lists</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>"
-#. vsLZ8
+#. wER6G
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3149637\n"
"help.text"
-msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in a Numbered List</link></variable>"
-msgstr "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Промяна на номерацията в номериран списък\">Промяна на номерацията в номериран списък</link></variable>"
+msgid "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Modifying Numbering in a Numbered List\">Modifying Numbering in an Ordered List</link></variable>"
+msgstr ""
-#. UkDzC
+#. eP9Ei
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3145092\n"
"help.text"
-msgid "You can remove the numbering from a paragraph in a numbered list or change the number that a numbered list starts with."
-msgstr "Можете да премахнете номерацията от абзац в номериран списък или да промените номера, с който започва списъкът."
-
-#. 4arAA
-#: numbering_paras.xhp
-msgctxt ""
-"numbering_paras.xhp\n"
-"par_id2172612\n"
-"help.text"
-msgid "If you want numbered headings, use the <menuitem>Tools - Chapter Numbering</menuitem> menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar."
-msgstr "Ако искате номерирани заглавия, използвайте командата <menuitem>Инструменти - Номерация на глави</menuitem>, за да присвоите номерация на абзацен стил. Не използвайте иконата „Номериране“ от лентата с инструменти „Форматиране“."
+msgid "You can remove the numbering from a paragraph in an ordered list or change the number that an ordered list starts with."
+msgstr ""
-#. XdFDM
+#. o2d3C
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3145107\n"
"help.text"
-msgid "To Remove the Number From a Paragraph in a Numbered List"
-msgstr "За да премахнете номера от абзац в номериран списък"
+msgid "To Remove the Number From a Paragraph in an Ordered List"
+msgstr ""
#. Bdddz
#: numbering_paras.xhp
@@ -10897,32 +10908,32 @@ msgctxt ""
msgid "To remove the number while preserving the indent of the paragraph, press the Backspace key."
msgstr "За да премахнете номера, запазвайки отстъпа на абзаца, натиснете клавиша Backspace."
-#. vpCsg
+#. cszDd
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3154248\n"
"help.text"
-msgid "To remove the number and the indent of the paragraph, click the <emph>Numbering on/off</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
-msgstr "За да премахнете номера и отстъпа на абзаца, щракнете върху иконата <emph>Номера - вкл./изкл.</emph> в лентата <emph>Форматиране</emph>. Ако запишете документа във формат HTML, ще бъде създаден отделен номериран списък за номерираните абзаци след текущия."
+msgid "To remove the number and the indent of the paragraph, click the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar. If you save the document in HTML format, a separate numbered list is created for the numbered paragraphs that follow the current paragraph."
+msgstr ""
-#. dHiFt
+#. 4sN9H
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"hd_id3154856\n"
"help.text"
-msgid "To Change the Number That a Numbered List Starts With"
-msgstr "За да промените началния номер на номериран списък"
+msgid "To Change the Number That an Ordered List Starts With"
+msgstr ""
-#. s3SHA
+#. rgBxU
#: numbering_paras.xhp
msgctxt ""
"numbering_paras.xhp\n"
"par_id3155877\n"
"help.text"
-msgid "Click anywhere in the numbered list."
-msgstr "Щракнете на произволно място в номерирания списък."
+msgid "Click anywhere in the ordered list."
+msgstr ""
#. Nkqj8
#: numbering_paras.xhp
@@ -12085,14 +12096,14 @@ msgctxt ""
msgid "Creating and Applying Page Styles"
msgstr "Създаване и прилагане на стилове за страници"
-#. BFGvL
+#. fPbBS
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"bm_id7071138\n"
"help.text"
-msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value>"
-msgstr "<bookmark_value>стилове за страници;създаване и прилагане</bookmark_value> <bookmark_value>дефиниране;стилове за страници</bookmark_value> <bookmark_value>стилове;за страници</bookmark_value>"
+msgid "<bookmark_value>page styles;creating and applying</bookmark_value> <bookmark_value>defining;page styles</bookmark_value> <bookmark_value>styles;for pages</bookmark_value> <bookmark_value>overriding next style;for pages</bookmark_value>"
+msgstr ""
#. MM4EQ
#: pagestyles.xhp
@@ -12211,6 +12222,15 @@ msgctxt ""
msgid "Click in the page that you want to apply the page style to."
msgstr "Щракнете в страницата, върху която желаете да приложите дадения стил за страници."
+#. vF8n9
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id471615462517274\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
#. GC7eD
#: pagestyles.xhp
msgctxt ""
@@ -12229,6 +12249,78 @@ msgctxt ""
msgid "Double-click a name in the list."
msgstr "Щракнете двукратно върху име в списъка."
+#. wAew8
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615460923756\n"
+"help.text"
+msgid "Right-click the page style displayed in the <link href=\"text/shared/01/03060000\" name=\"Status Bar\">Status Bar</link>. Select another page style."
+msgstr ""
+
+#. ombta
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"hd_id181615419889677\n"
+"help.text"
+msgid "To Manually Override the “Next style” of a Page Style"
+msgstr ""
+
+#. mX6AF
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615419994433\n"
+"help.text"
+msgid "Place cursor between the page with the page style and the page with the style specified in <emph>Next style</emph>."
+msgstr ""
+
+#. V4dVd
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id301615420000676\n"
+"help.text"
+msgid "Right-click and choose <menuitem>Edit Page Break</menuitem>."
+msgstr ""
+
+#. rsZHm
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id271615420006519\n"
+"help.text"
+msgid "Select the <emph>With page style</emph> checkbox."
+msgstr ""
+
+#. wdCZW
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id601615420013170\n"
+"help.text"
+msgid "Enter the page style to be applied."
+msgstr ""
+
+#. Fcn83
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id231615420303511\n"
+"help.text"
+msgid "See <link href=\"text/swriter/guide/pageorientation.xhp#scope\" name=\"Next Style\">Manually Defined Range of a Page style</link>."
+msgstr ""
+
+#. 2BGUb
+#: pagestyles.xhp
+msgctxt ""
+"pagestyles.xhp\n"
+"par_id891615463137607\n"
+"help.text"
+msgid "A special situation arises when a <emph>Next style</emph> is different than the page style itself, and you want to apply that page style to two consecutive pages. For example, if you have applied <emph>First Page</emph> style to a page, and want to apply First Page style again to the immediately following page, then you must manually override First Page style, because it is configured to be followed by <emph>Default Page Style</emph>."
+msgstr ""
+
#. enqf2
#: pagestyles.xhp
msgctxt ""
@@ -18322,14 +18414,14 @@ msgctxt ""
msgid "Adding Bullets"
msgstr "Добавяне на водещи знаци"
-#. npXYA
+#. 6sLBy
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"bm_id3155186\n"
"help.text"
-msgid "<bookmark_value>bullet lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</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>"
+msgid "<bookmark_value>unordered lists;turning on and off</bookmark_value> <bookmark_value>paragraphs; bulleted</bookmark_value> <bookmark_value>bullets;adding and editing</bookmark_value> <bookmark_value>formatting;bullets</bookmark_value> <bookmark_value>removing;bullets in text documents</bookmark_value> <bookmark_value>changing;bulleting symbols</bookmark_value>"
+msgstr ""
#. fHxYh
#: using_numbered_lists.xhp
@@ -18358,23 +18450,23 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add bullets to."
msgstr "Изберете абзаца или абзаците, в които желаете да добавите водещи знаци."
-#. SjDdr
+#. qaN2Z
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3149635\n"
"help.text"
-msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Bullets On/Off</item> icon <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">Icon</alt></image> (Shift-F12)."
-msgstr "В лентата <item type=\"menuitem\">Форматиране</item> щракнете върху иконата <item type=\"menuitem\">Водачи - вкл./изкл.</item> <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">Икона</alt></image> (Shift-F12)."
+msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Unordered List</menuitem> icon (<keycode>Shift+F12</keycode>)."
+msgstr ""
-#. fd4ap
+#. nQCke
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3145403\n"
"help.text"
-msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Bullets On/Off</emph> icon on the <emph>Formatting</emph> Bar."
-msgstr "За да премахнете водачите, изберете абзаците с водачи и щракнете върху иконата <emph>Водачи - вкл./изкл.</emph> в лентата <emph>Форматиране</emph>."
+msgid "To remove bullets, select the bulleted paragraphs, and then click the <emph>Toggle Unordered List</emph> icon on the <emph>Formatting</emph> Bar."
+msgstr ""
#. HpLDk
#: using_numbered_lists.xhp
@@ -18385,23 +18477,23 @@ msgctxt ""
msgid "To Format Bullets"
msgstr "За да форматирате водещи знаци"
-#. eLxDt
+#. gUFZk
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3154416\n"
"help.text"
-msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>."
-msgstr "За да промените форматирането на списък с водещи знаци, изберете <item type=\"menuitem\">Форматиране - Водачи и номерация</item>."
+msgid "To change the formatting of an unordered list, choose <menuitem>Format - Bullets and Numbering</menuitem>."
+msgstr ""
-#. wyMSC
+#. qZ6Zu
#: using_numbered_lists.xhp
msgctxt ""
"using_numbered_lists.xhp\n"
"par_id3153390\n"
"help.text"
-msgid "Click on the <item type=\"menuitem\">Bullet</item> tab or the <item type=\"menuitem\">Image</item> tab, and then select a symbol style in the <item type=\"menuitem\">Selection</item> area."
-msgstr "Отворете раздела <item type=\"menuitem\">Водачи</item> или <item type=\"menuitem\">Изображение</item>, после изберете стил за символ в областта <item type=\"menuitem\">Избор</item>."
+msgid "Click on the <menuitem>Unordered</menuitem> tab or the <menuitem>Image</menuitem> tab, and then select a symbol style in the <menuitem>Selection</menuitem> area."
+msgstr ""
#. XtKb5
#: using_numbered_lists.xhp
@@ -18421,14 +18513,14 @@ msgctxt ""
msgid "Adding Numbering"
msgstr "Добавяне на номерация"
-#. UTBpr
+#. pGetS
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"bm_id3147418\n"
"help.text"
-msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs; numbering on/off</bookmark_value> <bookmark_value>formatting;numbered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
-msgstr "<bookmark_value>номериране; абзаци, включване и изключване</bookmark_value><bookmark_value>абзаци; номерация вкл./изкл.</bookmark_value><bookmark_value>форматиране;номерирани списъци</bookmark_value><bookmark_value>вмъкване;номерация</bookmark_value>"
+msgid "<bookmark_value>numbering;paragraphs, on and off</bookmark_value> <bookmark_value>paragraphs;toggle ordered list</bookmark_value> <bookmark_value>formatting;ordered lists</bookmark_value> <bookmark_value>inserting;numbering</bookmark_value>"
+msgstr ""
#. ZPrUH
#: using_numbered_lists2.xhp
@@ -18457,76 +18549,112 @@ msgctxt ""
msgid "Select the paragraph(s) that you want to add numbering to."
msgstr "Изберете абзаца или абзаците, в които желаете да добавите номера."
-#. TZrEV
+#. PAGDn
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id181615764064889\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr ""
+
+#. B2NZk
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3149968\n"
"help.text"
-msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Numbered List</emph> icon (<keycode>F12</keycode>)."
+msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Ordered List</emph> icon (<keycode>F12</keycode>)"
msgstr ""
-#. seYCG
+#. dpmx5
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id3149573\n"
+"par_id211615764184529\n"
"help.text"
-msgid "To change the formatting and the hierarchy of a numbered list, click in the list, and then open the <emph>Bullets and Numbering</emph> toolbar."
-msgstr "За да промените форматирането и йерархията на номериран списък, щракнете в списъка и отворете лентата <emph>Водачи и номерация</emph>."
+msgid "Right-click, choose <menuitem>Lists</menuitem>, then select a list style."
+msgstr ""
-#. cBsKj
+#. dQ6VP
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id91611756820703\n"
+"par_id941615766439690\n"
"help.text"
-msgid "<image src=\"cmd/lc_defaultnumbering.png\" id=\"img_id531611756820703\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id961611756820703\">Toggle Numbered List Icon</alt></image>"
+msgid "A <link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Paragraph Style\">paragraph style</link> can be configured to add numbering."
msgstr ""
-#. 8rCsx
+#. 96JB9
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
-"par_id141611756820703\n"
+"hd_id861615765870820\n"
"help.text"
-msgid "Toggle Numbered List"
+msgid "To Remove Paragraphs from an Ordered List"
msgstr ""
-#. 4KDug
+#. PwFjK
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3153365\n"
"help.text"
-msgid "To remove numbering, select the numbered paragraphs, and then click the <emph>Toggle Numbered List</emph> icon on the <emph>Formatting</emph> Bar."
+msgid "To remove numbering, select the numbered paragraphs, then click the <emph>Toggle Ordered List</emph> icon or the <emph>No List</emph> icon on the <emph>Formatting</emph> Bar."
msgstr ""
-#. SWoqA
+#. iFCsz
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"hd_id3154233\n"
"help.text"
-msgid "To Format a Numbered List"
-msgstr "За да форматирате номериран списък"
+msgid "To Format an Ordered List"
+msgstr ""
-#. AXMM3
+#. XpCAC
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id3154246\n"
"help.text"
-msgid "To change the formatting of a numbered list, click in the list, then choose <emph>Format - Bullets and Numbering</emph>."
-msgstr "За да промените форматирането на номериран списък, щракнете в списъка и изберете <emph>Форматиране - Водачи и номерация</emph>."
+msgid "To change the formatting of a numbered list, do one of the following:"
+msgstr ""
+
+#. ctBEK
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id801615765243022\n"
+"help.text"
+msgid "Click in the list, then choose <menuitem>Format - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. ThdUE
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id161615765280165\n"
+"help.text"
+msgid "Right-click in the list, then choose <menuitem>Lists - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. xgmVR
+#: using_numbered_lists2.xhp
+msgctxt ""
+"using_numbered_lists2.xhp\n"
+"par_id3149573\n"
+"help.text"
+msgid "To change the hierarchy of an ordered list, click in the list, then use the icons in the <emph>Bullets and Numbering</emph> toolbar."
+msgstr ""
-#. 9MZVK
+#. y2KEo
#: using_numbered_lists2.xhp
msgctxt ""
"using_numbered_lists2.xhp\n"
"par_id21611757614734\n"
"help.text"
-msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Numbered List</emph> twice."
+msgid "Copying or moving an item from a numbered list to a new location continues the list numbering. To start a new numbering with the pasted item, click <emph>Toggle Ordered List</emph> twice. Any formatting on the pasted item is reset to default."
msgstr ""
#. MAprK
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office.po b/source/bg/officecfg/registry/data/org/openoffice/Office.po
index 5a243398e86..333f1f75f7e 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2020-10-31 11:35+0000\n"
+"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1547858956.000000\n"
#. HhMVS
@@ -1814,7 +1814,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "Left click, right or down arrow, spacebar, page down, enter, return"
-msgstr ""
+msgstr "Щракване, стрелка надясно или надолу, интервал, Page Down, Enter, Return"
#. 4sxF6
#: PresenterScreen.xcu
@@ -1834,7 +1834,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "Right click, left or up arrow, page up, backspace"
-msgstr ""
+msgstr "Щракване с десен бутон, стрелка наляво или нагоре, Page Up, Backspace"
#. yhyBn
#: PresenterScreen.xcu
@@ -1854,7 +1854,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "'P'"
-msgstr ""
+msgstr "P"
#. u8AZ5
#: PresenterScreen.xcu
@@ -1864,7 +1864,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Use mouse pointer as pen"
-msgstr ""
+msgstr "Използване показалеца на мишката като молив"
#. mAW7G
#: PresenterScreen.xcu
@@ -1914,7 +1914,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "'E'"
-msgstr ""
+msgstr "E"
#. 3Cre9
#: PresenterScreen.xcu
@@ -1924,7 +1924,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Erase all ink on slide"
-msgstr ""
+msgstr "Изтриване на нарисуваното в кадъра"
#. heq4C
#: PresenterScreen.xcu
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 1e177e76aa7..f8e0353dfd9 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+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-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1564897305.000000\n"
#. W5ukN
@@ -444,7 +444,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Formula Object..."
-msgstr ""
+msgstr "Обект формула..."
#. wfLfm
#: CalcCommands.xcu
@@ -454,7 +454,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Formula Object"
-msgstr ""
+msgstr "Вмъкване на обект формула"
#. Ui6br
#: CalcCommands.xcu
@@ -1296,15 +1296,25 @@ msgctxt ""
msgid "Select Unprotected Cells"
msgstr "Избиране на незащитените клетки"
-#. pqtqc
+#. L2c5b
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:SelectVisibleCells\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleRows\n"
"Label\n"
"value.text"
-msgid "Select Visible Cells Only"
-msgstr ""
+msgid "Select Visible Rows Only"
+msgstr "Избиране само на видимите редове"
+
+#. rDd3w
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:SelectVisibleColumns\n"
+"Label\n"
+"value.text"
+msgid "Select Visible Columns Only"
+msgstr "Избиране само на видимите колони"
#. LEvrC
#: CalcCommands.xcu
@@ -3176,15 +3186,15 @@ msgctxt ""
msgid "Format ~Page..."
msgstr "Форматиране на ~страница..."
-#. EgQDP
+#. g3ACv
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PageFormatDialog\n"
"ContextLabel\n"
"value.text"
-msgid "~Page..."
-msgstr "~Страница..."
+msgid "~Page Style..."
+msgstr "Стил на страница..."
#. C83UC
#: CalcCommands.xcu
@@ -9456,6 +9466,26 @@ msgctxt ""
msgid "Layout"
msgstr "Оформление"
+#. BBXg7
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"Label\n"
+"value.text"
+msgid "Scale"
+msgstr "Мащаб"
+
+#. sdUMB
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:Scale\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Scaling at the current document"
+msgstr "Мащабиране на текущия документ"
+
#. hTkgv
#: DrawImpressCommands.xcu
msgctxt ""
@@ -18094,7 +18124,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outline Font Effect"
-msgstr ""
+msgstr "Ефект „контур на шрифта“"
#. ND6wH
#: GenericCommands.xcu
@@ -18104,7 +18134,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Apply outline attribute to font. Not all fonts implement this attribute."
-msgstr ""
+msgstr "Прилагане на атрибут „контур“ върху шрифта. Не всички шрифтове поддържат този атрибут."
#. CjLxE
#: GenericCommands.xcu
@@ -19154,7 +19184,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Open Templates Manager"
-msgstr ""
+msgstr "Отваряне на диспечера на шаблони"
#. FFpcG
#: GenericCommands.xcu
@@ -19636,7 +19666,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Unordered List"
-msgstr ""
+msgstr "Неподреден списък"
#. XoWcu
#: GenericCommands.xcu
@@ -19646,7 +19676,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Unordered List"
-msgstr ""
+msgstr "Неподреден списък"
#. d6G5u
#: GenericCommands.xcu
@@ -19656,7 +19686,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Unordered List"
-msgstr ""
+msgstr "Превключване на неподреден списък"
#. DFY6X
#: GenericCommands.xcu
@@ -19666,7 +19696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ordered List"
-msgstr ""
+msgstr "Подреден списък"
#. yMEgE
#: GenericCommands.xcu
@@ -19676,7 +19706,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Ordered List"
-msgstr ""
+msgstr "Подреден списък"
#. oJFRD
#: GenericCommands.xcu
@@ -19686,7 +19716,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Ordered List"
-msgstr ""
+msgstr "Превключване на подреден списък"
#. jZGY5
#: GenericCommands.xcu
@@ -19696,7 +19726,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outline Format"
-msgstr ""
+msgstr "Формат на план"
#. TSDD9
#: GenericCommands.xcu
@@ -19706,7 +19736,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Outline Format"
-msgstr ""
+msgstr "Формат на план"
#. RMCDt
#: GenericCommands.xcu
@@ -19716,7 +19746,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Outline Format"
-msgstr ""
+msgstr "Избиране на формат на план"
#. uKMCr
#: GenericCommands.xcu
@@ -20638,35 +20668,25 @@ msgctxt ""
msgid "Background Color"
msgstr "Фонов цвят"
-#. G3ByE
+#. ARiD2
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"Label\n"
"value.text"
-msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
-
-#. oPNLk
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
-"ContextLabel\n"
-"value.text"
msgid "Character Highlighting Color"
-msgstr ""
+msgstr "Цвят за осветяване на знаците"
-#. LFiUU
+#. h68Rw
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
"TooltipLabel\n"
"value.text"
-msgid "Character Highlighting Color"
-msgstr ""
+msgid "Character Highlighting Color (in Text Box and Shapes)"
+msgstr "Цвят за осветяване на знаците (в текстови полета и фигури)"
#. SPsxZ
#: GenericCommands.xcu
@@ -20746,7 +20766,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Formula Object..."
-msgstr ""
+msgstr "Обект формула..."
#. CeBmP
#: GenericCommands.xcu
@@ -20756,7 +20776,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Formula Object"
-msgstr ""
+msgstr "Вмъкване на обект формула"
#. 2ykCZ
#: GenericCommands.xcu
@@ -20956,7 +20976,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Edit Template..."
-msgstr ""
+msgstr "Редактиране на шаблон..."
#. 3VmbE
#: GenericCommands.xcu
@@ -23388,15 +23408,15 @@ msgctxt ""
msgid "~Export As"
msgstr "Експортиране като"
-#. NaW49
+#. XZGNE
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export as PDF"
+msgstr "Експортиране като PDF"
#. YsFV2
#: GenericCommands.xcu
@@ -23418,15 +23438,15 @@ msgctxt ""
msgid "Export as PDF"
msgstr "Експортиране като PDF"
-#. JFz9A
+#. pCD7W
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
-msgid "PDF"
-msgstr "PDF"
+msgid "Export Directly as PDF"
+msgstr "Директно експортиране като PDF"
#. 8eSWp
#: GenericCommands.xcu
@@ -24686,7 +24706,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh document layout"
-msgstr ""
+msgstr "Опресняване оформлението на документа"
#. V8JAY
#: GenericCommands.xcu
@@ -25508,15 +25528,15 @@ msgctxt ""
msgid "Date Picker Content Control"
msgstr "Контрола за избор на дата"
-#. c5426
+#. NFhYp
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:DevelopmentToolsDockingWindow\n"
"Label\n"
"value.text"
-msgid "Development Tool"
-msgstr ""
+msgid "Development Tools"
+msgstr "Инструменти за разработка"
#. jLF5j
#: GenericCommands.xcu
@@ -25966,7 +25986,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change View"
-msgstr ""
+msgstr "Смяна на изгледа"
#. zfgMB
#: GenericCommands.xcu
@@ -25976,7 +25996,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "View"
-msgstr ""
+msgstr "Изглед"
#. ZxxTy
#: GenericCommands.xcu
@@ -26098,15 +26118,15 @@ msgctxt ""
msgid "No-~width Optional Break"
msgstr "Мека непрекъсваема връзка"
-#. G9edG
+#. Gjgjy
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Popups..uno:InsertZWNBSP\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
-msgid "No-width No ~Break"
-msgstr "Непрекъсваема връзка"
+msgid "Word ~Joiner"
+msgstr "Съединител на думи"
#. UvwGS
#: GenericCommands.xcu
@@ -26716,7 +26736,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inspect Object"
-msgstr ""
+msgstr "Инспектиране на обект"
#. uaVMn
#: ImpressWindowState.xcu
@@ -30536,7 +30556,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show All Changes Inline"
-msgstr ""
+msgstr "Показване на всички промени на място"
#. jVPG7
#: WriterCommands.xcu
@@ -30546,7 +30566,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "All ~Changes Inline"
-msgstr ""
+msgstr "Всички промени на място"
#. JQmVz
#: WriterCommands.xcu
@@ -30556,7 +30576,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Deletions In Margin"
-msgstr ""
+msgstr "Показване на изтриванията в полето"
#. Mo6US
#: WriterCommands.xcu
@@ -30566,7 +30586,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Deletions In Margin"
-msgstr ""
+msgstr "Изтривания в полето"
#. AcF7X
#: WriterCommands.xcu
@@ -30576,7 +30596,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Insertions In Margin"
-msgstr ""
+msgstr "Показване на вмъкванията в полето"
#. hCo6p
#: WriterCommands.xcu
@@ -30586,7 +30606,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Insertions In Margin"
-msgstr ""
+msgstr "Вмъквания в полето"
#. 7cFXL
#: WriterCommands.xcu
@@ -30746,7 +30766,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Formula Object..."
-msgstr ""
+msgstr "Обект формула..."
#. VaCbZ
#: WriterCommands.xcu
@@ -30756,7 +30776,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Formula Object"
-msgstr ""
+msgstr "Вмъкване на обект формула"
#. 4tQrL
#: WriterCommands.xcu
@@ -31356,7 +31376,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Load Styles from Template"
-msgstr ""
+msgstr "Зареждане на стилове от шаблон"
#. m6dbV
#: WriterCommands.xcu
@@ -32346,7 +32366,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Fo~rmula"
-msgstr ""
+msgstr "Текстова формула"
#. DAJui
#: WriterCommands.xcu
@@ -32356,7 +32376,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Text Formula"
-msgstr ""
+msgstr "Вмъкване на текстова формула"
#. DGAud
#: WriterCommands.xcu
@@ -32546,7 +32566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No List"
-msgstr ""
+msgstr "Без списък"
#. 3kGnA
#: WriterCommands.xcu
@@ -33378,6 +33398,16 @@ msgctxt ""
msgid "Restart Numbering"
msgstr "Започване на номерирането отначало"
+#. htXQ9
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:NumberingStart\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Restart Numbering"
+msgstr "Превключване на рестартирането на номерацията"
+
#. ofjeC
#: WriterCommands.xcu
msgctxt ""
@@ -33608,6 +33638,16 @@ msgctxt ""
msgid "Select Paragraph"
msgstr "Маркиране на абзац"
+#. GkfWK
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:SelectionCycle\n"
+"Label\n"
+"value.text"
+msgid "Select Cycle"
+msgstr "Превключване на селекцията"
+
#. GzD2B
#: WriterCommands.xcu
msgctxt ""
@@ -33876,7 +33916,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Character Highlighting Color"
-msgstr ""
+msgstr "Цвят за осветяване на знаците"
#. sVA9o
#: WriterCommands.xcu
@@ -33888,16 +33928,6 @@ msgctxt ""
msgid "Fields"
msgstr "Полета"
-#. LVtM7
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:CharBackgroundExt\n"
-"Label\n"
-"value.text"
-msgid "Highlight Fill"
-msgstr "Запълване с осветяване"
-
#. FEAFx
#: WriterCommands.xcu
msgctxt ""
@@ -34206,7 +34236,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~List"
-msgstr ""
+msgstr "Списък"
#. ZmR9V
#: WriterCommands.xcu
@@ -34348,15 +34378,25 @@ msgctxt ""
msgid "Selection Mode"
msgstr "Режим на избор"
-#. Ac5BP
+#. fK3Zr
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
"Label\n"
"value.text"
-msgid "Continue previous numbering"
-msgstr "Продължаване на предишното номериране"
+msgid "~Add to List"
+msgstr "Добавяне към списък"
+
+#. rbB7v
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:ContinueNumbering\n"
+"TooltipLabel\n"
+"value.text"
+msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
+msgstr "„Добавяне към списък“ добавя избраните абзаци към списък, който непосредствено ги предхожда."
#. oCEjg
#: WriterCommands.xcu
@@ -34866,7 +34906,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Strong Emphasis Character Style"
-msgstr ""
+msgstr "Знаков стил „Силно акцентиран“"
#. PZ7tA
#: WriterCommands.xcu
@@ -34906,7 +34946,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Quotation Character Style"
-msgstr ""
+msgstr "Знаков стил „Цитат“"
#. 9LD4r
#: WriterCommands.xcu
@@ -34966,7 +35006,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet • List Style"
-msgstr ""
+msgstr "Стил „Списък с водещи знаци •“"
#. VBvBU
#: WriterCommands.xcu
@@ -34976,7 +35016,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet • List Style"
-msgstr ""
+msgstr "Стил „Списък с водещи знаци •“"
#. BW4E6
#: WriterCommands.xcu
@@ -34986,7 +35026,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bullet • List Style"
-msgstr ""
+msgstr "Стил „Списък с водещи знаци •“"
#. mqYSC
#: WriterCommands.xcu
@@ -34996,7 +35036,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering 123 List Style"
-msgstr ""
+msgstr "Стил „Номериран списък 123“"
#. D5sRy
#: WriterCommands.xcu
@@ -35006,7 +35046,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering 123 List Style"
-msgstr ""
+msgstr "Стил „Номериран списък 123“"
#. 5AJuo
#: WriterCommands.xcu
@@ -35016,7 +35056,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering 123 List Style"
-msgstr ""
+msgstr "Стил „Номериран списък 123“"
#. xAyDX
#: WriterCommands.xcu
@@ -35026,7 +35066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "Стил „Номериран списък ABC“"
#. uENeD
#: WriterCommands.xcu
@@ -35036,7 +35076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "Стил „Номериран списък ABC“"
#. c6BjB
#: WriterCommands.xcu
@@ -35046,7 +35086,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "Стил „Номериран списък ABC“"
#. uxkph
#: WriterCommands.xcu
@@ -35056,7 +35096,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "Стил „Номериран списък abc“"
#. Lcogs
#: WriterCommands.xcu
@@ -35066,7 +35106,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "Стил „Номериран списък abc“"
#. fYB5d
#: WriterCommands.xcu
@@ -35076,7 +35116,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "Стил „Номериран списък abc“"
#. UHSTJ
#: WriterCommands.xcu
@@ -35086,7 +35126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering IVX List Style"
-msgstr ""
+msgstr "Стил „Номериран списък IVX“"
#. QwUVJ
#: WriterCommands.xcu
@@ -35096,7 +35136,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering IVX List Style"
-msgstr ""
+msgstr "Стил „Номериран списък IVX“"
#. jXDLc
#: WriterCommands.xcu
@@ -35106,7 +35146,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering IVX List Style"
-msgstr ""
+msgstr "Стил „Номериран списък IVX“"
#. Pe4gB
#: WriterCommands.xcu
@@ -35116,7 +35156,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ivx List Style"
-msgstr ""
+msgstr "Стил „Номериран списък ivx“"
#. dHZMF
#: WriterCommands.xcu
@@ -35126,7 +35166,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering ivx List Style"
-msgstr ""
+msgstr "Стил „Номериран списък ivx“"
#. ZSf5C
#: WriterCommands.xcu
@@ -35136,7 +35176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ivx List Style"
-msgstr ""
+msgstr "Стил „Номериран списък ivx“"
#. EJceH
#: WriterCommands.xcu
@@ -35146,7 +35186,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default Table Style"
-msgstr ""
+msgstr "Подразбиран стил за таблици"
#. 4AbSB
#: WriterCommands.xcu
diff --git a/source/bg/oox/messages.po b/source/bg/oox/messages.po
index f142c45a29c..3e2706be078 100644
--- a/source/bg/oox/messages.po
+++ b/source/bg/oox/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2019-11-05 12:45+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://vm137.documentfoundation.org/projects/libo_ui-master/ooxmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/ooxmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
#. C5e9E
#: oox/inc/strings.hrc:15
@@ -30,64 +30,64 @@ msgstr "Заглавие на ос"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/reportdesign/messages.po b/source/bg/reportdesign/messages.po
index 3bb484426d1..80feea172ec 100644
--- a/source/bg/reportdesign/messages.po
+++ b/source/bg/reportdesign/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-25 14:56+0100\n"
-"PO-Revision-Date: 2020-01-17 18:09+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1531988803.000000\n"
#. FBVr9
@@ -175,67 +175,67 @@ msgstr "Центрирано"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. NaDFE
#: reportdesign/inc/strings.hrc:25
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index 5caa5efbef5..9eafff16884 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-12-14 08:58+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-03-09 11:41+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-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562424086.000000\n"
#. kBovX
@@ -85,67 +85,67 @@ msgstr "Приставки"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. BDDVk
#. * This file is reserved for string IDs of permanently loaded resident string
@@ -1061,6 +1061,13 @@ msgid ""
"• contain [ ] * ? : / \\ \n"
"• use ' (apostrophe) as first or last character."
msgstr ""
+"Невалидно име на лист.\n"
+"\n"
+"Името на лист не трябва:\n"
+"• да е празно\n"
+"• вече да съществува\n"
+"• да съдържа [ ] * ? : / \\ \n"
+"• да съдържа ' (апостроф) като първи или последен знак."
#. CGAdE
#: sc/inc/globstr.hrc:185
@@ -9131,7 +9138,7 @@ msgstr "Число 1, число 2, ... са числени аргументи,
#: sc/inc/scfuncs.hrc:1941
msgctxt "SC_OPCODE_PERCENTILE"
msgid "Returns the alpha percentile of a sample."
-msgstr ""
+msgstr "Връща алфа-процентен процентил на извадка."
#. KruQH
#: sc/inc/scfuncs.hrc:1942
@@ -9155,7 +9162,7 @@ msgstr "Алфа"
#: sc/inc/scfuncs.hrc:1945
msgctxt "SC_OPCODE_PERCENTILE"
msgid "The percentile value between 0 and 1, inclusive."
-msgstr ""
+msgstr "Стойността на процентила, в заворения интервал 0...1."
#. pEFyv
#: sc/inc/scfuncs.hrc:1951
@@ -20019,7 +20026,7 @@ msgstr "Изтрива избрания елемент или елементи
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:216
msgctxt "conditionalformatdialog|up"
msgid "_Up"
-msgstr ""
+msgstr "Нагоре"
#. fGKvB
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:223
@@ -20031,7 +20038,7 @@ msgstr "Увеличава приоритета на избраното усло
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:235
msgctxt "conditionalformatdialog|down"
msgid "Do_wn"
-msgstr ""
+msgstr "Надолу"
#. ykMES
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:242
@@ -20661,7 +20668,7 @@ msgstr "Формула"
#: sc/uiconfig/scalc/ui/databaroptions.ui:145
msgctxt "databaroptions|extended_tip|min"
msgid "Select the way the minimum is set"
-msgstr ""
+msgstr "Изберете начина на задаване на минимума."
#. DiBWL
#: sc/uiconfig/scalc/ui/databaroptions.ui:160
@@ -20705,23 +20712,23 @@ msgctxt "databaroptions|max"
msgid "Formula"
msgstr "Формула"
-#. L6nxo
+#. TJFRE
#: sc/uiconfig/scalc/ui/databaroptions.ui:170
msgctxt "databaroptions|extended_tip|max"
-msgid "Selct the way the maximum is set"
-msgstr ""
+msgid "Select the way the maximum is set"
+msgstr "Изберете начина на задаване на максимума."
#. 5P3sd
#: sc/uiconfig/scalc/ui/databaroptions.ui:187
msgctxt "datbaroptions|extended_tip|min_value"
msgid "Enter the value for the minimum"
-msgstr ""
+msgstr "Въведете стойността за минимума."
#. oKw6w
#: sc/uiconfig/scalc/ui/databaroptions.ui:204
msgctxt "datbaroptions|extended_tip|max_value"
msgid "Enter the value for the maximum"
-msgstr ""
+msgstr "Въведете стойността за максимума."
#. TKfBV
#: sc/uiconfig/scalc/ui/databaroptions.ui:219
@@ -20745,13 +20752,13 @@ msgstr "Отрицателни:"
#: sc/uiconfig/scalc/ui/databaroptions.ui:287
msgctxt "databaroptions|extended_tip|positive_colour"
msgid "Select the color for the positive values"
-msgstr ""
+msgstr "Изберете цвят за положителните стойности."
#. fHCLy
#: sc/uiconfig/scalc/ui/databaroptions.ui:306
msgctxt "datbaroptions|extended_tip|negative_colour"
msgid "Select the color for the negative values"
-msgstr ""
+msgstr "Изберете цвят за отрицателните стойности."
#. zbBGo
#: sc/uiconfig/scalc/ui/databaroptions.ui:320
@@ -20775,7 +20782,7 @@ msgstr "Градиент"
#: sc/uiconfig/scalc/ui/databaroptions.ui:339
msgctxt "databaroptions|extended_tip|fill_type"
msgid "Select if the fill in color is solid or gradient."
-msgstr ""
+msgstr "Изберете дали да се запълва с плътен цвят или с градиент."
#. cA4CB
#: sc/uiconfig/scalc/ui/databaroptions.ui:354
@@ -20817,13 +20824,13 @@ msgstr "Няма"
#: sc/uiconfig/scalc/ui/databaroptions.ui:424
msgctxt "databaroptions|extended_tip|axis_pos"
msgid "Select the positions of vertical axis in the cell to start fill."
-msgstr ""
+msgstr "Изберете позицията на вертикалната ос, от която да започва запълването в клетката."
#. eBCGQ
#: sc/uiconfig/scalc/ui/databaroptions.ui:443
msgctxt "datbaroptions|extended_tip|axis_colour"
msgid "Set the color of the vertical axis"
-msgstr ""
+msgstr "Задайте цвета на вертикалната ос."
#. DjBHB
#: sc/uiconfig/scalc/ui/databaroptions.ui:458
@@ -20847,13 +20854,13 @@ msgstr "Максимална дължина (%):"
#: sc/uiconfig/scalc/ui/databaroptions.ui:524
msgctxt "databaroptions|extended_tip|min_length"
msgid "Set the minimum bar length in percentage with respect to the cell"
-msgstr ""
+msgstr "Задайте минималната дължина на лентите в проценти спрямо клетката."
#. hGFk3
#: sc/uiconfig/scalc/ui/databaroptions.ui:541
msgctxt "databaroptions|extended_tip|max_length"
msgid "Set the maximum bar length in percentage with respect to the cell"
-msgstr ""
+msgstr "Задайте максималната дължина на лентите в проценти спрямо клетката."
#. 9fekJ
#: sc/uiconfig/scalc/ui/databaroptions.ui:556
@@ -20871,7 +20878,7 @@ msgstr "Показване само на лента"
#: sc/uiconfig/scalc/ui/databaroptions.ui:579
msgctxt "datbaroptions|extended_tip|only_bar"
msgid "Select to have only the bar visible and have value invisible"
-msgstr ""
+msgstr "Отметнете, ако искате да се вижда лентата, но не и стойността."
#. 2VgJW
#: sc/uiconfig/scalc/ui/databaroptions.ui:592
@@ -23734,7 +23741,7 @@ msgstr "Вмъква списък на всички наименувани об
#: sc/uiconfig/scalc/ui/insertname.ui:70
msgctxt "insertname|paste"
msgid "_Paste"
-msgstr ""
+msgstr "Поставяне"
#. TNPzH
#: sc/uiconfig/scalc/ui/insertname.ui:79
@@ -24727,231 +24734,231 @@ msgid "No solution was found."
msgstr "Не бе намерено решение."
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3009
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "Файл"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3029
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3028
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Помощ"
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3084
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3083
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "Файл"
#. EBQTu
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3560
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3559
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Задайте кантовете на избраните клетки."
#. f8rkJ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3847
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3846
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Увеличаване на отстъпа"
#. TBHRy
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3861
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3860
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Намаляване на отстъпа"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4848
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4792
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4957
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4901
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5516
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5460
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6037
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5981
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6145
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6089
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
#. xmARL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6556
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6582
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7020
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6500
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6526
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6964
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Подравняване на обект"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7245
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7189
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Оформление"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7274
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Оформление"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "Статистика"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8687
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8631
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Данни"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8796
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8740
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Данни"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9618
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9562
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9704
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9648
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10610
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10554
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10696
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10640
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11749
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11692
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11874
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11817
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13094
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13036
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13204
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13146
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13676
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13618
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразуване"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13977
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13918
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14087
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14028
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Обект"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14663
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14603
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14771
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14711
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15164
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15104
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печат"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15248
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15188
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печат"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16083
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16023
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16168
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16108
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16225
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16165
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:16299
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16239
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17467
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17612
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17552
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Инструменти"
@@ -26964,7 +26971,7 @@ msgstr "Специално поставяне"
#: sc/uiconfig/scalc/ui/pastespecial.ui:124
msgctxt "pastespecial|paste_all"
msgid "_All"
-msgstr ""
+msgstr "Всичко"
#. Labin
#: sc/uiconfig/scalc/ui/pastespecial.ui:133
@@ -27036,7 +27043,7 @@ msgstr "Вмъкват се форматните атрибути на клет
#: sc/uiconfig/scalc/ui/pastespecial.ui:239
msgctxt "pastespecial|objects"
msgid "Ob_jects"
-msgstr ""
+msgstr "Обекти"
#. DZsnr
#: sc/uiconfig/scalc/ui/pastespecial.ui:247
@@ -27048,7 +27055,7 @@ msgstr "Вмъкват се обектите, съдържащи се в изб
#: sc/uiconfig/scalc/ui/pastespecial.ui:258
msgctxt "pastespecial|formulas"
msgid "F_ormulas"
-msgstr ""
+msgstr "Формули"
#. Na5Ba
#: sc/uiconfig/scalc/ui/pastespecial.ui:266
@@ -27060,7 +27067,7 @@ msgstr "Вмъкват се клетки, съдържащи формули."
#: sc/uiconfig/scalc/ui/pastespecial.ui:281
msgctxt "pastespecial|label1"
msgid "Paste"
-msgstr ""
+msgstr "Поставяне"
#. nJiy4
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
@@ -27102,7 +27109,7 @@ msgstr "Изважда стойностите на клетките в клип
#: sc/uiconfig/scalc/ui/pastespecial.ui:372
msgctxt "pastespecial|multiply"
msgid "_Multiply"
-msgstr ""
+msgstr "Умножение"
#. jkRDm
#: sc/uiconfig/scalc/ui/pastespecial.ui:381
@@ -27114,7 +27121,7 @@ msgstr "Умножава стойностите на клетките в кли
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
msgctxt "pastespecial|divide"
msgid "_Divide"
-msgstr ""
+msgstr "Деление"
#. 9VKdS
#: sc/uiconfig/scalc/ui/pastespecial.ui:402
@@ -27144,7 +27151,7 @@ msgstr "Вмъкнатите клетки ще заменят клетките
#: sc/uiconfig/scalc/ui/pastespecial.ui:468
msgctxt "pastespecial|move_down"
msgid "_Down"
-msgstr ""
+msgstr "Надолу"
#. BNALN
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
@@ -27174,7 +27181,7 @@ msgstr "Изместване на клетките"
#: sc/uiconfig/scalc/ui/pastespecial.ui:550
msgctxt "pastespecial|paste_values_only|label"
msgid "_Values Only"
-msgstr ""
+msgstr "Само стойности"
#. XyU8o
#: sc/uiconfig/scalc/ui/pastespecial.ui:554
@@ -27186,7 +27193,7 @@ msgstr "Само стойности"
#: sc/uiconfig/scalc/ui/pastespecial.ui:568
msgctxt "pastespecial|paste_values_formats|label"
msgid "Values & _Formats"
-msgstr ""
+msgstr "Стойности и формати"
#. 7GuDi
#: sc/uiconfig/scalc/ui/pastespecial.ui:572
@@ -27198,43 +27205,43 @@ msgstr "Стойности и формати"
#: sc/uiconfig/scalc/ui/pastespecial.ui:587
msgctxt "pastespecial|paste_format|label"
msgid "Formats Onl_y"
-msgstr ""
+msgstr "Само формати"
#. Cvyjn
#: sc/uiconfig/scalc/ui/pastespecial.ui:592
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
-msgstr ""
+msgstr "Само формати"
#. YGdhH
#: sc/uiconfig/scalc/ui/pastespecial.ui:606
msgctxt "pastespecial|paste_transpose|label"
msgid "_Transpose All"
-msgstr ""
+msgstr "Транспониране на всичко"
#. sbLGi
#: sc/uiconfig/scalc/ui/pastespecial.ui:610
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
-msgstr ""
+msgstr "Транспониране на всичко"
#. 4ETCT
#: sc/uiconfig/scalc/ui/pastespecial.ui:632
msgctxt "pastespecial|cbImmediately"
msgid "_Run immediately"
-msgstr ""
+msgstr "Незабавно изпълнение"
#. YD43i
#: sc/uiconfig/scalc/ui/pastespecial.ui:652
msgctxt "pastespecial|frPresets"
msgid "Presets"
-msgstr ""
+msgstr "Готови настройки"
#. nuJd9
#: sc/uiconfig/scalc/ui/pastespecial.ui:682
msgctxt "pastespecial|link"
msgid "As _Link"
-msgstr ""
+msgstr "Като връзка"
#. Bg9dc
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -27246,7 +27253,7 @@ msgstr "Вмъква диапазона от клетки като връзка,
#: sc/uiconfig/scalc/ui/pastespecial.ui:701
msgctxt "pastespecial|transpose"
msgid "Trans_pose"
-msgstr ""
+msgstr "Транспониране"
#. P3eE4
#: sc/uiconfig/scalc/ui/pastespecial.ui:709
@@ -27258,7 +27265,7 @@ msgstr "Редовете на диапазона в клипборда се по
#: sc/uiconfig/scalc/ui/pastespecial.ui:720
msgctxt "pastespecial|skip_empty"
msgid "_Skip empty cells"
-msgstr ""
+msgstr "Пропускане на празните клетки"
#. BodqB
#: sc/uiconfig/scalc/ui/pastespecial.ui:724
@@ -27276,7 +27283,7 @@ msgstr "Празните клетки от клипборда няма да за
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|OptionsFrame"
msgid "Options"
-msgstr ""
+msgstr "Настройки"
#. ypkML
#: sc/uiconfig/scalc/ui/pastespecial.ui:772
@@ -30594,7 +30601,7 @@ msgstr "Стандартен филтър"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:46
msgctxt "standardfilterdialog|clear"
msgid "_Clear"
-msgstr ""
+msgstr "Изчистване"
#. kFyDu
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:70
@@ -31740,7 +31747,7 @@ msgstr "Настройки за импортиране"
#: sc/uiconfig/scalc/ui/textimportoptions.ui:57
msgctxt "textimportoptions|keepasking"
msgid "Keep asking during this session"
-msgstr ""
+msgstr "Питане всеки път през тази сесия"
#. Ug4iB
#: sc/uiconfig/scalc/ui/textimportoptions.ui:102
diff --git a/source/bg/scaddins/messages.po b/source/bg/scaddins/messages.po
index afb340ed021..3e3a6e34bae 100644
--- a/source/bg/scaddins/messages.po
+++ b/source/bg/scaddins/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2020-01-22 12:07+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1507237614.000000\n"
#. i8Y7Z
@@ -4067,67 +4067,67 @@ msgstr "Масивът от приложени лихви"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. VGRBw
#: scaddins/inc/datefunc.hrc:27
diff --git a/source/bg/sccomp/messages.po b/source/bg/sccomp/messages.po
index 3490727bc3f..8780f93b846 100644
--- a/source/bg/sccomp/messages.po
+++ b/source/bg/sccomp/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2017-12-02 13:26+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sccompmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1512221170.000000\n"
#. whDxm
@@ -103,64 +103,64 @@ msgstr "Достигнат е максималният срок за решав
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index 05370c293c6..39a0d3a29ae 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-11-04 20:47+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+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"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562423894.000000\n"
#. WDjkB
@@ -217,67 +217,67 @@ msgstr "Селекция"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. uvDNG
#: sd/inc/errhdl.hrc:31
@@ -899,158 +899,164 @@ msgstr ""
"\n"
"Да се мащабират ли копираните обекти според новия размер на страницата?"
-#. NzFb7
+#. YC4AD
#: sd/inc/strings.hrc:107
+msgctxt "STR_SCALE_TOOLTIP"
+msgid "Scaling factor of the document; right-click to change."
+msgstr "Коефициент на мащабиране на документа; щракнете с десния бутон, за да го промените."
+
+#. NzFb7
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "Създаване на кадри"
#. ckve2
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "Промяна на формата на страницата"
#. FDTtA
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "Промяна на полетата на страницата"
#. H6ceS
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "~Редактиране"
#. 3ikze
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Изтриване на кадри"
#. xbTgp
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "Форматът на документа не е съвместим със зададения принтер."
#. s6Pco
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Файлът с изображението не може да бъде отворен"
#. PKXVG
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Изображението не може да бъде прочетено"
#. Wnx5i
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Непознат формат на изображение"
#. GH2S7
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Версията на файла с изображението не се поддържа"
#. uqpAS
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Не е намерен филтър за изображението"
#. qdeHG
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "Няма достатъчно памет за импортиране на изображението"
#. BdsAg
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Обекти"
#. SDm68
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "Проверката на правописа в целия документ е завършена."
#. gefTJ
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "Проверката на правописа за избраните обекти е завършена."
#. aeQeS
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "Желаете ли преобразуване на избрания обект в крива?"
#. wLsLp
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "Промяна на обекта \"$\""
#. s8VC9
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "Оформление на кадър"
#. SUpXD
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr "Оформление на страница"
#. BFzyf
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "Вмъкване на файл"
#. WGRwQ
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "Вмъкване на специален знак"
#. NFpGf
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "Прилагане на оформление за презентация"
#. ZMS5R
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:130
msgctxt "STR_PLAY"
msgid "~Play"
msgstr "~Възпроизвеждане"
#. mZfMV
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:131
msgctxt "STR_STOP"
msgid "Sto~p"
msgstr "~Спиране"
#. XFDFX
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:132
msgctxt "STR_UNDO_ORIGINALSIZE"
msgid "Original Size"
msgstr "Оригинален размер"
#. nwDUz
-#: sd/inc/strings.hrc:132
+#: sd/inc/strings.hrc:133
msgctxt "STR_WARN_SCALE_FAIL"
msgid ""
"The specified scale is invalid.\n"
@@ -1060,128 +1066,128 @@ msgstr ""
"Желаете ли да въведете нов?"
#. aZBvQ
-#: sd/inc/strings.hrc:133
+#: sd/inc/strings.hrc:134
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
msgstr "Без действие"
#. Cd6E6
-#: sd/inc/strings.hrc:134
+#: sd/inc/strings.hrc:135
msgctxt "STR_CLICK_ACTION_PREVPAGE"
msgid "Go to previous slide"
msgstr "Преход към предходния кадър"
#. MafdG
-#: sd/inc/strings.hrc:135
+#: sd/inc/strings.hrc:136
msgctxt "STR_CLICK_ACTION_NEXTPAGE"
msgid "Go to next slide"
msgstr "Преход към следващия кадър"
#. s5NSC
-#: sd/inc/strings.hrc:136
+#: sd/inc/strings.hrc:137
msgctxt "STR_CLICK_ACTION_FIRSTPAGE"
msgid "Go to first slide"
msgstr "Преход към първия кадър"
#. 6orJ5
-#: sd/inc/strings.hrc:137
+#: sd/inc/strings.hrc:138
msgctxt "STR_CLICK_ACTION_LASTPAGE"
msgid "Go to last slide"
msgstr "Преход към последния кадър"
#. ddBWz
-#: sd/inc/strings.hrc:138
+#: sd/inc/strings.hrc:139
msgctxt "STR_CLICK_ACTION_BOOKMARK"
msgid "Go to page or object"
msgstr "Преминаване към страница или обект"
#. TMn3K
-#: sd/inc/strings.hrc:139
+#: sd/inc/strings.hrc:140
msgctxt "STR_CLICK_ACTION_DOCUMENT"
msgid "Go to document"
msgstr "Преход към документ"
#. 3h9F4
-#: sd/inc/strings.hrc:140
+#: sd/inc/strings.hrc:141
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
msgstr "Възпроизвеждане на звук"
#. FtLYt
-#: sd/inc/strings.hrc:141
+#: sd/inc/strings.hrc:142
msgctxt "STR_CLICK_ACTION_VERB"
msgid "Start object action"
msgstr "Изпълняване на действието на обекта"
#. aND4z
-#: sd/inc/strings.hrc:142
+#: sd/inc/strings.hrc:143
msgctxt "STR_CLICK_ACTION_PROGRAM"
msgid "Run program"
msgstr "Стартиране на програма"
#. CZRYF
-#: sd/inc/strings.hrc:143
+#: sd/inc/strings.hrc:144
msgctxt "STR_CLICK_ACTION_MACRO"
msgid "Run macro"
msgstr "Стартиране на макрос"
#. HqCxG
-#: sd/inc/strings.hrc:144
+#: sd/inc/strings.hrc:145
msgctxt "STR_CLICK_ACTION_STOPPRESENTATION"
msgid "Exit presentation"
msgstr "Изход от презентацията"
#. DoKpk
-#: sd/inc/strings.hrc:145
+#: sd/inc/strings.hrc:146
msgctxt "STR_EFFECTDLG_JUMP"
msgid "Target"
msgstr "Цел"
#. TCCEB
-#: sd/inc/strings.hrc:146
+#: sd/inc/strings.hrc:147
msgctxt "STR_EFFECTDLG_ACTION"
msgid "Act~ion"
msgstr "~Действие"
#. KJhf2
-#: sd/inc/strings.hrc:147
+#: sd/inc/strings.hrc:148
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
msgstr "Звук"
#. QPjoC
-#: sd/inc/strings.hrc:148
+#: sd/inc/strings.hrc:149
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
msgid "Slide / Object"
msgstr "Кадър/обект"
#. DqwAr
-#: sd/inc/strings.hrc:149
+#: sd/inc/strings.hrc:150
msgctxt "STR_EFFECTDLG_DOCUMENT"
msgid "Document"
msgstr "Документ"
#. V3zWJ
-#: sd/inc/strings.hrc:150
+#: sd/inc/strings.hrc:151
msgctxt "STR_EFFECTDLG_PROGRAM"
msgid "Program"
msgstr "Програма"
#. EdABV
-#: sd/inc/strings.hrc:151
+#: sd/inc/strings.hrc:152
msgctxt "STR_EFFECTDLG_MACRO"
msgid "Macro"
msgstr "Макрос"
#. huv68
-#: sd/inc/strings.hrc:152
+#: sd/inc/strings.hrc:153
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
msgstr "Прожектира се: %s"
#. uo4o3
#. To translators: this is the spinbutton in the slidesorter toolbar to set the number of slides to show per row
-#: sd/inc/strings.hrc:155
+#: sd/inc/strings.hrc:156
msgctxt "STR_SLIDES"
msgid "%1 slide"
msgid_plural "%1 slides"
@@ -1190,254 +1196,254 @@ msgstr[1] "%1 кадъра"
#. DhF9g
#. Strings for animation effects
-#: sd/inc/strings.hrc:158
+#: sd/inc/strings.hrc:159
msgctxt "STR_INSERT_TEXT"
msgid "Insert Text"
msgstr "Вмъкване на текст"
#. kz9AV
-#: sd/inc/strings.hrc:159
+#: sd/inc/strings.hrc:160
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
msgstr "Зареждане на кадър образец"
#. HxEp8
-#: sd/inc/strings.hrc:160
+#: sd/inc/strings.hrc:161
msgctxt "STR_GLUE_ESCDIR_SMART"
msgid "Smart"
msgstr "Интелигентно"
#. XUxUz
-#: sd/inc/strings.hrc:161
+#: sd/inc/strings.hrc:162
msgctxt "STR_GLUE_ESCDIR_LEFT"
msgid "Left"
msgstr "Ляво"
#. cmeRq
-#: sd/inc/strings.hrc:162
+#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_RIGHT"
msgid "Right"
msgstr "Дясно"
#. LRG3Z
-#: sd/inc/strings.hrc:163
+#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_TOP"
msgid "Top"
msgstr "Горе"
#. VP34S
-#: sd/inc/strings.hrc:164
+#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_BOTTOM"
msgid "Bottom"
msgstr "Долу"
#. bVVKo
-#: sd/inc/strings.hrc:165
+#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
msgstr "Горе ляво?"
#. vc2Yo
-#: sd/inc/strings.hrc:166
+#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
msgstr "Долу ляво?"
#. MMimZ
-#: sd/inc/strings.hrc:167
+#: sd/inc/strings.hrc:168
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
msgstr "Горе дясно?"
#. FvbbG
-#: sd/inc/strings.hrc:168
+#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
msgstr "Горе дясно?"
#. G6VnG
-#: sd/inc/strings.hrc:169
+#: sd/inc/strings.hrc:170
msgctxt "STR_GLUE_ESCDIR_HORZ"
msgid "Horizontal"
msgstr "Хоризонтално"
#. dREDm
-#: sd/inc/strings.hrc:170
+#: sd/inc/strings.hrc:171
msgctxt "STR_GLUE_ESCDIR_VERT"
msgid "Vertical"
msgstr "Вертикално"
#. pM95w
-#: sd/inc/strings.hrc:171
+#: sd/inc/strings.hrc:172
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
msgstr "Всички?"
#. iFawt
-#: sd/inc/strings.hrc:172
+#: sd/inc/strings.hrc:173
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
msgid "This action can't be run in the live mode."
msgstr "Това действие е недопустимо в режим \"на живо\"."
#. oLTpq
-#: sd/inc/strings.hrc:173
+#: sd/inc/strings.hrc:174
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
msgstr "Назад"
#. tDRYt
-#: sd/inc/strings.hrc:174
+#: sd/inc/strings.hrc:175
msgctxt "STR_PUBLISH_NEXT"
msgid "Continue"
msgstr "Продължение"
#. zh6Ad
-#: sd/inc/strings.hrc:175
+#: sd/inc/strings.hrc:176
msgctxt "STR_PUBLISH_OUTLINE"
msgid "Overview"
msgstr "Обзор"
#. B6jDL
-#: sd/inc/strings.hrc:176
+#: sd/inc/strings.hrc:177
msgctxt "STR_EYEDROPPER"
msgid "Color Replacer"
msgstr "Замяна на цветове"
#. 9SRMu
-#: sd/inc/strings.hrc:177
+#: sd/inc/strings.hrc:178
msgctxt "STR_UNDO_MORPHING"
msgid "Cross-fading"
msgstr "Преливане"
#. PaTdN
-#: sd/inc/strings.hrc:178
+#: sd/inc/strings.hrc:179
msgctxt "STR_UNDO_EXPAND_PAGE"
msgid "Expand Slide"
msgstr "Разширяване на кадъра"
#. kmkAp
-#: sd/inc/strings.hrc:179
+#: sd/inc/strings.hrc:180
msgctxt "STR_UNDO_SUMMARY_PAGE"
msgid "Table of Contents Slide"
msgstr "Кадър - съдържание"
#. m5tvp
-#: sd/inc/strings.hrc:180
+#: sd/inc/strings.hrc:181
msgctxt "STR_TWAIN_NO_SOURCE_UNX"
msgid "No SANE source is available at the moment."
msgstr "В момента не е достъпен източник SANE."
#. EW8j8
-#: sd/inc/strings.hrc:181
+#: sd/inc/strings.hrc:182
msgctxt "STR_TWAIN_NO_SOURCE"
msgid "At present, no TWAIN source is available."
msgstr "В момента не е достъпен източник TWAIN."
#. nsjMC
-#: sd/inc/strings.hrc:182
+#: sd/inc/strings.hrc:183
msgctxt "STR_FIX"
msgid "Fixed"
msgstr "Фиксиран"
#. m94yg
-#: sd/inc/strings.hrc:183
+#: sd/inc/strings.hrc:184
msgctxt "STR_VAR"
msgid "Variable"
msgstr "Променлив"
#. eDfmL
-#: sd/inc/strings.hrc:184
+#: sd/inc/strings.hrc:185
msgctxt "STR_STANDARD_NORMAL"
msgid "Standard"
msgstr "Стандартен"
#. iPFdc
-#: sd/inc/strings.hrc:185
+#: sd/inc/strings.hrc:186
msgctxt "STR_STANDARD_SMALL"
msgid "Standard (short)"
msgstr "Стандартен (къс)"
#. f5DSg
-#: sd/inc/strings.hrc:186
+#: sd/inc/strings.hrc:187
msgctxt "STR_STANDARD_BIG"
msgid "Standard (long)"
msgstr "Стандартен (дълъг)"
#. 8d95x
-#: sd/inc/strings.hrc:187
+#: sd/inc/strings.hrc:188
msgctxt "STR_FILEFORMAT_NAME_EXT"
msgid "File name"
msgstr "Име на файл"
#. uguk9
-#: sd/inc/strings.hrc:188
+#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_FULLPATH"
msgid "Path/File name"
msgstr "Път/име на файл"
#. cZzcW
-#: sd/inc/strings.hrc:189
+#: sd/inc/strings.hrc:190
msgctxt "STR_FILEFORMAT_PATH"
msgid "Path"
msgstr "Път"
#. spGHx
-#: sd/inc/strings.hrc:190
+#: sd/inc/strings.hrc:191
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
msgstr "Име на файл без разширението"
#. M4uEt
-#: sd/inc/strings.hrc:191
+#: sd/inc/strings.hrc:192
msgctxt "STR_NEW_CUSTOMSHOW"
msgid "New Custom Slide Show"
msgstr "Нова прожекция по избор"
#. FDwKp
-#: sd/inc/strings.hrc:192
+#: sd/inc/strings.hrc:193
msgctxt "STR_COPY_CUSTOMSHOW"
msgid "Copy "
msgstr "Копиране "
#. G4C8x
-#: sd/inc/strings.hrc:193
+#: sd/inc/strings.hrc:194
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
msgstr "Презентация на %PRODUCTNAME (Impress 6)"
#. rxDQB
-#: sd/inc/strings.hrc:194
+#: sd/inc/strings.hrc:195
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Drawing format (Draw 6)"
msgstr "Рисунка на %PRODUCTNAME (Draw 6)"
#. 9G2Ea
-#: sd/inc/strings.hrc:195
+#: sd/inc/strings.hrc:196
msgctxt "STR_BREAK_METAFILE"
msgid "Ungroup Metafile(s)..."
msgstr "Разгрупиране на метафайл(ове)..."
#. hACxz
-#: sd/inc/strings.hrc:196
+#: sd/inc/strings.hrc:197
msgctxt "STR_BREAK_FAIL"
msgid "It was not possible to ungroup all drawing objects."
msgstr "Разгрупирането на всички графични обекти не бе възможно."
#. zjsSM
-#: sd/inc/strings.hrc:197
+#: sd/inc/strings.hrc:198
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Presentation"
msgstr "Презентация на %PRODUCTNAME %PRODUCTVERSION"
#. BJiWE
-#: sd/inc/strings.hrc:198
+#: sd/inc/strings.hrc:199
msgctxt "STR_GRAPHIC_DOCUMENT_FULLTYPE_80"
msgid "%PRODUCTNAME %PRODUCTVERSION Drawing"
msgstr "Рисунка на %PRODUCTNAME %PRODUCTVERSION"
#. GhvSg
#. HtmlExport
-#: sd/inc/strings.hrc:201
+#: sd/inc/strings.hrc:202
msgctxt "STR_PUBDLG_SAMENAME"
msgid ""
"A design already exists with this name.\n"
@@ -1447,157 +1453,157 @@ msgstr ""
"Желаете ли да го замените?"
#. bnA2v
-#: sd/inc/strings.hrc:202
+#: sd/inc/strings.hrc:203
msgctxt "STR_HTMLATTR_TEXT"
msgid "Text"
msgstr "Текст"
#. AyWNY
-#: sd/inc/strings.hrc:203
+#: sd/inc/strings.hrc:204
msgctxt "STR_HTMLATTR_LINK"
msgid "Hyperlink"
msgstr "Хипервръзка"
#. GAFdD
-#: sd/inc/strings.hrc:204
+#: sd/inc/strings.hrc:205
msgctxt "STR_HTMLATTR_VLINK"
msgid "Visited link"
msgstr "Посетена връзка"
#. TceZ2
-#: sd/inc/strings.hrc:205
+#: sd/inc/strings.hrc:206
msgctxt "STR_HTMLATTR_ALINK"
msgid "Active link"
msgstr "Активна връзка"
#. XULM8
-#: sd/inc/strings.hrc:206
+#: sd/inc/strings.hrc:207
msgctxt "STR_HTMLEXP_NOTES"
msgid "Notes"
msgstr "Бележки"
#. XFffn
-#: sd/inc/strings.hrc:207
+#: sd/inc/strings.hrc:208
msgctxt "STR_HTMLEXP_CONTENTS"
msgid "Table of contents"
msgstr "Съдържание"
#. TBLHL
-#: sd/inc/strings.hrc:208
+#: sd/inc/strings.hrc:209
msgctxt "STR_HTMLEXP_CLICKSTART"
msgid "Click here to start"
msgstr "Щракнете тук за старт"
#. BVDhX
-#: sd/inc/strings.hrc:209
+#: sd/inc/strings.hrc:210
msgctxt "STR_HTMLEXP_AUTHOR"
msgid "Author"
msgstr "Автор"
#. CfEHY
-#: sd/inc/strings.hrc:210
+#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
msgstr "Е-поща"
#. pArSC
-#: sd/inc/strings.hrc:211
+#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
msgid "Homepage"
msgstr "Домашна страница"
#. ohEA7
-#: sd/inc/strings.hrc:212
+#: sd/inc/strings.hrc:213
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
msgstr "Допълнителна информация"
#. AeG6C
-#: sd/inc/strings.hrc:213
+#: sd/inc/strings.hrc:214
msgctxt "STR_HTMLEXP_DOWNLOAD"
msgid "Download presentation"
msgstr "Сваляне на презентацията"
#. 22D9n
-#: sd/inc/strings.hrc:214
+#: sd/inc/strings.hrc:215
msgctxt "STR_HTMLEXP_NOFRAMES"
msgid "Unfortunately your browser does not support floating frames."
msgstr "За съжаление Вашият браузър не поддържа плаващи рамки."
#. x7CBF
-#: sd/inc/strings.hrc:215
+#: sd/inc/strings.hrc:216
msgctxt "STR_HTMLEXP_FIRSTPAGE"
msgid "First page"
msgstr "Първа страница"
#. 8tJHf
-#: sd/inc/strings.hrc:216
+#: sd/inc/strings.hrc:217
msgctxt "STR_HTMLEXP_LASTPAGE"
msgid "Last page"
msgstr "Последна страница"
#. czpEK
-#: sd/inc/strings.hrc:217
+#: sd/inc/strings.hrc:218
msgctxt "STR_HTMLEXP_SETTEXT"
msgid "Text"
msgstr "Текст"
#. ULfrK
-#: sd/inc/strings.hrc:218
+#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Изображение"
#. KC9RC
-#: sd/inc/strings.hrc:219
+#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_OUTLINE"
msgid "With contents"
msgstr "Със съдържание"
#. 6bNhQ
-#: sd/inc/strings.hrc:220
+#: sd/inc/strings.hrc:221
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
msgstr "Без съдържание"
#. cWcCG
-#: sd/inc/strings.hrc:221
+#: sd/inc/strings.hrc:222
msgctxt "STR_WEBVIEW_SAVE"
msgid "To given page"
msgstr "Към дадена страница"
#. xG6qd
-#: sd/inc/strings.hrc:222
+#: sd/inc/strings.hrc:223
msgctxt "STR_UNDO_VECTORIZE"
msgid "Convert bitmap to polygon"
msgstr "Преобразуване на растер в многоъгълник"
#. ENANv
-#: sd/inc/strings.hrc:223
+#: sd/inc/strings.hrc:224
msgctxt "STR_PRES_SOFTEND"
msgid "Click to exit presentation..."
msgstr "Щракнете за изход от презентацията..."
#. EzUVJ
-#: sd/inc/strings.hrc:224
+#: sd/inc/strings.hrc:225
msgctxt "STR_PRES_PAUSE"
msgid "Pause..."
msgstr "Пауза..."
#. wXCu2
-#: sd/inc/strings.hrc:225
+#: sd/inc/strings.hrc:226
msgctxt "STR_UNDO_APPLY_3D_FAVOURITE"
msgid "Apply 3D favorite"
msgstr "Предпочитан 3-И ефект"
#. bACAt
-#: sd/inc/strings.hrc:226
+#: sd/inc/strings.hrc:227
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "Филтър за изображение"
#. AGE8e
-#: sd/inc/strings.hrc:227
+#: sd/inc/strings.hrc:228
msgctxt "STR_WARNING_NOSOUNDFILE"
msgid ""
"The file %\n"
@@ -1607,829 +1613,829 @@ msgstr ""
"не е валиден звуков файл!"
#. SRWpo
-#: sd/inc/strings.hrc:228
+#: sd/inc/strings.hrc:229
msgctxt "STR_UNDO_CONVERT_TO_METAFILE"
msgid "Convert to metafile"
msgstr "Преобразуване в метафайл"
#. BqqGF
-#: sd/inc/strings.hrc:229
+#: sd/inc/strings.hrc:230
msgctxt "STR_UNDO_CONVERT_TO_BITMAP"
msgid "Convert to bitmap"
msgstr "Преобразуване в растерно изображение"
#. Fs7id
-#: sd/inc/strings.hrc:230
+#: sd/inc/strings.hrc:231
msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE"
msgid "Cannot create the file $(URL1)."
msgstr "Създаването на файла $(URL1) е невъзможно."
#. ZF3X5
-#: sd/inc/strings.hrc:231
+#: sd/inc/strings.hrc:232
msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE"
msgid "Could not open the file $(URL1)."
msgstr "Отварянето на файла $(URL1) е невъзможно."
#. rEAXk
-#: sd/inc/strings.hrc:232
+#: sd/inc/strings.hrc:233
msgctxt "STR_HTMLEXP_ERROR_COPY_FILE"
msgid "The file $(URL1) could not be copied to $(URL2)"
msgstr "Файлът $(URL1) не може да бъде копиран в $(URL2)"
#. KVfUE
-#: sd/inc/strings.hrc:233
+#: sd/inc/strings.hrc:234
msgctxt "STR_STATUSBAR_MASTERPAGE"
msgid "Slide Master name. Right-click for list and double-click for dialog."
msgstr "Име на образеца за кадри. Щракнете с десния бутон за списък, щракнете двукратно за диалог."
#. HcDvJ
-#: sd/inc/strings.hrc:234
+#: sd/inc/strings.hrc:235
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
msgstr "Преименуване на кадър"
#. KEEy2
-#: sd/inc/strings.hrc:235
+#: sd/inc/strings.hrc:236
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
msgstr "Преименуване на страница"
#. rBmcL
-#: sd/inc/strings.hrc:236
+#: sd/inc/strings.hrc:237
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
msgstr "Не са възможни дублирани или празни имена."
#. FUm5F
-#: sd/inc/strings.hrc:237
+#: sd/inc/strings.hrc:238
msgctxt "STR_DESC_RENAMESLIDE"
msgid "Name"
msgstr "Име"
#. VSdio
-#: sd/inc/strings.hrc:238
+#: sd/inc/strings.hrc:239
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
msgstr "Преименуване на кадър образец"
#. rWiXQ
-#: sd/inc/strings.hrc:239
+#: sd/inc/strings.hrc:240
msgctxt "STR_PLACEHOLDER_DESCRIPTION_TITLE"
msgid "Title Area for AutoLayouts"
msgstr "Заглавна област за автооформление"
#. i4T9w
-#: sd/inc/strings.hrc:240
+#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_OUTLINE"
msgid "Object Area for AutoLayouts"
msgstr "Обектна област за автооформление"
#. vS6wi
-#: sd/inc/strings.hrc:241
+#: sd/inc/strings.hrc:242
msgctxt "STR_PLACEHOLDER_DESCRIPTION_FOOTER"
msgid "Footer Area"
msgstr "Област за долен колонтитул"
#. xFBgg
-#: sd/inc/strings.hrc:242
+#: sd/inc/strings.hrc:243
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
msgstr "Област за горен колонтитул"
#. 8JGJD
-#: sd/inc/strings.hrc:243
+#: sd/inc/strings.hrc:244
msgctxt "STR_PLACEHOLDER_DESCRIPTION_DATETIME"
msgid "Date Area"
msgstr "Област за дата"
#. oNFN3
-#: sd/inc/strings.hrc:244
+#: sd/inc/strings.hrc:245
msgctxt "STR_PLACEHOLDER_DESCRIPTION_SLIDE"
msgid "Slide Number Area"
msgstr "Област за номер на кадър"
#. GisCz
-#: sd/inc/strings.hrc:245
+#: sd/inc/strings.hrc:246
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NUMBER"
msgid "Page Number Area"
msgstr "Област за номер на страница"
#. rvtjX
-#: sd/inc/strings.hrc:246
+#: sd/inc/strings.hrc:247
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
msgstr "<горен колонтитул>"
#. RoVvC
-#: sd/inc/strings.hrc:247
+#: sd/inc/strings.hrc:248
msgctxt "STR_FIELD_PLACEHOLDER_FOOTER"
msgid "<footer>"
msgstr "<долен колонтитул>"
#. RXzA4
-#: sd/inc/strings.hrc:248
+#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_DATETIME"
msgid "<date/time>"
msgstr "<дата/час>"
#. TuP6n
-#: sd/inc/strings.hrc:249
+#: sd/inc/strings.hrc:250
msgctxt "STR_FIELD_PLACEHOLDER_NUMBER"
msgid "<number>"
msgstr "<число>"
#. CCuCb
-#: sd/inc/strings.hrc:250
+#: sd/inc/strings.hrc:251
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
msgstr "<брой>"
#. TDgFU
-#: sd/inc/strings.hrc:251
+#: sd/inc/strings.hrc:252
msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME"
msgid "<slide-name>"
msgstr "<име-на-кадър>"
#. j8btB
-#: sd/inc/strings.hrc:252
+#: sd/inc/strings.hrc:253
msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME"
msgid "<page-name>"
msgstr "<име-на-страница>"
#. ao6iR
-#: sd/inc/strings.hrc:253
+#: sd/inc/strings.hrc:254
msgctxt "STR_PLACEHOLDER_DESCRIPTION_NOTES"
msgid "Notes Area"
msgstr "Област за бележки"
#. EEf4k
-#: sd/inc/strings.hrc:254
+#: sd/inc/strings.hrc:255
msgctxt "STR_UNDO_HANGULHANJACONVERSION"
msgid "Hangul/Hanja Conversion"
msgstr "Преобразуване хангъл/ханджа"
#. RDARn
-#: sd/inc/strings.hrc:255
+#: sd/inc/strings.hrc:256
msgctxt "STR_LEFT_PANE_IMPRESS_TITLE"
msgid "Slides"
msgstr "Кадри"
#. CU9DK
-#: sd/inc/strings.hrc:256
+#: sd/inc/strings.hrc:257
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
msgstr "Страници"
#. C7hf2
-#: sd/inc/strings.hrc:257
+#: sd/inc/strings.hrc:258
msgctxt "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION"
msgid "Preview not available"
msgstr "Няма мостра"
#. bAJoa
-#: sd/inc/strings.hrc:258
+#: sd/inc/strings.hrc:259
msgctxt "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION"
msgid "Preparing preview"
msgstr "Създава се мостра"
#. nDrpm
-#: sd/inc/strings.hrc:259
+#: sd/inc/strings.hrc:260
msgctxt "STR_TASKPANEL_LAYOUT_MENU_TITLE"
msgid "Layouts"
msgstr "Оформления"
#. peCQY
-#: sd/inc/strings.hrc:260
+#: sd/inc/strings.hrc:261
msgctxt "STR_GRAPHICS_STYLE_FAMILY"
msgid "Drawing Styles"
msgstr "Стилове за рисунки"
#. tR4CL
-#: sd/inc/strings.hrc:261
+#: sd/inc/strings.hrc:262
msgctxt "STR_PRESENTATIONS_STYLE_FAMILY"
msgid "Presentation Styles"
msgstr "Стилове за презентации"
#. oyUYa
-#: sd/inc/strings.hrc:262
+#: sd/inc/strings.hrc:263
msgctxt "STR_CELL_STYLE_FAMILY"
msgid "Cell Styles"
msgstr "Стилове за клетки"
#. BQmNo
-#: sd/inc/strings.hrc:263
+#: sd/inc/strings.hrc:264
msgctxt "STR_NAVIGATOR_SHAPE_BASE_NAME"
msgid "Shape %1"
msgstr "Фигура %1"
#. 94JFw
-#: sd/inc/strings.hrc:264
+#: sd/inc/strings.hrc:265
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
msgstr "Задаване на фоново изображение"
#. ibpDR
-#: sd/inc/strings.hrc:265
+#: sd/inc/strings.hrc:266
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
msgstr "Коментари"
#. 76dF3
-#: sd/inc/strings.hrc:266
+#: sd/inc/strings.hrc:267
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
msgstr "Нулиране на оформление на кадър"
#. EB6XY
-#: sd/inc/strings.hrc:267
+#: sd/inc/strings.hrc:268
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
msgstr "Вмъкване на таблица"
#. koDfS
-#: sd/inc/strings.hrc:268
+#: sd/inc/strings.hrc:269
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
msgstr "Вмъкване на диаграма"
#. re2hh
-#: sd/inc/strings.hrc:269
+#: sd/inc/strings.hrc:270
msgctxt "STR_INSERT_PICTURE"
msgid "Insert Image"
msgstr "Вмъкване на изображение"
#. iBBLh
-#: sd/inc/strings.hrc:270
+#: sd/inc/strings.hrc:271
msgctxt "STR_INSERT_MOVIE"
msgid "Insert Audio or Video"
msgstr "Вмъкване на звук или видео"
#. m8crC
-#: sd/inc/strings.hrc:271
+#: sd/inc/strings.hrc:272
msgctxt "STRING_DRAG_AND_DROP_PAGES"
msgid "Drag and Drop Pages"
msgstr "Плъзгане и пускане на страници"
#. CAGzA
-#: sd/inc/strings.hrc:272
+#: sd/inc/strings.hrc:273
msgctxt "STRING_DRAG_AND_DROP_SLIDES"
msgid "Drag and Drop Slides"
msgstr "Плъзгане и пускане на кадри"
#. 2mDn4
-#: sd/inc/strings.hrc:273
+#: sd/inc/strings.hrc:274
msgctxt "STR_PHOTO_ALBUM_EMPTY_WARNING"
msgid "Please add Images to the Album."
msgstr "Моля, добавете изображения в албума."
#. jbPEH
-#: sd/inc/strings.hrc:274
+#: sd/inc/strings.hrc:275
msgctxt "STR_PHOTO_ALBUM_TEXTBOX"
msgid "Text Slide"
msgstr "Текстов кадър"
#. 5FSEq
-#: sd/inc/strings.hrc:275
+#: sd/inc/strings.hrc:276
msgctxt "STR_OVERWRITE_WARNING"
msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?"
msgstr "Локалната целева директория \"%FILENAME\" не е празна. Част от файловете може да бъдат презаписани. Желаете ли да продължите?"
#. DKw6n
-#: sd/inc/strings.hrc:277
+#: sd/inc/strings.hrc:278
msgctxt "STR_LAYER_BCKGRND"
msgid "Background"
msgstr "Фон"
#. qGFWm
-#: sd/inc/strings.hrc:278
+#: sd/inc/strings.hrc:279
msgctxt "STR_LAYER_BCKGRNDOBJ"
msgid "Background objects"
msgstr "Фонови обекти"
#. j9GG4
-#: sd/inc/strings.hrc:279
+#: sd/inc/strings.hrc:280
msgctxt "STR_LAYER_LAYOUT"
msgid "Layout"
msgstr "Оформление"
#. nU2g2
-#: sd/inc/strings.hrc:280
+#: sd/inc/strings.hrc:281
msgctxt "STR_LAYER_CONTROLS"
msgid "Controls"
msgstr "Контроли"
#. zQSpC
-#: sd/inc/strings.hrc:281
+#: sd/inc/strings.hrc:282
msgctxt "STR_LAYER_MEASURELINES"
msgid "Dimension Lines"
msgstr "Размерни линии"
#. z4wq5
-#: sd/inc/strings.hrc:282
+#: sd/inc/strings.hrc:283
msgctxt "STR_PAGE"
msgid "Slide"
msgstr "Кадър"
#. TTD8A
-#: sd/inc/strings.hrc:283
+#: sd/inc/strings.hrc:284
msgctxt "STR_PAGE_NAME"
msgid "Page"
msgstr "Страница"
#. p8GEE
-#: sd/inc/strings.hrc:284
+#: sd/inc/strings.hrc:285
msgctxt "STR_SLIDE_NAME"
msgid "Slide"
msgstr "Кадър"
#. r3w8y
-#: sd/inc/strings.hrc:285
+#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
msgstr "Кадър образец"
#. 8WvYc
-#: sd/inc/strings.hrc:286
+#: sd/inc/strings.hrc:287
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
msgstr "Кадър образец:"
#. C3zZM
-#: sd/inc/strings.hrc:287
+#: sd/inc/strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Страница образец"
#. nTgKn
-#: sd/inc/strings.hrc:288
+#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
msgstr "Страница образец:"
#. PacSi
-#: sd/inc/strings.hrc:289
+#: sd/inc/strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Бележки)"
#. hBB6T
-#: sd/inc/strings.hrc:290
+#: sd/inc/strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Листовки"
#. ZC2XQ
-#: sd/inc/strings.hrc:291
+#: sd/inc/strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Щракнете, за да редактирате формата на заглавието"
#. bekYz
-#: sd/inc/strings.hrc:292
+#: sd/inc/strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Щракнете, за да редактирате формата на плана"
#. MhEh8
-#: sd/inc/strings.hrc:293
+#: sd/inc/strings.hrc:294
msgctxt "STR_PRESOBJ_MPTITLE_MOBILE"
msgid "Double-tap to edit the title text format"
msgstr "Чукнете двукратно, за да редактирате формата на заглавието"
#. eMDBG
-#: sd/inc/strings.hrc:294
+#: sd/inc/strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLINE_MOBILE"
msgid "Double-tap to edit the outline text format"
msgstr "Чукнете двукратно, за да редактирате формата на плана"
#. QHBwE
-#: sd/inc/strings.hrc:295
+#: sd/inc/strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Второ ниво на плана"
#. Lf8oo
-#: sd/inc/strings.hrc:296
+#: sd/inc/strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Трето ниво на плана"
#. n3fVM
-#: sd/inc/strings.hrc:297
+#: sd/inc/strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Четвърто ниво на плана"
#. DsABM
-#: sd/inc/strings.hrc:298
+#: sd/inc/strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Пето ниво на плана"
#. CG6UM
-#: sd/inc/strings.hrc:299
+#: sd/inc/strings.hrc:300
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Шесто ниво на плана"
#. 45DF3
-#: sd/inc/strings.hrc:300
+#: sd/inc/strings.hrc:301
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Седмо ниво на плана"
#. msbUt
-#: sd/inc/strings.hrc:301
+#: sd/inc/strings.hrc:302
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Щракнете, за да преместите кадъра"
#. CuXWS
-#: sd/inc/strings.hrc:302
+#: sd/inc/strings.hrc:303
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Щракнете, за да редактирате формата на бележките"
#. Qxj2R
-#: sd/inc/strings.hrc:303
+#: sd/inc/strings.hrc:304
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
msgstr "Чукнете двукратно, за да преместите кадъра"
#. iibds
-#: sd/inc/strings.hrc:304
+#: sd/inc/strings.hrc:305
msgctxt "STR_PRESOBJ_MPNOTESTEXT_MOBILE"
msgid "Double-tap to edit the notes format"
msgstr "Чукнете двукратно, за да редактирате формата на бележките"
#. oBXBx
-#: sd/inc/strings.hrc:305
+#: sd/inc/strings.hrc:306
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "Щракнете, за да добавите заглавие"
#. HVQNr
-#: sd/inc/strings.hrc:306
+#: sd/inc/strings.hrc:307
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Щракнете, за да добавите текст"
#. NUirL
-#: sd/inc/strings.hrc:307
+#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Щракнете, за да добавите текст"
#. 2u7FR
-#: sd/inc/strings.hrc:308
+#: sd/inc/strings.hrc:309
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "Щракнете, за да добавите бележки"
#. js2X9
-#: sd/inc/strings.hrc:309
+#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
msgstr "Чукнете двукратно, за да добавите заглавие"
#. jLtyS
-#: sd/inc/strings.hrc:310
+#: sd/inc/strings.hrc:311
msgctxt "STR_PRESOBJ_OUTLINE_MOBILE"
msgid "Double-tap to add Text"
msgstr "Чукнете двукратно, за да добавите текст"
#. KAFJh
-#: sd/inc/strings.hrc:311
+#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Double-tap to add Text"
msgstr "Чукнете двукратно, за да добавите текст"
#. ksTwQ
-#: sd/inc/strings.hrc:312
+#: sd/inc/strings.hrc:313
msgctxt "STR_PRESOBJ_TEXT_MOBILE"
msgid "Tap to edit text"
msgstr "Чукнете, за да редактирате текста"
#. bRhRR
-#: sd/inc/strings.hrc:313
+#: sd/inc/strings.hrc:314
msgctxt "STR_PRESOBJ_NOTESTEXT_MOBILE"
msgid "Double-tap to add Notes"
msgstr "Чукнете двукратно, за да добавите бележки"
#. ZqPtT
-#: sd/inc/strings.hrc:314
+#: sd/inc/strings.hrc:315
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "Щракнете двукратно, за да добавите изображение"
#. HGVA3
-#: sd/inc/strings.hrc:315
+#: sd/inc/strings.hrc:316
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "Щракнете двукратно, за да добавите обект"
#. XjW6w
-#: sd/inc/strings.hrc:316
+#: sd/inc/strings.hrc:317
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "Щракнете двукратно, за да добавите диаграма"
#. eKgCA
-#: sd/inc/strings.hrc:317
+#: sd/inc/strings.hrc:318
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "Щракнете двукратно, за да добавите йерархична диаграма"
#. wW4E4
-#: sd/inc/strings.hrc:318
+#: sd/inc/strings.hrc:319
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "Щракнете двукратно, за да добавите електронна таблица"
#. nBtJo
-#: sd/inc/strings.hrc:319
+#: sd/inc/strings.hrc:320
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "По подразбиране"
#. rEPYV
-#: sd/inc/strings.hrc:320
+#: sd/inc/strings.hrc:321
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Заглавие"
#. zT4rH
-#: sd/inc/strings.hrc:321
+#: sd/inc/strings.hrc:322
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default Drawing Style"
msgstr "Подразбиран стил за рисунки"
#. pxfDw
-#: sd/inc/strings.hrc:322
+#: sd/inc/strings.hrc:323
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Местене на кадри"
#. uDXFb
-#: sd/inc/strings.hrc:323
+#: sd/inc/strings.hrc:324
msgctxt "STR_INSERT_PAGES"
msgid "Insert Pages"
msgstr "Вмъкване на страници"
#. 7Z6kC
-#: sd/inc/strings.hrc:324
+#: sd/inc/strings.hrc:325
msgctxt "STR_INSERT_PAGE_DRAW"
msgid "Insert Page"
msgstr "Вмъкване на страница"
#. CMhGm
-#: sd/inc/strings.hrc:325
+#: sd/inc/strings.hrc:326
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
msgstr "Свойства на кадър"
#. pA7rP
-#: sd/inc/strings.hrc:327
+#: sd/inc/strings.hrc:328
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Обект без запълване"
#. btJeg
-#: sd/inc/strings.hrc:328
+#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "Обект без запълване и очертание"
#. YCmiq
-#: sd/inc/strings.hrc:329
+#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Текст"
#. v7u2t
-#: sd/inc/strings.hrc:330
+#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4"
msgid "A4"
msgstr "A4"
#. EEK5c
-#: sd/inc/strings.hrc:331
+#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
msgstr "Заглавие на документ A4"
#. ZCLYo
-#: sd/inc/strings.hrc:332
+#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
msgstr "Заглавие A4"
#. epKM4
-#: sd/inc/strings.hrc:333
+#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
msgstr "Текст A4"
#. kCg3k
-#: sd/inc/strings.hrc:334
+#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0"
msgid "A0"
msgstr "A0"
#. mhBmK
-#: sd/inc/strings.hrc:335
+#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
msgstr "Заглавие на документ A0"
#. 6AG4z
-#: sd/inc/strings.hrc:336
+#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
msgstr "Заглавие A0"
#. gLfCw
-#: sd/inc/strings.hrc:337
+#: sd/inc/strings.hrc:338
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
msgstr "Текст A0"
#. eDG7h
-#: sd/inc/strings.hrc:338
+#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
msgstr "Графика"
#. o4g3u
-#: sd/inc/strings.hrc:339
+#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Shapes"
msgstr "Фигури"
#. i6AnZ
-#: sd/inc/strings.hrc:340
+#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
msgstr "Линии"
#. 2ohzZ
-#: sd/inc/strings.hrc:341
+#: sd/inc/strings.hrc:342
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
msgstr "Линия със стрелки"
#. mLCYV
-#: sd/inc/strings.hrc:342
+#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
msgstr "Прекъсната линия"
#. xtD8b
-#: sd/inc/strings.hrc:344
+#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
msgstr "Запълнено"
#. BGGf5
-#: sd/inc/strings.hrc:345
+#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
msgstr "Запълнено със синьо"
#. sGCBw
-#: sd/inc/strings.hrc:346
+#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
msgstr "Запълнено със зелено"
#. xfoEY
-#: sd/inc/strings.hrc:347
+#: sd/inc/strings.hrc:348
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
msgstr "Запълнено с жълто"
#. eEKGF
-#: sd/inc/strings.hrc:348
+#: sd/inc/strings.hrc:349
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
msgstr "Запълнено с червено"
#. uHgQH
-#: sd/inc/strings.hrc:350
+#: sd/inc/strings.hrc:351
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
msgstr "Очертано"
#. 2eHMC
-#: sd/inc/strings.hrc:351
+#: sd/inc/strings.hrc:352
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
msgstr "Очертано със синьо"
#. 8FRxG
-#: sd/inc/strings.hrc:352
+#: sd/inc/strings.hrc:353
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
msgstr "Очертано със зелено"
#. CEJ3Z
-#: sd/inc/strings.hrc:353
+#: sd/inc/strings.hrc:354
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
msgstr "Очертано с жълто"
#. LARUM
-#: sd/inc/strings.hrc:354
+#: sd/inc/strings.hrc:355
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
msgstr "Очертано с червено"
#. 5dvZu
-#: sd/inc/strings.hrc:356
+#: sd/inc/strings.hrc:357
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Заглавие"
#. zn6qa
-#: sd/inc/strings.hrc:357
+#: sd/inc/strings.hrc:358
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Подзаглавие"
#. JVyHE
-#: sd/inc/strings.hrc:358
+#: sd/inc/strings.hrc:359
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "План"
#. riaKo
-#: sd/inc/strings.hrc:359
+#: sd/inc/strings.hrc:360
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Фонови обекти"
#. EEEk3
-#: sd/inc/strings.hrc:360
+#: sd/inc/strings.hrc:361
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Фон"
#. EdWfd
-#: sd/inc/strings.hrc:361
+#: sd/inc/strings.hrc:362
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Бележки"
#. FQqif
-#: sd/inc/strings.hrc:362
+#: sd/inc/strings.hrc:363
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "Импортиране от PowerPoint"
#. kjKWf
-#: sd/inc/strings.hrc:363
+#: sd/inc/strings.hrc:364
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Записване на документ"
#. VCFFA
-#: sd/inc/strings.hrc:364
+#: sd/inc/strings.hrc:365
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Свързване на клетка"
#. FBzD4
-#: sd/inc/strings.hrc:365
+#: sd/inc/strings.hrc:366
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Заглавие"
#. kut56
-#: sd/inc/strings.hrc:366
+#: sd/inc/strings.hrc:367
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Сумарен ред"
#. 4UBCG
-#: sd/inc/strings.hrc:367
+#: sd/inc/strings.hrc:368
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Първа колона"
#. f3Zfa
-#: sd/inc/strings.hrc:368
+#: sd/inc/strings.hrc:369
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Последна колона"
#. HAeDt
-#: sd/inc/strings.hrc:369
+#: sd/inc/strings.hrc:370
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "Смаляване на шрифта"
#. 7uDfu
-#: sd/inc/strings.hrc:370
+#: sd/inc/strings.hrc:371
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "Уголемяване на шрифта"
@@ -2437,628 +2443,628 @@ msgstr "Уголемяване на шрифта"
#. E9zvq
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: sd/inc/strings.hrc:375
+#: sd/inc/strings.hrc:376
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Изглед Рисуване"
#. GfnmX
-#: sd/inc/strings.hrc:376
+#: sd/inc/strings.hrc:377
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Изглед Рисуване"
#. YCVqM
-#: sd/inc/strings.hrc:377
+#: sd/inc/strings.hrc:378
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Изглед План"
#. k2hXi
-#: sd/inc/strings.hrc:378
+#: sd/inc/strings.hrc:379
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Изглед Кадри"
#. A22hR
-#: sd/inc/strings.hrc:379
+#: sd/inc/strings.hrc:380
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Тук подреждате кадри."
#. vyX8L
-#: sd/inc/strings.hrc:380
+#: sd/inc/strings.hrc:381
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Изглед Бележки"
#. qr5ov
-#: sd/inc/strings.hrc:381
+#: sd/inc/strings.hrc:382
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Изглед Листовки"
#. Ycpb4
-#: sd/inc/strings.hrc:382
+#: sd/inc/strings.hrc:383
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "PresentationTitle"
#. 4WCzf
-#: sd/inc/strings.hrc:383
+#: sd/inc/strings.hrc:384
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "PresentationOutliner"
#. cBoMF
-#: sd/inc/strings.hrc:384
+#: sd/inc/strings.hrc:385
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "PresentationSubtitle"
#. 8KV99
-#: sd/inc/strings.hrc:385
+#: sd/inc/strings.hrc:386
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "PresentationPage"
#. R6kyg
-#: sd/inc/strings.hrc:386
+#: sd/inc/strings.hrc:387
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "PresentationNotes"
#. X8c9Z
-#: sd/inc/strings.hrc:387
+#: sd/inc/strings.hrc:388
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Handout"
#. FeAdu
-#: sd/inc/strings.hrc:388
+#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "UnknownAccessiblePresentationShape"
#. sA8of
-#: sd/inc/strings.hrc:389
+#: sd/inc/strings.hrc:390
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "PresentationFooter"
#. 4YzQz
-#: sd/inc/strings.hrc:390
+#: sd/inc/strings.hrc:391
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "PresentationFooterShape"
#. KAC6Z
-#: sd/inc/strings.hrc:391
+#: sd/inc/strings.hrc:392
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "PresentationHeader"
#. EfHeH
-#: sd/inc/strings.hrc:392
+#: sd/inc/strings.hrc:393
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "PresentationDateAndTime"
#. WosPZ
-#: sd/inc/strings.hrc:393
+#: sd/inc/strings.hrc:394
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "PresentationPageNumber"
#. kCGsH
-#: sd/inc/strings.hrc:394
+#: sd/inc/strings.hrc:395
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME – презентация"
#. ubJop
-#: sd/inc/strings.hrc:395
+#: sd/inc/strings.hrc:396
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Заглавие"
#. Va4KF
-#: sd/inc/strings.hrc:396
+#: sd/inc/strings.hrc:397
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "План"
#. 6FKRE
-#: sd/inc/strings.hrc:397
+#: sd/inc/strings.hrc:398
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Подзаглавие"
#. eSBEi
-#: sd/inc/strings.hrc:398
+#: sd/inc/strings.hrc:399
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Страница"
#. WEaeZ
-#: sd/inc/strings.hrc:399
+#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Бележки"
#. buhox
-#: sd/inc/strings.hrc:400
+#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Листовка"
#. 4xBQg
-#: sd/inc/strings.hrc:401
+#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "Непознат елемент за достъпност на презентация"
#. CGegB
-#: sd/inc/strings.hrc:402
+#: sd/inc/strings.hrc:403
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Долен колонтитул"
#. SrrR4
-#: sd/inc/strings.hrc:403
+#: sd/inc/strings.hrc:404
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Горен колонтитул"
#. CCwKy
-#: sd/inc/strings.hrc:404
+#: sd/inc/strings.hrc:405
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Дата"
#. EFmn4
-#: sd/inc/strings.hrc:405
+#: sd/inc/strings.hrc:406
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Число"
#. wFpMQ
-#: sd/inc/strings.hrc:406
+#: sd/inc/strings.hrc:407
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(само за четене)"
#. EV4W5
-#: sd/inc/strings.hrc:408
+#: sd/inc/strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "няма"
#. 9izAz
-#: sd/inc/strings.hrc:409
+#: sd/inc/strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "До следващото щракване"
#. oEQ7B
-#: sd/inc/strings.hrc:410
+#: sd/inc/strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "До края на кадъра"
#. Lf9gB
-#: sd/inc/strings.hrc:411
+#: sd/inc/strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "Посока:"
#. xxDXG
-#: sd/inc/strings.hrc:412
+#: sd/inc/strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Мащаб:"
#. SvBeK
-#: sd/inc/strings.hrc:413
+#: sd/inc/strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "Спици:"
#. eJ4qZ
-#: sd/inc/strings.hrc:414
+#: sd/inc/strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Първи цвят:"
#. CSbCE
-#: sd/inc/strings.hrc:415
+#: sd/inc/strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "Втори цвят:"
#. cZUiD
-#: sd/inc/strings.hrc:416
+#: sd/inc/strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "Цвят за запълване:"
#. U5ZDL
-#: sd/inc/strings.hrc:417
+#: sd/inc/strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стил:"
#. vKLER
-#: sd/inc/strings.hrc:418
+#: sd/inc/strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Шрифт:"
#. Fdsks
-#: sd/inc/strings.hrc:419
+#: sd/inc/strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Цвят на шрифта:"
#. nT7dm
-#: sd/inc/strings.hrc:420
+#: sd/inc/strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стил:"
#. q24Fe
-#: sd/inc/strings.hrc:421
+#: sd/inc/strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Начертание:"
#. nAqeR
-#: sd/inc/strings.hrc:422
+#: sd/inc/strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Цвят на контура:"
#. w7G4Q
-#: sd/inc/strings.hrc:423
+#: sd/inc/strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Размер на шрифта:"
#. R3GgU
-#: sd/inc/strings.hrc:424
+#: sd/inc/strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Размер:"
#. YEwoz
-#: sd/inc/strings.hrc:425
+#: sd/inc/strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Количество:"
#. wiQPZ
-#: sd/inc/strings.hrc:426
+#: sd/inc/strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Цвят:"
#. f5u6C
-#: sd/inc/strings.hrc:427
+#: sd/inc/strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(Без звук)"
#. N7jGX
-#: sd/inc/strings.hrc:428
+#: sd/inc/strings.hrc:429
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(Спиране на предишния звук)"
#. vasqr
-#: sd/inc/strings.hrc:429
+#: sd/inc/strings.hrc:430
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Друг звук..."
#. CjvLY
-#: sd/inc/strings.hrc:430
+#: sd/inc/strings.hrc:431
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Извадка"
#. CdYt2
-#: sd/inc/strings.hrc:431
+#: sd/inc/strings.hrc:432
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Спусък"
#. Evkrq
-#: sd/inc/strings.hrc:432
+#: sd/inc/strings.hrc:433
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "Потребителски траектории"
#. EcciE
-#: sd/inc/strings.hrc:433
+#: sd/inc/strings.hrc:434
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr "Въвеждане: %1"
#. Zydrz
-#: sd/inc/strings.hrc:434
+#: sd/inc/strings.hrc:435
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "Акцентиране: %1"
#. kW2DL
-#: sd/inc/strings.hrc:435
+#: sd/inc/strings.hrc:436
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "Завършване: %1"
#. iKFbF
-#: sd/inc/strings.hrc:436
+#: sd/inc/strings.hrc:437
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "Траектории: %1"
#. kg9Yv
-#: sd/inc/strings.hrc:437
+#: sd/inc/strings.hrc:438
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
msgstr "Разни: %1"
#. Ep4QY
-#: sd/inc/strings.hrc:438
+#: sd/inc/strings.hrc:439
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "Няма"
#. KAsTD
-#: sd/inc/strings.hrc:440
+#: sd/inc/strings.hrc:441
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Днес,"
#. DEYnN
-#: sd/inc/strings.hrc:441
+#: sd/inc/strings.hrc:442
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Вчера,"
#. bh3FZ
-#: sd/inc/strings.hrc:442
+#: sd/inc/strings.hrc:443
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(няма автор)"
#. AvNV8
-#: sd/inc/strings.hrc:443
+#: sd/inc/strings.hrc:444
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress достигна до края на презентацията. Желаете ли да започнете отначало?"
#. P5gKe
-#: sd/inc/strings.hrc:444
+#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress достигна до началото на презентацията. Желаете ли да продължите към края?"
#. KGmdL
-#: sd/inc/strings.hrc:445
+#: sd/inc/strings.hrc:446
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw достигна до края на документа. Желаете ли да продължите към началото?"
#. oEn6r
-#: sd/inc/strings.hrc:446
+#: sd/inc/strings.hrc:447
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw достигна до началото на документа. Желаете ли да продължите към края?"
#. eP7Vm
-#: sd/inc/strings.hrc:447
+#: sd/inc/strings.hrc:448
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Вмъкване на коментар"
#. s4c9W
-#: sd/inc/strings.hrc:448
+#: sd/inc/strings.hrc:449
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Изтриване на коментар(и)"
#. bxiPE
-#: sd/inc/strings.hrc:449
+#: sd/inc/strings.hrc:450
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Премстване на коментар"
#. hQbpd
-#: sd/inc/strings.hrc:450
+#: sd/inc/strings.hrc:451
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Редакция на коментар"
#. g6k7E
-#: sd/inc/strings.hrc:451
+#: sd/inc/strings.hrc:452
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Отговор до %1"
#. NMTpu
-#: sd/inc/strings.hrc:453
+#: sd/inc/strings.hrc:454
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Възпроизвеждане"
#. Q76cw
-#: sd/inc/strings.hrc:454
+#: sd/inc/strings.hrc:455
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Таблица"
#. xCRmu
-#: sd/inc/strings.hrc:456
+#: sd/inc/strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 6KbnP
-#: sd/inc/strings.hrc:457
+#: sd/inc/strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Документ"
#. uBxPs
-#: sd/inc/strings.hrc:458
+#: sd/inc/strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
msgstr "Кадри на страница:"
#. EPBUK
-#: sd/inc/strings.hrc:459
+#: sd/inc/strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
msgstr "Подреждане:"
#. BFEFJ
-#: sd/inc/strings.hrc:460
+#: sd/inc/strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Съдържание"
#. AdWKp
-#: sd/inc/strings.hrc:461
+#: sd/inc/strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Име на кадър"
#. GkLky
-#: sd/inc/strings.hrc:462
+#: sd/inc/strings.hrc:463
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Име на страница"
#. EFkVE
-#: sd/inc/strings.hrc:463
+#: sd/inc/strings.hrc:464
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Дата и час"
#. ZcDFL
-#: sd/inc/strings.hrc:464
+#: sd/inc/strings.hrc:465
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Скрити страници"
#. CSUbC
-#: sd/inc/strings.hrc:465
+#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Цвят"
#. WmYKp
-#: sd/inc/strings.hrc:466
+#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Размер"
#. qDGVE
-#: sd/inc/strings.hrc:467
+#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Брошура"
#. K7m8L
-#: sd/inc/strings.hrc:468
+#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Страни на страниците"
#. 8AzJi
-#: sd/inc/strings.hrc:469
+#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Включване"
#. AEeCf
-#: sd/inc/strings.hrc:470
+#: sd/inc/strings.hrc:471
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "Използване само на касетата от настройките на принтера"
#. jBxbU
-#: sd/inc/strings.hrc:471
+#: sd/inc/strings.hrc:472
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
msgstr "Страници:"
#. a3tSp
-#: sd/inc/strings.hrc:472
+#: sd/inc/strings.hrc:473
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
msgstr "Кадри:"
#. pPiWM
-#: sd/inc/strings.hrc:474
+#: sd/inc/strings.hrc:475
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress стигна до края на документа. Желаете ли търсенето да продължи от началото?"
#. buKAC
-#: sd/inc/strings.hrc:475
+#: sd/inc/strings.hrc:476
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress стигна до началото на документа. Желаете ли търсенето да продължи от края?"
#. iiE2i
-#: sd/inc/strings.hrc:476
+#: sd/inc/strings.hrc:477
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw стигна до края на документа. Желаете ли търсенето да продължи от началото?"
#. RAhiP
-#: sd/inc/strings.hrc:477
+#: sd/inc/strings.hrc:478
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw стигна до началото на документа. Желаете ли търсенето да продължи от края?"
#. 6GhtE
-#: sd/inc/strings.hrc:479
+#: sd/inc/strings.hrc:480
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
msgstr "Анимация"
#. X9CWA
-#: sd/inc/strings.hrc:481
+#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Връзка"
#. yYhnC
-#: sd/inc/strings.hrc:483
+#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
-msgstr ""
+msgstr "Напред"
#. YG7NQ
-#: sd/inc/strings.hrc:484
+#: sd/inc/strings.hrc:485
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
-msgstr ""
+msgstr "Назад"
#. A9eJu
-#: sd/inc/strings.hrc:485
+#: sd/inc/strings.hrc:486
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
-msgstr ""
+msgstr "Първи кадър"
#. CVatA
-#: sd/inc/strings.hrc:486
+#: sd/inc/strings.hrc:487
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
-msgstr ""
+msgstr "Последен кадър"
#. xNozF
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
@@ -7976,7 +7982,7 @@ msgstr "Премахване на изображение от списъка"
#: sd/uiconfig/simpress/ui/photoalbum.ui:175
msgctxt "photoalbum|up_btn"
msgid "_Up"
-msgstr ""
+msgstr "Нагоре"
#. Xzv9L
#: sd/uiconfig/simpress/ui/photoalbum.ui:179
@@ -7988,7 +7994,7 @@ msgstr "Преместване на изображение нагоре"
#: sd/uiconfig/simpress/ui/photoalbum.ui:190
msgctxt "photoalbum|down_btn"
msgid "Do_wn"
-msgstr ""
+msgstr "Надолу"
#. ANTjq
#: sd/uiconfig/simpress/ui/photoalbum.ui:194
@@ -9104,7 +9110,7 @@ msgstr "Impress Remote"
#: sd/uiconfig/simpress/ui/remotedialog.ui:25
msgctxt "remotedialog|ok"
msgid "C_onnect"
-msgstr ""
+msgstr "Свързване"
#. pEkbh
#: sd/uiconfig/simpress/ui/remotedialog.ui:138
@@ -9338,7 +9344,7 @@ msgstr "Преминаване към кадър"
#: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38
msgctxt "slidecontextmenu|pen"
msgid "Mouse Pointer as _Pen"
-msgstr ""
+msgstr "Показалец на мишката като молив"
#. TXPqW
#: sd/uiconfig/simpress/ui/slidecontextmenu.ui:46
@@ -9503,139 +9509,139 @@ msgid "Sound:"
msgstr "Звук:"
#. H9Dt4
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:150
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "Без звук"
#. KqCFJ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:151
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "Спиране на предишния звук"
#. HriFB
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:152
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:153
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "Друг звук..."
#. 6W7BE
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:156
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:157
msgctxt "slidetransitionspanel|extended_tip|sound_list"
msgid "Lists sounds that can played during the slide transition."
msgstr "Изброява звуците, които могат да бъдат изпълнявани по време на прехода между кадрите."
#. YUk3y
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:167
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:168
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "Повтаряне до следващия звук"
#. HYGMp
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:175
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:176
msgctxt "slidetransitionspanel|extended_tip|loop_sound"
msgid "Select to play the sound repeatedly until another sound starts."
msgstr "Отметнете, ако желаете звукът да се повтаря до започването на друг звук."
#. ja7Bv
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:189
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:190
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "Вариант:"
#. ECukd
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:204
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:206
msgctxt "slidetransitionspanel|extended_tip|variant_list"
msgid "Select a variation of the transition."
msgstr "Изберете вариант на прехода."
#. F6RuQ
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:222
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:224
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "Промяна на преход"
#. Hm6kN
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:252
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:254
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
msgstr "При щракване с мишката"
#. txqWa
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:261
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:263
msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click"
msgid "Select to advance to the next slide on a mouse click."
msgstr "Изберете това, ако желаете преминаване към следващия кадър чрез щракване с мишката."
-#. jVLyu
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273
+#. bFejF
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
-msgid "Automatically after:"
-msgstr "Автоматично след:"
+msgid "After:"
+msgstr "След:"
#. rJJQy
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
msgctxt "slidetransitionspanel|extended_tip|rb_auto_after"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "Изберете това, ако желаете преминаване към следвщия кадър след даден брой секунди. Въведете броя секунди в числовото поле до бутона – брояч или използвайте самия бутон."
#. YctZb
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:306
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:309
msgctxt "slidetransitionspanel|extended_tip|auto_after_value"
msgid "Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button."
msgstr "Изберете това, ако желаете преминаване към следвщия кадър след даден брой секунди. Въведете броя секунди в числовото поле до бутона – брояч или използвайте самия бутон."
#. Bzsj7
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:321
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:324
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
msgstr "Смяна на кадрите"
#. czZBc
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:347
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
msgstr "Прилагане прехода върху всички кадри"
#. hoaV2
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:354
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
msgctxt "slidetransitionspanel|extended_tip|apply_to_all"
msgid "Applies the selected slide transition to all slides in the current presentation document."
msgstr "Прилага избрания преход върху всички кадри в текущата презентация."
#. K7BfA
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:389
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:392
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Автоматична мостра"
#. DEDBU
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:397
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:400
msgctxt "slidetransitionspanel|extended_tip|auto_preview"
msgid "Select to see the slide transitions automatically in the document."
msgstr "Отметнете, за да виждате автоматично преходите между кадри в документа."
#. dqjov
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:409
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:412
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Изпълнение"
#. jEejn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:413
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
msgstr "Мостра на ефект"
#. HddiF
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:420
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
msgctxt "slidetransitionspanel|extended_tip|play"
msgid "Shows the current slide transition as a preview."
msgstr "Показва мостра на текущия преход."
#. E9Xpn
-#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:453
+#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:456
msgctxt "slidetransitionspanel|extended_tip|SlideTransitionsPanel"
msgid "Defines the special effect that plays when you display a slide during a slide show."
msgstr "Определя специалния ефект, който се показва при преминаване към кадър по време на прожекция."
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index 3f49adb673f..c7b9a216cf7 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-12-20 12:36+0000\n"
+"POT-Creation-Date: 2021-03-22 13:59+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/bg/>\n"
"Language: bg\n"
@@ -92,7 +92,7 @@ msgstr "Преименуване на категория"
#: include/sfx2/strings.hrc:37
msgctxt "STR_RENAME_TEMPLATE"
msgid "Enter new template name:"
-msgstr ""
+msgstr "Въведете ново име за шаблона:"
#. TVTsi
#: include/sfx2/strings.hrc:38
@@ -213,7 +213,7 @@ msgstr ""
#: include/sfx2/strings.hrc:56
msgctxt "STR_QRYTEMPL_MESSAGE"
msgid "The template '$(ARG1)' on which this document is based, has been modified. Do you want to update the styles of the current document, using the modified template?"
-msgstr ""
+msgstr "Шаблонът „$(ARG1)“, на който е базиран този документ, е бил променен. Искате ли да обновите стиловете в текущия документ според променения шаблон?"
#. ABmvY
#: include/sfx2/strings.hrc:57
@@ -231,19 +231,19 @@ msgstr "~Запазване на старите стилове"
#: include/sfx2/strings.hrc:59
msgctxt "STR_ACTION_REFRESH"
msgid "~Refresh"
-msgstr ""
+msgstr "Опресняване"
#. X6MGZ
#: include/sfx2/strings.hrc:60
msgctxt "STR_CATEGORY_NEW"
msgid "~New Category"
-msgstr ""
+msgstr "Нова категория"
#. VNfyE
#: include/sfx2/strings.hrc:61
msgctxt "STR_CATEGORY_DELETE"
msgid "~Delete Category"
-msgstr ""
+msgstr "Изтриване на категория"
#. xfaom
#: include/sfx2/strings.hrc:62
@@ -279,7 +279,7 @@ msgstr "Не може да се запише шаблон: $1"
#: include/sfx2/strings.hrc:67
msgctxt "STR_INPUT_NEW"
msgid "Enter new category name:"
-msgstr ""
+msgstr "Въведете ново име на категория:"
#. yxN3P
#: include/sfx2/strings.hrc:68
@@ -335,13 +335,13 @@ msgstr ""
#: include/sfx2/strings.hrc:73
msgctxt "STR_QMSG_SEL_FOLDER_DELETE"
msgid "Do you want to delete the selected category?"
-msgstr ""
+msgstr "Желаете ли избраната категория да бъде изтрита?"
#. C9pLF
#: include/sfx2/strings.hrc:74
msgctxt "STR_QMSG_TEMPLATE_OVERWRITE"
msgid "A template named $1 already exists in $2. Do you want to overwrite it?"
-msgstr ""
+msgstr "В $2 вече съществува шаблон с име $1. Искате ли да бъде презаписан?"
#. 6MoGu
#: include/sfx2/strings.hrc:75
@@ -859,9 +859,9 @@ msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Няма"
-#. PKtKA
+#. 5kUsi
#: include/sfx2/strings.hrc:157
-msgctxt "RID_SVXSTR_GRAFIKLINK"
+msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
msgstr "Изображение"
@@ -1655,12 +1655,12 @@ msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Затваряне на панела"
-#. Q96YB
+#. kej8D
#. Translators: default Impress template names
#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
-msgid ""
-msgstr ""
+msgid "Grey Elegant"
+msgstr "Сива елегантна"
#. FkuLG
#: include/sfx2/strings.hrc:300
@@ -1680,17 +1680,17 @@ msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Чертеж"
-#. LvAPo
+#. MAnPU
#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
-msgid ""
-msgstr ""
+msgid "Candy"
+msgstr "Бонбони"
-#. KmvGQ
+#. jEiAn
#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
-msgid ""
-msgstr ""
+msgid "Yellow Idea"
+msgstr "Жълта идея"
#. QDNuB
#: include/sfx2/strings.hrc:305
@@ -1710,10 +1710,10 @@ msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Горска птица"
-#. LVLTz
+#. TT8G5
#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
-msgid ""
+msgid "Freshes"
msgstr ""
#. C5N9D
@@ -1728,11 +1728,11 @@ msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Светлини"
-#. Kehcd
+#. pcLWs
#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
-msgid ""
-msgstr ""
+msgid "Growing Liberty"
+msgstr "Растяща свобода"
#. xo2gC
#: include/sfx2/strings.hrc:312
@@ -1776,11 +1776,11 @@ msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Прогрес"
-#. UyUGu
+#. gtPt9
#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
-msgid ""
-msgstr ""
+msgid "Sunset"
+msgstr "Залез"
#. 73Y2e
#: include/sfx2/strings.hrc:320
@@ -1895,102 +1895,102 @@ msgstr "(използва се от: %STYLELIST)"
#: include/sfx2/strings.hrc:344
msgctxt "STR_DOCUMENT"
msgid "Document"
-msgstr ""
+msgstr "Документ"
#. XDGTb
#: include/sfx2/strings.hrc:345
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Електронна таблица"
#. 3UZXB
#: include/sfx2/strings.hrc:346
msgctxt "STR_PRESENTATION"
msgid "Presentation"
-msgstr ""
+msgstr "Презентация"
#. noN5s
#: include/sfx2/strings.hrc:347
msgctxt "STR_DRAWING"
msgid "Drawing"
-msgstr ""
+msgstr "Рисунка"
#. QpuFo
#: include/sfx2/strings.hrc:348
msgctxt "STR_RECENT"
msgid "Recently used"
-msgstr ""
+msgstr "Последно използвани"
#. EcAjb
#: include/sfx2/strings.hrc:349
msgctxt "STR_NORECENT"
msgid "No recent characters"
-msgstr ""
+msgstr "Няма скорошни знаци"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. F5rSU
#: sfx2/inc/dinfdlg.hrc:27
@@ -2280,6 +2280,306 @@ msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "Етикети"
+#. Wg9Je
+#: sfx2/source/devtools/DevToolsStrings.hrc:14
+msgctxt "STR_TEXT_PORTION"
+msgid "Text Portion %1"
+msgstr "Текстова част %1"
+
+#. 5ZXbE
+#: sfx2/source/devtools/DevToolsStrings.hrc:15
+msgctxt "STR_PARAGRAPH"
+msgid "Paragraph %1"
+msgstr "Абзац %1"
+
+#. DJi4i
+#: sfx2/source/devtools/DevToolsStrings.hrc:16
+msgctxt "STR_SHAPE"
+msgid "Shape %1"
+msgstr "Фигура %1"
+
+#. Ucjjh
+#: sfx2/source/devtools/DevToolsStrings.hrc:17
+msgctxt "STR_PAGE"
+msgid "Page %1"
+msgstr "Страница %1"
+
+#. j9DL6
+#: sfx2/source/devtools/DevToolsStrings.hrc:18
+msgctxt "STR_SLIDE"
+msgid "Slide %1"
+msgstr "Кадър %1"
+
+#. YQqL8
+#: sfx2/source/devtools/DevToolsStrings.hrc:19
+msgctxt "STR_MASTER_SLIDE"
+msgid "Master Slide %1"
+msgstr "Кадър образец %1"
+
+#. CEfNy
+#: sfx2/source/devtools/DevToolsStrings.hrc:20
+msgctxt "STR_SHEET"
+msgid "Sheet %1"
+msgstr ""
+
+#. BaABx
+#: sfx2/source/devtools/DevToolsStrings.hrc:22
+msgctxt "STR_SHAPES_NODE"
+msgid "Shapes"
+msgstr "Фигури"
+
+#. n4VWE
+#: sfx2/source/devtools/DevToolsStrings.hrc:23
+msgctxt "STR_CHARTS_ENTRY"
+msgid "Charts"
+msgstr "Диаграми"
+
+#. 5GWcX
+#: sfx2/source/devtools/DevToolsStrings.hrc:24
+msgctxt "STR_PIVOT_TABLES_ENTRY"
+msgid "Pivot Tables"
+msgstr "Обобщени таблици"
+
+#. BBLBQ
+#: sfx2/source/devtools/DevToolsStrings.hrc:25
+msgctxt "STR_DOCUMENT_ENTRY"
+msgid "Document"
+msgstr "Документ"
+
+#. 4dNGV
+#: sfx2/source/devtools/DevToolsStrings.hrc:26
+msgctxt "STR_SHEETS_ENTRY"
+msgid "Sheets"
+msgstr "Листове"
+
+#. RLwRi
+#: sfx2/source/devtools/DevToolsStrings.hrc:27
+msgctxt "STR_STYLES_ENTRY"
+msgid "Styles"
+msgstr "Стилове"
+
+#. P4RF4
+#: sfx2/source/devtools/DevToolsStrings.hrc:28
+msgctxt "STR_SLIDES_ENTRY"
+msgid "Slides"
+msgstr "Кадри"
+
+#. 4bJSH
+#: sfx2/source/devtools/DevToolsStrings.hrc:29
+msgctxt "STR_MASTER_SLIDES_ENTRY"
+msgid "Master Slides"
+msgstr "Кадри образци"
+
+#. LRq2A
+#: sfx2/source/devtools/DevToolsStrings.hrc:30
+msgctxt "STR_PAGES_ENTRY"
+msgid "Pages"
+msgstr "Страници"
+
+#. 946kV
+#: sfx2/source/devtools/DevToolsStrings.hrc:31
+msgctxt "STR_PARAGRAPHS_ENTRY"
+msgid "Paragraphs"
+msgstr "Абзаци"
+
+#. JG2qz
+#: sfx2/source/devtools/DevToolsStrings.hrc:32
+msgctxt "STR_TABLES_ENTRY"
+msgid "Tables"
+msgstr "Таблици"
+
+#. HzFoW
+#: sfx2/source/devtools/DevToolsStrings.hrc:33
+msgctxt "STR_FRAMES_ENTRY"
+msgid "Frames"
+msgstr "Рамки"
+
+#. ekGEm
+#: sfx2/source/devtools/DevToolsStrings.hrc:34
+msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
+msgid "Graphic Objects"
+msgstr "Графични обекти"
+
+#. cVWmY
+#: sfx2/source/devtools/DevToolsStrings.hrc:35
+msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
+msgid "Embedded Objects"
+msgstr "Вградени обекти"
+
+#. xfnkV
+#: sfx2/source/devtools/DevToolsStrings.hrc:37
+msgctxt "STR_ANY_VALUE_TRUE"
+msgid "True"
+msgstr ""
+
+#. 2WxdA
+#: sfx2/source/devtools/DevToolsStrings.hrc:38
+msgctxt "STR_ANY_VALUE_FALSE"
+msgid "False"
+msgstr ""
+
+#. RBC8w
+#: sfx2/source/devtools/DevToolsStrings.hrc:39
+msgctxt "STR_ANY_VALUE_NULL"
+msgid "Null"
+msgstr ""
+
+#. As494
+#: sfx2/source/devtools/DevToolsStrings.hrc:40
+msgctxt "STR_CLASS_UNKNOWN"
+msgid "Unknown"
+msgstr ""
+
+#. gAY69
+#: sfx2/source/devtools/DevToolsStrings.hrc:42
+msgctxt "STR_METHOD_TYPE_OBJECT"
+msgid "object"
+msgstr ""
+
+#. HFgBW
+#: sfx2/source/devtools/DevToolsStrings.hrc:43
+msgctxt "STR_METHOD_TYPE_STRUCT"
+msgid "struct"
+msgstr ""
+
+#. 7DCri
+#: sfx2/source/devtools/DevToolsStrings.hrc:44
+msgctxt "STR_METHOD_TYPE_ENUM"
+msgid "enum"
+msgstr ""
+
+#. aEuJR
+#: sfx2/source/devtools/DevToolsStrings.hrc:45
+msgctxt "STR_METHOD_TYPE_SEQUENCE"
+msgid "sequence"
+msgstr ""
+
+#. xXMdD
+#: sfx2/source/devtools/DevToolsStrings.hrc:47
+msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
+msgid "name container"
+msgstr ""
+
+#. QLZbz
+#: sfx2/source/devtools/DevToolsStrings.hrc:48
+msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
+msgid "index container"
+msgstr ""
+
+#. LLsJf
+#: sfx2/source/devtools/DevToolsStrings.hrc:49
+msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
+msgid "enumeration"
+msgstr ""
+
+#. aNuA9
+#: sfx2/source/devtools/DevToolsStrings.hrc:51
+msgctxt "STR_PARMETER_MODE_IN"
+msgid "[in]"
+msgstr ""
+
+#. W3AEx
+#: sfx2/source/devtools/DevToolsStrings.hrc:52
+msgctxt "STR_PARMETER_MODE_OUT"
+msgid "[out]"
+msgstr ""
+
+#. ENF6w
+#: sfx2/source/devtools/DevToolsStrings.hrc:53
+msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
+msgid "[in&out]"
+msgstr ""
+
+#. rw6AB
+#: sfx2/source/devtools/DevToolsStrings.hrc:55
+msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
+msgid "attribute"
+msgstr ""
+
+#. BwCGg
+#: sfx2/source/devtools/DevToolsStrings.hrc:56
+msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
+msgid "get"
+msgstr ""
+
+#. MissY
+#: sfx2/source/devtools/DevToolsStrings.hrc:57
+msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
+msgid "set"
+msgstr ""
+
+#. Nhmiv
+#: sfx2/source/devtools/DevToolsStrings.hrc:58
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
+msgid "may be void"
+msgstr ""
+
+#. zECkD
+#: sfx2/source/devtools/DevToolsStrings.hrc:59
+msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
+msgid "read-only"
+msgstr ""
+
+#. BtQDx
+#: sfx2/source/devtools/DevToolsStrings.hrc:60
+msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
+msgid "write-only"
+msgstr ""
+
+#. dBQEu
+#: sfx2/source/devtools/DevToolsStrings.hrc:61
+msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
+msgid "removeable"
+msgstr ""
+
+#. jRo8t
+#: sfx2/source/devtools/DevToolsStrings.hrc:62
+msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
+msgid "bound"
+msgstr ""
+
+#. rBqTG
+#: sfx2/source/devtools/DevToolsStrings.hrc:63
+msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
+msgid "constrained"
+msgstr ""
+
+#. XLnBt
+#: sfx2/source/devtools/DevToolsStrings.hrc:64
+msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
+msgid "transient"
+msgstr ""
+
+#. BK7Zk
+#: sfx2/source/devtools/DevToolsStrings.hrc:65
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
+msgid "may be ambiguous"
+msgstr ""
+
+#. BDEqD
+#: sfx2/source/devtools/DevToolsStrings.hrc:66
+msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
+msgid "may be default"
+msgstr ""
+
+#. TGQhd
+#: sfx2/source/devtools/DevToolsStrings.hrc:68
+msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
+msgid "<Sequence [%1]>"
+msgstr ""
+
+#. KZ5M4
+#: sfx2/source/devtools/DevToolsStrings.hrc:69
+msgctxt "STR_PROPERTY_VALUE_OBJECT"
+msgid "<Object@%1>"
+msgstr ""
+
+#. xKaJy
+#: sfx2/source/devtools/DevToolsStrings.hrc:70
+msgctxt "STR_PROPERTY_VALUE_STRUCT"
+msgid "<Struct>"
+msgstr ""
+
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
msgctxt "addtargetdialog|AddTargetDialog"
@@ -2628,9 +2928,9 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr "Позволява ви да приписвате на документа ваши собствени информационни полета."
-#. KERbB
-#: sfx2/uiconfig/ui/decktitlebar.ui:64 sfx2/uiconfig/ui/decktitlebar.ui:69
-msgctxt "decktitlebar|SFX_STR_SIDEBAR_CLOSE_DECK"
+#. VHwZA
+#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -2689,90 +2989,156 @@ msgid "Contains descriptive information about the document."
msgstr "Съдържа описателна информация за документа."
#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:101
-#: sfx2/uiconfig/ui/developmenttool.ui:305
+#: sfx2/uiconfig/ui/developmenttool.ui:105
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|object"
msgid "Object"
+msgstr "Обект"
+
+#. tC2rt
+#: sfx2/uiconfig/ui/developmenttool.ui:138
+msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
+msgid "Current Selection In Document"
msgstr ""
-#. 4VjCH
-#: sfx2/uiconfig/ui/developmenttool.ui:120
-msgctxt "developmenttool|selection_toggle"
+#. Po2S3
+#: sfx2/uiconfig/ui/developmenttool.ui:139
+msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
+#. eB6NR
+#: sfx2/uiconfig/ui/developmenttool.ui:151
+msgctxt "developmenttool|dom_refresh_button-tooltip"
+msgid "Refresh Document Model Tree View"
+msgstr ""
+
+#. FD2yt
+#: sfx2/uiconfig/ui/developmenttool.ui:152
+msgctxt "developmenttool|dom_refresh_button"
+msgid "Refresh"
+msgstr ""
+
+#. x6GLB
+#: sfx2/uiconfig/ui/developmenttool.ui:205
+msgctxt "developmenttool|tooltip-back"
+msgid "Back"
+msgstr ""
+
+#. SinPk
+#: sfx2/uiconfig/ui/developmenttool.ui:206
+msgctxt "developmenttool|back"
+msgid "Back"
+msgstr "Назад"
+
+#. 4CBb3
+#: sfx2/uiconfig/ui/developmenttool.ui:219
+msgctxt "developmenttool|tooltip-inspect"
+msgid "Inspect"
+msgstr ""
+
+#. vCciB
+#: sfx2/uiconfig/ui/developmenttool.ui:220
+msgctxt "developmenttool|inspect"
+msgid "Inspect"
+msgstr "Инспектиране"
+
+#. nFMXe
+#: sfx2/uiconfig/ui/developmenttool.ui:233
+msgctxt "developmenttool|tooltip-refresh"
+msgid "Refresh"
+msgstr ""
+
+#. CFuvW
+#: sfx2/uiconfig/ui/developmenttool.ui:234
+msgctxt "developmenttool|refresh"
+msgid "Refresh"
+msgstr ""
+
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:153
+#: sfx2/uiconfig/ui/developmenttool.ui:258
msgctxt "developmenttool|classname"
msgid "Class name:"
-msgstr ""
+msgstr "Име на клас:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:209
-#: sfx2/uiconfig/ui/developmenttool.ui:255
+#: sfx2/uiconfig/ui/developmenttool.ui:330
+#: sfx2/uiconfig/ui/developmenttool.ui:379
msgctxt "developmenttool|name"
msgid "Name"
-msgstr ""
+msgstr "Име"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:226
+#: sfx2/uiconfig/ui/developmenttool.ui:350
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
-msgstr ""
+msgstr "Интерфейси"
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:275
+#: sfx2/uiconfig/ui/developmenttool.ui:402
msgctxt "developmenttool|services"
msgid "Services"
-msgstr ""
+msgstr "Услуги"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:317
+#: sfx2/uiconfig/ui/developmenttool.ui:447
msgctxt "developmenttool|value"
msgid "Value"
-msgstr ""
+msgstr "Стойност"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:329
+#: sfx2/uiconfig/ui/developmenttool.ui:462
msgctxt "developmenttool|type"
msgid "Type"
+msgstr "Тип"
+
+#. zpXuY
+#: sfx2/uiconfig/ui/developmenttool.ui:477
+msgctxt "developmenttool|info"
+msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:349
+#: sfx2/uiconfig/ui/developmenttool.ui:500
msgctxt "developmenttool|properties"
msgid "Properties"
-msgstr ""
+msgstr "Свойства"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:379
+#: sfx2/uiconfig/ui/developmenttool.ui:530
msgctxt "developmenttool|method"
msgid "Method"
-msgstr ""
+msgstr "Метод"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:391
+#: sfx2/uiconfig/ui/developmenttool.ui:545
msgctxt "developmenttool|returntype"
msgid "Return Type"
-msgstr ""
+msgstr "Тип на резултата"
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:403
+#: sfx2/uiconfig/ui/developmenttool.ui:560
msgctxt "developmenttool|parameters"
msgid "Parameters"
-msgstr ""
+msgstr "Параметри"
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:415
+#: sfx2/uiconfig/ui/developmenttool.ui:575
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
-msgstr ""
+msgstr "Реализационен клас"
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:435
+#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|methods"
msgid "Methods"
-msgstr ""
+msgstr "Методи"
+
+#. 68CBk
+#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
+msgctxt "devtoolsmenu|inspect"
+msgid "Inspect"
+msgstr "Инспектиране"
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:27
@@ -3198,7 +3564,7 @@ msgstr "Търсене на термин"
#: sfx2/uiconfig/ui/helpsearchpage.ui:122
msgctxt "helpsearchpage|find"
msgid "_Find"
-msgstr ""
+msgstr "Търсене"
#. ZiE8A
#: sfx2/uiconfig/ui/helpsearchpage.ui:141
@@ -3384,7 +3750,7 @@ msgstr "От файл..."
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:45
msgctxt "loadtemplatedialog|fromfile|tooltip_text"
msgid "Copy styles from selected external document to current document."
-msgstr ""
+msgstr "Копиране на стилове от избран външен документ към текущия документ."
#. GE236
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:48
@@ -3420,19 +3786,19 @@ msgstr "Шаблони"
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:245
msgctxt "loadtemplatedialog|label2|tooltip_text"
msgid "Templates in the selected category"
-msgstr ""
+msgstr "Шаблони в избраната категория"
#. rFENe
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:264
msgctxt "loadtemplatedialog|text"
msgid "_Paragraph and Character"
-msgstr ""
+msgstr "Абзац и знак"
#. jCAuA
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:269
msgctxt "loadtemplatedialog|text|tooltip_text"
msgid "Copy paragraph and character styles to current document."
-msgstr ""
+msgstr "Копиране на абзацни и знакови стилове към текущия документ."
#. VLWfZ
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:273
@@ -3450,7 +3816,7 @@ msgstr "Рамка"
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:289
msgctxt "loadtemplatedialog|frame|tooltip_text"
msgid "Copy frame styles to current document."
-msgstr ""
+msgstr "Копиране на стилове за рамки към текущия документ."
#. 4ZF6u
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:293
@@ -3462,13 +3828,13 @@ msgstr "Зарежда стиловете на рамки от избрания
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:304
msgctxt "loadtemplatedialog|pages"
msgid "Pa_ge"
-msgstr ""
+msgstr "Страница"
#. hdRo6
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:309
msgctxt "loadtemplatedialog|pages|tooltip_text"
msgid "Copy page styles to current document."
-msgstr ""
+msgstr "Копиране на стилове за страници към текущия документ."
#. o2C8c
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:313
@@ -3480,19 +3846,19 @@ msgstr "Зарежда стиловете на страници от избра
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:324
msgctxt "loadtemplatedialog|numbering"
msgid "_List"
-msgstr ""
+msgstr "Списък"
#. VZxbf
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:329
msgctxt "loadtemplatedialog|numbering|tooltip_text"
msgid "Copy list styles to current document."
-msgstr ""
+msgstr "Копиране на стилове за списъци към текущия документ."
#. PAsEB
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:333
msgctxt "loadtemplatedialog|extended_tip|numbering"
msgid "Loads the list styles from the selected document into the current document."
-msgstr ""
+msgstr "Зарежда стиловете за списъци от избрания документ в текущия документ."
#. VWzsG
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:344
@@ -3504,7 +3870,7 @@ msgstr "Презаписване"
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:350
msgctxt "loadtemplatedialog|overwrite|tooltip_text"
msgid "Overwrite styles with same name"
-msgstr ""
+msgstr "Заместване на стиловете със същото име"
#. A9ogA
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:353
@@ -3516,7 +3882,7 @@ msgstr "Замества стиловете в текущия документ,
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:376
msgctxt "loadtemplatedialog|alttitle"
msgid "Load Styles from Template"
-msgstr ""
+msgstr "Зареждане на стилове от шаблон"
#. X5Pi5
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:413
@@ -3594,31 +3960,31 @@ msgstr "Съдържа"
#: sfx2/uiconfig/ui/newstyle.ui:16
msgctxt "newstyle|CreateStyleDialog"
msgid "New Style from Selection"
-msgstr ""
+msgstr "Нов стил от избраното"
#. 2XkTt
#: sfx2/uiconfig/ui/newstyle.ui:140
msgctxt "newstyle|styles-atkobject"
msgid "Custom styles for selected category"
-msgstr ""
+msgstr "Потребителски стилове за избраната категория"
#. UEGSg
#: sfx2/uiconfig/ui/newstyle.ui:160
msgctxt "newstyle|stylename-atkobject"
msgid "Style name"
-msgstr ""
+msgstr "Име на стил"
#. bjN3T
#: sfx2/uiconfig/ui/newstyle.ui:175
msgctxt "newstyle|categorylabel"
msgid "Custom styles for current document"
-msgstr ""
+msgstr "Потребителски стилове за текущия документ"
#. 6mnDS
#: sfx2/uiconfig/ui/newstyle.ui:191
msgctxt "newstyle|label1"
msgid "Enter new style name:"
-msgstr ""
+msgstr "Въведете ново име на стил:"
#. R6zJz
#: sfx2/uiconfig/ui/notebookbar.ui:74
@@ -3932,9 +4298,9 @@ msgctxt "extended_tip|OptPrintPage"
msgid "Specifies the print setting options."
msgstr "Задава настройките за печатане."
-#. b6PHE
-#: sfx2/uiconfig/ui/paneltitlebar.ui:71 sfx2/uiconfig/ui/paneltitlebar.ui:76
-msgctxt "paneltitlebar|SFX_STR_SIDEBAR_MORE_OPTIONS"
+#. NEo7g
+#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
+msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
@@ -4050,7 +4416,7 @@ msgstr "Да не се записва"
#: sfx2/uiconfig/ui/querysavedialog.ui:53
msgctxt "querysavedialog|save"
msgid "_Save"
-msgstr ""
+msgstr "Записване"
#. 6WbvE
#: sfx2/uiconfig/ui/safemodequerydialog.ui:7
@@ -4080,13 +4446,13 @@ msgstr "Записване като шаблон"
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:102
msgctxt "saveastemplatedlg|create_label"
msgid "Enter Template _Name:"
-msgstr ""
+msgstr "Въведете име на шаблон:"
#. NyFdH
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:103
msgctxt "saveastemplatedlg|create_label"
msgid "Enter a name for the template."
-msgstr ""
+msgstr "Въведете име за шаблона."
#. Xo6BH
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:126
@@ -4098,13 +4464,13 @@ msgstr "Въведете име за шаблона."
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:154
msgctxt "saveastemplatedlg|select_label"
msgid "Select Template _Category:"
-msgstr ""
+msgstr "Изберете категория шаблони:"
#. 4ANkg
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:155
msgctxt "saveastemplatedlg|select_label"
msgid "Save template in selected category."
-msgstr ""
+msgstr "Записване на шаблона в избраната категория."
#. JBPKb
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:203
@@ -4482,13 +4848,13 @@ msgstr "Търсене..."
#: sfx2/uiconfig/ui/templatedlg.ui:212
msgctxt "templatedlg|thumbnail_view_btn|tooltip_text"
msgid "Thumbnail View"
-msgstr ""
+msgstr "Изглед с миниатюри"
#. j76ke
#: sfx2/uiconfig/ui/templatedlg.ui:228
msgctxt "templatedlg|list_view_btn|tooltip_text"
msgid "List View"
-msgstr ""
+msgstr "Списъчен изглед"
#. fXVNY
#: sfx2/uiconfig/ui/templatedlg.ui:256
@@ -4506,7 +4872,7 @@ msgstr "Всички приложения"
#: sfx2/uiconfig/ui/templatedlg.ui:259
msgctxt "templatedlg|applist"
msgid "Text Documents"
-msgstr ""
+msgstr "Текстови документи"
#. eECt7
#: sfx2/uiconfig/ui/templatedlg.ui:260
@@ -4548,31 +4914,31 @@ msgstr "Филтър"
#: sfx2/uiconfig/ui/templatedlg.ui:438 sfx2/uiconfig/ui/templatedlg.ui:558
msgctxt "templatedlg|treeviewcolumn1"
msgid "Name"
-msgstr ""
+msgstr "Име"
#. 7EJRA
#: sfx2/uiconfig/ui/templatedlg.ui:455 sfx2/uiconfig/ui/templatedlg.ui:575
msgctxt "templatedlg|treeviewcolumn2"
msgid "Category"
-msgstr ""
+msgstr "Категория"
#. AC27i
#: sfx2/uiconfig/ui/templatedlg.ui:470 sfx2/uiconfig/ui/templatedlg.ui:590
msgctxt "templatedlg|treeviewcolumn3"
msgid "Application"
-msgstr ""
+msgstr "Приложение"
#. eSaBw
#: sfx2/uiconfig/ui/templatedlg.ui:485 sfx2/uiconfig/ui/templatedlg.ui:605
msgctxt "templatedlg|treeviewcolumn4"
msgid "Modified"
-msgstr ""
+msgstr "Променен"
#. pNzYA
#: sfx2/uiconfig/ui/templatedlg.ui:500 sfx2/uiconfig/ui/templatedlg.ui:620
msgctxt "templatedlg|treeviewcolumn5"
msgid "Size"
-msgstr ""
+msgstr "Размер"
#. j39jM
#: sfx2/uiconfig/ui/templatedlg.ui:646
@@ -4584,13 +4950,13 @@ msgstr "Списък на шаблоните"
#: sfx2/uiconfig/ui/templatedlg.ui:664
msgctxt "templatedlg|action_menu|tooltip_text"
msgid "Tools"
-msgstr ""
+msgstr "Инструменти"
#. LUs2m
#: sfx2/uiconfig/ui/templatedlg.ui:672
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
-msgstr ""
+msgstr "Предлага команди за създаване, преименуване и изтриване на категории, нулиране на подразбираните шаблони и опресняване на диспечера на шаблони."
#. hG7qW
#: sfx2/uiconfig/ui/templatedlg.ui:684
@@ -4716,7 +5082,7 @@ msgstr "_Показване..."
#: sfx2/uiconfig/ui/versionscmis.ui:92
msgctxt "versionscmis|open"
msgid "_Open"
-msgstr ""
+msgstr "Отваряне"
#. gRBJa
#: sfx2/uiconfig/ui/versionscmis.ui:177
@@ -4782,7 +5148,7 @@ msgstr "Показва целия коментар за избраната ве
#: sfx2/uiconfig/ui/versionsofdialog.ui:119
msgctxt "versionsofdialog|open"
msgid "_Open"
-msgstr ""
+msgstr "Отваряне"
#. ASJac
#: sfx2/uiconfig/ui/versionsofdialog.ui:126
diff --git a/source/bg/shell/messages.po b/source/bg/shell/messages.po
index 0cd57b51fa7..3814b5d579b 100644
--- a/source/bg/shell/messages.po
+++ b/source/bg/shell/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2019-05-26 09:15+0000\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/shellmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1558862141.000000\n"
#. 9taro
@@ -59,64 +59,64 @@ msgstr "Отказ"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/starmath/messages.po b/source/bg/starmath/messages.po
index 8767487958d..a36f84c14bf 100644
--- a/source/bg/starmath/messages.po
+++ b/source/bg/starmath/messages.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2020-12-04 23:36+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-02-28 09: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-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -427,2273 +427,2273 @@ msgstr "or"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. hW5GK
#. clang-format off
-#: starmath/inc/strings.hrc:33
+#: starmath/inc/strings.hrc:32
msgctxt "RID_PLUSX_HELP"
msgid "+ Sign"
msgstr "Знак +"
#. FMnYC
-#: starmath/inc/strings.hrc:34
+#: starmath/inc/strings.hrc:33
msgctxt "RID_MINUSX_HELP"
msgid "- Sign"
msgstr "Знак -"
#. eaaXU
-#: starmath/inc/strings.hrc:35
+#: starmath/inc/strings.hrc:34
msgctxt "RID_PLUSMINUSX_HELP"
msgid "+- Sign"
msgstr "Знак +-"
#. WVfQk
-#: starmath/inc/strings.hrc:36
+#: starmath/inc/strings.hrc:35
msgctxt "RID_MINUSPLUSX_HELP"
msgid "-+ Sign"
msgstr "Знак -+"
#. EFpbW
-#: starmath/inc/strings.hrc:37
+#: starmath/inc/strings.hrc:36
msgctxt "RID_NEGX_HELP"
msgid "Boolean NOT"
msgstr "Булево НЕ"
#. RG9ck
-#: starmath/inc/strings.hrc:38
+#: starmath/inc/strings.hrc:37
msgctxt "RID_XPLUSY_HELP"
msgid "Addition +"
msgstr "Събиране +"
#. AJuhx
-#: starmath/inc/strings.hrc:39
+#: starmath/inc/strings.hrc:38
msgctxt "RID_XMINUSY_HELP"
msgid "Subtraction -"
msgstr "Изваждане -"
#. Pn7Ti
-#: starmath/inc/strings.hrc:40
+#: starmath/inc/strings.hrc:39
msgctxt "RID_XCDOTY_HELP"
msgid "Multiplication (Dot)"
msgstr "Умножение (точка)"
#. AvCEW
-#: starmath/inc/strings.hrc:41
+#: starmath/inc/strings.hrc:40
msgctxt "RID_XTIMESY_HELP"
msgid "Multiplication (x)"
msgstr "Умножение (x)"
#. ZEjZA
-#: starmath/inc/strings.hrc:42
+#: starmath/inc/strings.hrc:41
msgctxt "RID_XSYMTIMESY_HELP"
msgid "Multiplication (*)"
msgstr "Умножение (*)"
#. DNDLb
-#: starmath/inc/strings.hrc:43
+#: starmath/inc/strings.hrc:42
msgctxt "RID_XSYMDIVIDEY_HELP"
msgid "Division (Slash)"
msgstr "Деление (наклонена черта)"
#. jrFDi
-#: starmath/inc/strings.hrc:44
+#: starmath/inc/strings.hrc:43
msgctxt "RID_XDIVY_HELP"
msgid "Division (÷)"
msgstr "Деление (÷)"
#. B4P4M
-#: starmath/inc/strings.hrc:45
+#: starmath/inc/strings.hrc:44
msgctxt "RID_XOVERY_HELP"
msgid "Division (Fraction)"
msgstr "Деление (дроб)"
#. 4UiR5
-#: starmath/inc/strings.hrc:46
+#: starmath/inc/strings.hrc:45
msgctxt "RID_FRACXY_HELP"
msgid "Fraction"
msgstr "Дроб"
#. 37Fw8
-#: starmath/inc/strings.hrc:47
+#: starmath/inc/strings.hrc:46
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
msgstr "Наклонена черта в кръг"
#. PVroC
-#: starmath/inc/strings.hrc:48
+#: starmath/inc/strings.hrc:47
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
msgstr "Точка в кръг"
#. 77wcq
-#: starmath/inc/strings.hrc:49
+#: starmath/inc/strings.hrc:48
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
msgstr "Минус в кръг"
#. 9yGK7
-#: starmath/inc/strings.hrc:50
+#: starmath/inc/strings.hrc:49
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
msgstr "Плюс в кръг"
#. zjt8o
-#: starmath/inc/strings.hrc:51
+#: starmath/inc/strings.hrc:50
msgctxt "RID_XOTIMESY_HELP"
msgid "Tensor Product"
msgstr "Тензорно произведение"
#. S6QRE
-#: starmath/inc/strings.hrc:52
+#: starmath/inc/strings.hrc:51
msgctxt "RID_XANDY_HELP"
msgid "Boolean AND"
msgstr "Булево И"
#. 2CAKD
-#: starmath/inc/strings.hrc:53
+#: starmath/inc/strings.hrc:52
msgctxt "RID_XORY_HELP"
msgid "Boolean OR"
msgstr "Булево ИЛИ"
#. DcpN2
-#: starmath/inc/strings.hrc:54
+#: starmath/inc/strings.hrc:53
msgctxt "RID_XEQY_HELP"
msgid "Is Equal"
msgstr "Равно"
#. 67oaU
-#: starmath/inc/strings.hrc:55
+#: starmath/inc/strings.hrc:54
msgctxt "RID_XNEQY_HELP"
msgid "Is Not Equal"
msgstr "Не равно"
#. evxCD
-#: starmath/inc/strings.hrc:56
+#: starmath/inc/strings.hrc:55
msgctxt "RID_XLTY_HELP"
msgid "Is Less Than"
msgstr "По-малко"
#. 2zLD5
-#: starmath/inc/strings.hrc:57
+#: starmath/inc/strings.hrc:56
msgctxt "RID_XGTY_HELP"
msgid "Is Greater Than"
msgstr "По-голямо"
#. FToXS
-#: starmath/inc/strings.hrc:58
+#: starmath/inc/strings.hrc:57
msgctxt "RID_XLEY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "По-малко или равно"
#. EhSMB
-#: starmath/inc/strings.hrc:59
+#: starmath/inc/strings.hrc:58
msgctxt "RID_XGEY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "По-голямо или равно"
#. cAE9M
-#: starmath/inc/strings.hrc:60
+#: starmath/inc/strings.hrc:59
msgctxt "RID_XLESLANTY_HELP"
msgid "Is Less Than Or Equal To"
msgstr "По-малко или равно"
#. hE4hg
-#: starmath/inc/strings.hrc:61
+#: starmath/inc/strings.hrc:60
msgctxt "RID_XGESLANTY_HELP"
msgid "Is Greater Than Or Equal To"
msgstr "По-голямо или равно"
#. KAk9w
-#: starmath/inc/strings.hrc:62
+#: starmath/inc/strings.hrc:61
msgctxt "RID_XLLY_HELP"
msgid "Is Much Less Than"
msgstr "Много по-малко"
#. m6Hfp
-#: starmath/inc/strings.hrc:63
+#: starmath/inc/strings.hrc:62
msgctxt "RID_XGGY_HELP"
msgid "Is Much Greater Than"
msgstr "Много по-голямо"
#. SyusD
-#: starmath/inc/strings.hrc:64
+#: starmath/inc/strings.hrc:63
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
msgstr "Се дефинира като"
#. sXM7x
-#: starmath/inc/strings.hrc:65
+#: starmath/inc/strings.hrc:64
msgctxt "RID_XEQUIVY_HELP"
msgid "Is Congruent To"
msgstr "Конгруентно"
#. PiF9E
-#: starmath/inc/strings.hrc:66
+#: starmath/inc/strings.hrc:65
msgctxt "RID_XAPPROXY_HELP"
msgid "Is Approximately Equal"
msgstr "Приблизително равно"
#. qxXzh
-#: starmath/inc/strings.hrc:67
+#: starmath/inc/strings.hrc:66
msgctxt "RID_XSIMY_HELP"
msgid "Is Similar To"
msgstr "Подобно"
#. Yu5EU
-#: starmath/inc/strings.hrc:68
+#: starmath/inc/strings.hrc:67
msgctxt "RID_XSIMEQY_HELP"
msgid "Is Similar Or Equal"
msgstr "Приблизително равно или равно"
#. 4DWLB
-#: starmath/inc/strings.hrc:69
+#: starmath/inc/strings.hrc:68
msgctxt "RID_XPROPY_HELP"
msgid "Is Proportional To"
msgstr "Пропорционално"
#. 8RDRN
-#: starmath/inc/strings.hrc:70
+#: starmath/inc/strings.hrc:69
msgctxt "RID_XORTHOY_HELP"
msgid "Is Orthogonal To"
msgstr "Ортогонално"
#. eeLJw
-#: starmath/inc/strings.hrc:71
+#: starmath/inc/strings.hrc:70
msgctxt "RID_XPARALLELY_HELP"
msgid "Is Parallel To"
msgstr "Успоредно"
#. kKBBK
-#: starmath/inc/strings.hrc:72
+#: starmath/inc/strings.hrc:71
msgctxt "RID_XTOWARDY_HELP"
msgid "Toward"
msgstr "Клони към"
#. Ju2yd
-#: starmath/inc/strings.hrc:73
+#: starmath/inc/strings.hrc:72
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
msgstr "Съответства на (ляво)"
#. JuZfc
-#: starmath/inc/strings.hrc:74
+#: starmath/inc/strings.hrc:73
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
msgstr "Съответства на (дясно)"
#. FA6hg
-#: starmath/inc/strings.hrc:75
+#: starmath/inc/strings.hrc:74
msgctxt "RID_XINY_HELP"
msgid "Is In"
msgstr "Принадлежи"
#. oCdme
-#: starmath/inc/strings.hrc:76
+#: starmath/inc/strings.hrc:75
msgctxt "RID_XNOTINY_HELP"
msgid "Is Not In"
msgstr "Не принадлежи"
#. d6H3K
-#: starmath/inc/strings.hrc:77
+#: starmath/inc/strings.hrc:76
msgctxt "RID_XOWNSY_HELP"
msgid "Owns"
msgstr "Съдържа"
#. w3EsE
-#: starmath/inc/strings.hrc:78
+#: starmath/inc/strings.hrc:77
msgctxt "RID_XUNIONY_HELP"
msgid "Union"
msgstr "Обединение"
#. CEmDg
-#: starmath/inc/strings.hrc:79
+#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
msgstr "Сечение"
#. HiSD3
-#: starmath/inc/strings.hrc:80
+#: starmath/inc/strings.hrc:79
msgctxt "RID_XSETMINUSY_HELP"
msgid "Difference"
msgstr "Разлика"
#. BBD4r
-#: starmath/inc/strings.hrc:81
+#: starmath/inc/strings.hrc:80
msgctxt "RID_XSETQUOTIENTY_HELP"
msgid "Quotient Set"
msgstr "Частно множество"
#. ToVZV
-#: starmath/inc/strings.hrc:82
+#: starmath/inc/strings.hrc:81
msgctxt "RID_XSUBSETY_HELP"
msgid "Subset"
msgstr "Подмножество"
#. ERo34
-#: starmath/inc/strings.hrc:83
+#: starmath/inc/strings.hrc:82
msgctxt "RID_XSUBSETEQY_HELP"
msgid "Subset Or Equal To"
msgstr "Подмножество или равно"
#. Ut5XD
-#: starmath/inc/strings.hrc:84
+#: starmath/inc/strings.hrc:83
msgctxt "RID_XSUPSETY_HELP"
msgid "Superset"
msgstr "Надмножество"
#. BCHWL
-#: starmath/inc/strings.hrc:85
+#: starmath/inc/strings.hrc:84
msgctxt "RID_XSUPSETEQY_HELP"
msgid "Superset Or Equal To"
msgstr "Надмножество или равно"
#. K67nF
-#: starmath/inc/strings.hrc:86
+#: starmath/inc/strings.hrc:85
msgctxt "RID_XNSUBSETY_HELP"
msgid "Not Subset"
msgstr "Не подмножество"
#. FsuYX
-#: starmath/inc/strings.hrc:87
+#: starmath/inc/strings.hrc:86
msgctxt "RID_XNSUBSETEQY_HELP"
msgid "Not Subset Or Equal"
msgstr "Не подмножество или равно"
#. 7LJYb
-#: starmath/inc/strings.hrc:88
+#: starmath/inc/strings.hrc:87
msgctxt "RID_XNSUPSETY_HELP"
msgid "Not Superset"
msgstr "Не надмножество"
#. 2Z4St
-#: starmath/inc/strings.hrc:89
+#: starmath/inc/strings.hrc:88
msgctxt "RID_XNSUPSETEQY_HELP"
msgid "Not Superset Or Equal"
msgstr "Не надмножество или равно"
#. GF9zf
-#: starmath/inc/strings.hrc:90
+#: starmath/inc/strings.hrc:89
msgctxt "RID_FUNCX_HELP"
msgid "General function"
msgstr "Обща функция"
#. AcgYW
-#: starmath/inc/strings.hrc:91
+#: starmath/inc/strings.hrc:90
msgctxt "RID_ABSX_HELP"
msgid "Absolute Value"
msgstr "Абсолютна стойност"
#. rFEx7
-#: starmath/inc/strings.hrc:92
+#: starmath/inc/strings.hrc:91
msgctxt "RID_FACTX_HELP"
msgid "Factorial"
msgstr "Факториел"
#. Cj4hL
-#: starmath/inc/strings.hrc:93
+#: starmath/inc/strings.hrc:92
msgctxt "RID_SQRTX_HELP"
msgid "Square Root"
msgstr "Квадратен корен"
#. QtrqZ
-#: starmath/inc/strings.hrc:94
+#: starmath/inc/strings.hrc:93
msgctxt "RID_NROOTXY_HELP"
msgid "N-th Root"
msgstr "N-ти корен"
#. JLBAS
-#: starmath/inc/strings.hrc:95
+#: starmath/inc/strings.hrc:94
msgctxt "RID_EX_HELP"
msgid "Exponential Function"
msgstr "Експоненциална функция"
#. AEQ38
-#: starmath/inc/strings.hrc:96
+#: starmath/inc/strings.hrc:95
msgctxt "RID_EXPX_HELP"
msgid "Exponential Function"
msgstr "Експоненциална функция"
#. GjNwW
-#: starmath/inc/strings.hrc:97
+#: starmath/inc/strings.hrc:96
msgctxt "RID_LNX_HELP"
msgid "Natural Logarithm"
msgstr "Натурален логаритъм"
#. FkUgL
-#: starmath/inc/strings.hrc:98
+#: starmath/inc/strings.hrc:97
msgctxt "RID_LOGX_HELP"
msgid "Logarithm"
msgstr "Логаритъм"
#. EChK8
-#: starmath/inc/strings.hrc:99
+#: starmath/inc/strings.hrc:98
msgctxt "RID_SINX_HELP"
msgid "Sine"
msgstr "Синус"
#. MQGzb
-#: starmath/inc/strings.hrc:100
+#: starmath/inc/strings.hrc:99
msgctxt "RID_COSX_HELP"
msgid "Cosine"
msgstr "Косинус"
#. 8zgCh
-#: starmath/inc/strings.hrc:101
+#: starmath/inc/strings.hrc:100
msgctxt "RID_TANX_HELP"
msgid "Tangent"
msgstr "Тангенс"
#. BBRxx
-#: starmath/inc/strings.hrc:102
+#: starmath/inc/strings.hrc:101
msgctxt "RID_COTX_HELP"
msgid "Cotangent"
msgstr "Котангтенс"
#. DsTBd
-#: starmath/inc/strings.hrc:103
+#: starmath/inc/strings.hrc:102
msgctxt "RID_ARCSINX_HELP"
msgid "Arcsine"
msgstr "Аркуссинус"
#. FPzbg
-#: starmath/inc/strings.hrc:104
+#: starmath/inc/strings.hrc:103
msgctxt "RID_ARCCOSX_HELP"
msgid "Arccosine"
msgstr "Аркускосинус"
#. EFP3E
-#: starmath/inc/strings.hrc:105
+#: starmath/inc/strings.hrc:104
msgctxt "RID_ARCTANX_HELP"
msgid "Arctangent"
msgstr "Аркустангенс"
#. mpBY2
-#: starmath/inc/strings.hrc:106
+#: starmath/inc/strings.hrc:105
msgctxt "RID_ARCCOTX_HELP"
msgid "Arccotangent"
msgstr "Аркускотангенс"
#. gpCNS
-#: starmath/inc/strings.hrc:107
+#: starmath/inc/strings.hrc:106
msgctxt "RID_SINHX_HELP"
msgid "Hyperbolic Sine"
msgstr "Хиперболичен синус"
#. QXCBa
-#: starmath/inc/strings.hrc:108
+#: starmath/inc/strings.hrc:107
msgctxt "RID_COSHX_HELP"
msgid "Hyperbolic Cosine"
msgstr "Хиперболичен косинус"
#. F4ad5
-#: starmath/inc/strings.hrc:109
+#: starmath/inc/strings.hrc:108
msgctxt "RID_TANHX_HELP"
msgid "Hyperbolic Tangent"
msgstr "Хиперболичен тангенс"
#. vtxUA
-#: starmath/inc/strings.hrc:110
+#: starmath/inc/strings.hrc:109
msgctxt "RID_COTHX_HELP"
msgid "Hyperbolic Cotangent"
msgstr "Хиперболичен котангтенс"
#. afq2C
-#: starmath/inc/strings.hrc:111
+#: starmath/inc/strings.hrc:110
msgctxt "RID_ARSINHX_HELP"
msgid "Area Hyperbolic Sine"
msgstr "Хиперболичен ареасинус"
#. bYkRi
-#: starmath/inc/strings.hrc:112
+#: starmath/inc/strings.hrc:111
msgctxt "RID_ARCOSHX_HELP"
msgid "Area Hyperbolic Cosine"
msgstr "Хиперболичен ареакосинус"
#. acsCE
-#: starmath/inc/strings.hrc:113
+#: starmath/inc/strings.hrc:112
msgctxt "RID_ARTANHX_HELP"
msgid "Area Hyperbolic Tangent"
msgstr "Хиперболичен ареатангенс"
#. v9ccB
-#: starmath/inc/strings.hrc:114
+#: starmath/inc/strings.hrc:113
msgctxt "RID_ARCOTHX_HELP"
msgid "Area Hyperbolic Cotangent"
msgstr "Хиперболичен ареакотангтенс"
#. G2RAG
-#: starmath/inc/strings.hrc:115
+#: starmath/inc/strings.hrc:114
msgctxt "RID_OPERX_HELP"
msgid "General operator"
msgstr "Общ оператор"
#. EZ2X2
-#: starmath/inc/strings.hrc:116
+#: starmath/inc/strings.hrc:115
msgctxt "RID_OPER_FROMX_HELP"
msgid "General operator Subscript Bottom"
msgstr "Общ оператор, индекс отдолу"
#. HaUqv
-#: starmath/inc/strings.hrc:117
+#: starmath/inc/strings.hrc:116
msgctxt "RID_OPER_TOX_HELP"
msgid "General operator Superscript Top"
msgstr "Общ оператор, индекс отгоре"
#. Pch4L
-#: starmath/inc/strings.hrc:118
+#: starmath/inc/strings.hrc:117
msgctxt "RID_OPER_FROMTOX_HELP"
msgid "General operator Sup/Sub script"
msgstr "Общ оператор, горен/долен индекс"
#. 4eGMf
-#: starmath/inc/strings.hrc:119
+#: starmath/inc/strings.hrc:118
msgctxt "RID_SUMX_HELP"
msgid "Sum"
msgstr "Сума"
#. gV6ns
-#: starmath/inc/strings.hrc:120
+#: starmath/inc/strings.hrc:119
msgctxt "RID_SUM_FROMX_HELP"
msgid "Sum Subscript Bottom"
msgstr "Долен индекс на сума"
#. C3yFy
-#: starmath/inc/strings.hrc:121
+#: starmath/inc/strings.hrc:120
msgctxt "RID_SUM_TOX_HELP"
msgid "Sum Superscript Top"
msgstr "Горен индекс на сума"
#. oTcL9
-#: starmath/inc/strings.hrc:122
+#: starmath/inc/strings.hrc:121
msgctxt "RID_SUM_FROMTOX_HELP"
msgid "Sum Sup/Sub script"
msgstr "Индекси на сума"
#. zAAwA
-#: starmath/inc/strings.hrc:123
+#: starmath/inc/strings.hrc:122
msgctxt "RID_PRODX_HELP"
msgid "Product"
msgstr "Произведение"
#. 8GA67
-#: starmath/inc/strings.hrc:124
+#: starmath/inc/strings.hrc:123
msgctxt "RID_PROD_FROMX_HELP"
msgid "Product Subscript Bottom"
msgstr "Долен индекс на произведение"
#. EYVB4
-#: starmath/inc/strings.hrc:125
+#: starmath/inc/strings.hrc:124
msgctxt "RID_PROD_TOX_HELP"
msgid "Product Superscript Top"
msgstr "Горен индекс на произведение"
#. 73BFU
-#: starmath/inc/strings.hrc:126
+#: starmath/inc/strings.hrc:125
msgctxt "RID_PROD_FROMTOX_HELP"
msgid "Product Sup/Sub script"
msgstr "Индекси на произведение"
#. wAwFG
-#: starmath/inc/strings.hrc:127
+#: starmath/inc/strings.hrc:126
msgctxt "RID_COPRODX_HELP"
msgid "Coproduct"
msgstr "Koпроизведение"
#. MLtkV
-#: starmath/inc/strings.hrc:128
+#: starmath/inc/strings.hrc:127
msgctxt "RID_COPROD_FROMX_HELP"
msgid "Coproduct Subscript Bottom"
msgstr "Долен индекс на копроизведение"
#. kCvEu
-#: starmath/inc/strings.hrc:129
+#: starmath/inc/strings.hrc:128
msgctxt "RID_COPROD_TOX_HELP"
msgid "Coproduct Superscript Top"
msgstr "Горен индекс на копроизведение"
#. PGH59
-#: starmath/inc/strings.hrc:130
+#: starmath/inc/strings.hrc:129
msgctxt "RID_COPROD_FROMTOX_HELP"
msgid "Coproduct Sup/Sub script"
msgstr "Индекси на копроизведение"
#. eyBRm
-#: starmath/inc/strings.hrc:131
+#: starmath/inc/strings.hrc:130
msgctxt "RID_LIMX_HELP"
msgid "Limes"
msgstr "Граница"
#. 7zDvY
-#: starmath/inc/strings.hrc:132
+#: starmath/inc/strings.hrc:131
msgctxt "RID_LIM_FROMX_HELP"
msgid "Limes Subscript Bottom"
msgstr "Долен индекс на граница"
#. CbG7y
-#: starmath/inc/strings.hrc:133
+#: starmath/inc/strings.hrc:132
msgctxt "RID_LIM_TOX_HELP"
msgid "Limes Superscript Top"
msgstr "Горен индекс на граница"
#. EWw4P
-#: starmath/inc/strings.hrc:134
+#: starmath/inc/strings.hrc:133
msgctxt "RID_LIM_FROMTOX_HELP"
msgid "Limes Sup/Sub script"
msgstr "Индекси на граница"
#. wL7Ae
-#: starmath/inc/strings.hrc:135
+#: starmath/inc/strings.hrc:134
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
msgstr "Долна граница, limes inferior"
#. YMCGq
-#: starmath/inc/strings.hrc:136
+#: starmath/inc/strings.hrc:135
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
msgstr "Долен индекс на долна граница"
#. GtSiM
-#: starmath/inc/strings.hrc:137
+#: starmath/inc/strings.hrc:136
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
msgstr "Горен индекс на долна граница"
#. xGGCw
-#: starmath/inc/strings.hrc:138
+#: starmath/inc/strings.hrc:137
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
msgstr "Горен/долен индекс на долна граница"
#. pZzYb
-#: starmath/inc/strings.hrc:139
+#: starmath/inc/strings.hrc:138
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
msgstr "Горна граница, limes superior"
#. Wi8KX
-#: starmath/inc/strings.hrc:140
+#: starmath/inc/strings.hrc:139
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
msgstr "Долен индекс на горна граница"
#. KVDSH
-#: starmath/inc/strings.hrc:141
+#: starmath/inc/strings.hrc:140
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
msgstr "Горен индекс на горна граница"
#. fpZ2c
-#: starmath/inc/strings.hrc:142
+#: starmath/inc/strings.hrc:141
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
msgstr "Горен/долен индекс на горна граница"
#. F7Cc3
-#: starmath/inc/strings.hrc:143
+#: starmath/inc/strings.hrc:142
msgctxt "RID_EXISTS_HELP"
msgid "There Exists"
msgstr "Квантор за съществуване"
#. Nhgso
-#: starmath/inc/strings.hrc:144
+#: starmath/inc/strings.hrc:143
msgctxt "RID_NOTEXISTS_HELP"
msgid "There Not Exists"
msgstr "Не съществува"
#. yrnBf
-#: starmath/inc/strings.hrc:145
+#: starmath/inc/strings.hrc:144
msgctxt "RID_FORALL_HELP"
msgid "For all"
msgstr "Квантор за общност"
#. NkTAp
-#: starmath/inc/strings.hrc:146
+#: starmath/inc/strings.hrc:145
msgctxt "RID_INTX_HELP"
msgid "Integral"
msgstr "Интеграл"
#. vQmDp
-#: starmath/inc/strings.hrc:147
+#: starmath/inc/strings.hrc:146
msgctxt "RID_INT_FROMX_HELP"
msgid "Integral Subscript Bottom"
msgstr "Долен индекс на интеграл"
#. y7z9u
-#: starmath/inc/strings.hrc:148
+#: starmath/inc/strings.hrc:147
msgctxt "RID_INT_TOX_HELP"
msgid "Integral Superscript Top"
msgstr "Горен индекс на интеграл"
#. 6k5sb
-#: starmath/inc/strings.hrc:149
+#: starmath/inc/strings.hrc:148
msgctxt "RID_INT_FROMTOX_HELP"
msgid "Integral Sup/Sub script"
msgstr "Индекси на интеграл"
#. p3RZE
-#: starmath/inc/strings.hrc:150
+#: starmath/inc/strings.hrc:149
msgctxt "RID_IINTX_HELP"
msgid "Double Integral"
msgstr "Двоен интеграл"
#. BGTdj
-#: starmath/inc/strings.hrc:151
+#: starmath/inc/strings.hrc:150
msgctxt "RID_IINT_FROMX_HELP"
msgid "Double Integral Subscript Bottom"
msgstr "Долен индекс на двоен интеграл"
#. sm97q
-#: starmath/inc/strings.hrc:152
+#: starmath/inc/strings.hrc:151
msgctxt "RID_IINT_TOX_HELP"
msgid "Double Integral Superscript Top"
msgstr "Горен индекс на двоен интеграл"
#. pfQHq
-#: starmath/inc/strings.hrc:153
+#: starmath/inc/strings.hrc:152
msgctxt "RID_IINT_FROMTOX_HELP"
msgid "Double Integral Sup/Sub script"
msgstr "Индекси на двоен интеграл"
#. rSSzV
-#: starmath/inc/strings.hrc:154
+#: starmath/inc/strings.hrc:153
msgctxt "RID_IIINTX_HELP"
msgid "Triple Integral"
msgstr "Троен интеграл"
#. 8kQA9
-#: starmath/inc/strings.hrc:155
+#: starmath/inc/strings.hrc:154
msgctxt "RID_IIINT_FROMX_HELP"
msgid "Triple Integral Subscript Bottom"
msgstr "Долен индекс на троен интеграл"
#. B9bYA
-#: starmath/inc/strings.hrc:156
+#: starmath/inc/strings.hrc:155
msgctxt "RID_IIINT_TOX_HELP"
msgid "Triple Integral Superscript Top"
msgstr "Горен индекс на троен интеграл"
#. tBhDK
-#: starmath/inc/strings.hrc:157
+#: starmath/inc/strings.hrc:156
msgctxt "RID_IIINT_FROMTOX_HELP"
msgid "Triple Integral Sup/Sub script"
msgstr "Индекси на троен интеграл"
#. FAhtN
-#: starmath/inc/strings.hrc:158
+#: starmath/inc/strings.hrc:157
msgctxt "RID_LINTX_HELP"
msgid "Curve Integral"
msgstr "Криволинеен интеграл"
#. QX8QP
-#: starmath/inc/strings.hrc:159
+#: starmath/inc/strings.hrc:158
msgctxt "RID_LINT_FROMX_HELP"
msgid "Curve Integral Subscript Bottom"
msgstr "Долен индекс на криволинеен интеграл"
#. x9KBD
-#: starmath/inc/strings.hrc:160
+#: starmath/inc/strings.hrc:159
msgctxt "RID_LINT_TOX_HELP"
msgid "Curve Integral Superscript Top"
msgstr "Горен индекс на криволинеен интеграл"
#. FRxLN
-#: starmath/inc/strings.hrc:161
+#: starmath/inc/strings.hrc:160
msgctxt "RID_LINT_FROMTOX_HELP"
msgid "Curve Integral Sup/Sub script"
msgstr "Индекси на криволинеен интеграл"
#. u6fSm
-#: starmath/inc/strings.hrc:162
+#: starmath/inc/strings.hrc:161
msgctxt "RID_LLINTX_HELP"
msgid "Double Curve Integral"
msgstr "Двоен криволинеен интеграл"
#. tGPd3
-#: starmath/inc/strings.hrc:163
+#: starmath/inc/strings.hrc:162
msgctxt "RID_LLINT_FROMX_HELP"
msgid "Double Curve Integral Subscript Bottom"
msgstr "Долен индекс на двоен криволинеен интеграл"
#. WbgY4
-#: starmath/inc/strings.hrc:164
+#: starmath/inc/strings.hrc:163
msgctxt "RID_LLINT_TOX_HELP"
msgid "Double Curve Integral Superscript Top"
msgstr "Горен индекс на двоен криволинеен интеграл"
#. Fb8Ag
-#: starmath/inc/strings.hrc:165
+#: starmath/inc/strings.hrc:164
msgctxt "RID_LLINT_FROMTOX_HELP"
msgid "Double Curve Integral Sup/Sub script"
msgstr "Индекси на двоен криволинеен интеграл"
#. SGAUu
-#: starmath/inc/strings.hrc:166
+#: starmath/inc/strings.hrc:165
msgctxt "RID_LLLINTX_HELP"
msgid "Triple Curve Integral"
msgstr "Троен криволинеен интеграл"
#. 8RRj4
-#: starmath/inc/strings.hrc:167
+#: starmath/inc/strings.hrc:166
msgctxt "RID_LLLINT_FROMX_HELP"
msgid "Triple Curve Integral Subscript Bottom"
msgstr "Долен индекс на троен криволинеен интеграл"
#. hDzUB
-#: starmath/inc/strings.hrc:168
+#: starmath/inc/strings.hrc:167
msgctxt "RID_LLLINT_TOX_HELP"
msgid "Triple Curve Integral Superscript Top"
msgstr "Горен индекс на троен криволинеен интеграл"
#. 53vdH
-#: starmath/inc/strings.hrc:169
+#: starmath/inc/strings.hrc:168
msgctxt "RID_LLLINT_FROMTOX_HELP"
msgid "Triple Curve Integral Sup/Sub script"
msgstr "Индекси на троен криволинеен интеграл"
#. L2GPS
-#: starmath/inc/strings.hrc:170
+#: starmath/inc/strings.hrc:169
msgctxt "RID_ACUTEX_HELP"
msgid "Acute Accent"
msgstr "Ударение наляво"
#. iNBv6
-#: starmath/inc/strings.hrc:171
+#: starmath/inc/strings.hrc:170
msgctxt "RID_BARX_HELP"
msgid "Line Above"
msgstr "Линия отгоре"
#. 4bj8T
-#: starmath/inc/strings.hrc:172
+#: starmath/inc/strings.hrc:171
msgctxt "RID_BREVEX_HELP"
msgid "Breve"
msgstr "Брева"
#. KCnAL
-#: starmath/inc/strings.hrc:173
+#: starmath/inc/strings.hrc:172
msgctxt "RID_CHECKX_HELP"
msgid "Reverse Circumflex"
msgstr "Обърнат циркумфлекс"
#. JGDsk
-#: starmath/inc/strings.hrc:174
+#: starmath/inc/strings.hrc:173
msgctxt "RID_CIRCLEX_HELP"
msgid "Circle"
msgstr "Кръгче"
#. NFE9t
-#: starmath/inc/strings.hrc:175
+#: starmath/inc/strings.hrc:174
msgctxt "RID_DOTX_HELP"
msgid "Dot"
msgstr "Точка"
#. 3nLRD
-#: starmath/inc/strings.hrc:176
+#: starmath/inc/strings.hrc:175
msgctxt "RID_DDOTX_HELP"
msgid "Double Dot"
msgstr "Две точки"
#. vyBoF
-#: starmath/inc/strings.hrc:177
+#: starmath/inc/strings.hrc:176
msgctxt "RID_DDDOTX_HELP"
msgid "Triple Dot"
msgstr "Три точки"
#. B6Bdu
-#: starmath/inc/strings.hrc:178
+#: starmath/inc/strings.hrc:177
msgctxt "RID_GRAVEX_HELP"
msgid "Grave Accent"
msgstr "Ударение надясно"
#. NsttC
-#: starmath/inc/strings.hrc:179
+#: starmath/inc/strings.hrc:178
msgctxt "RID_HATX_HELP"
msgid "Circumflex"
msgstr "Циркумфлекс"
#. uwDf4
-#: starmath/inc/strings.hrc:180
+#: starmath/inc/strings.hrc:179
msgctxt "RID_TILDEX_HELP"
msgid "Tilde"
msgstr "Тилда"
#. nJFs5
-#: starmath/inc/strings.hrc:181
+#: starmath/inc/strings.hrc:180
msgctxt "RID_VECX_HELP"
msgid "Vector Arrow"
msgstr "Стрелка за вектор"
#. ttFJH
-#: starmath/inc/strings.hrc:182
+#: starmath/inc/strings.hrc:181
msgctxt "RID_HARPOONX_HELP"
msgid "Harpoon"
msgstr "Харпун"
#. BLziR
-#: starmath/inc/strings.hrc:183
+#: starmath/inc/strings.hrc:182
msgctxt "RID_UNDERLINEX_HELP"
msgid "Line Below"
msgstr "Долна линия"
#. Ao3kR
-#: starmath/inc/strings.hrc:184
+#: starmath/inc/strings.hrc:183
msgctxt "RID_OVERLINEX_HELP"
msgid "Line Over"
msgstr "Горна линия"
#. CGexE
-#: starmath/inc/strings.hrc:185
+#: starmath/inc/strings.hrc:184
msgctxt "RID_OVERSTRIKEX_HELP"
msgid "Line Through"
msgstr "Зачертаване"
#. ocuzq
-#: starmath/inc/strings.hrc:186
+#: starmath/inc/strings.hrc:185
msgctxt "RID_PHANTOMX_HELP"
msgid "Transparent"
msgstr "Прозрачност"
#. CkgdF
-#: starmath/inc/strings.hrc:187
+#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
msgstr "Получер шрифт"
#. 9HXmb
-#: starmath/inc/strings.hrc:188
+#: starmath/inc/strings.hrc:187
msgctxt "RID_ITALX_HELP"
msgid "Italic Font"
msgstr "Курсивен шрифт"
#. wHZAL
-#: starmath/inc/strings.hrc:189
+#: starmath/inc/strings.hrc:188
msgctxt "RID_SIZEXY_HELP"
msgid "Resize"
msgstr "Преоразмеряване"
#. dFJdi
-#: starmath/inc/strings.hrc:190
+#: starmath/inc/strings.hrc:189
msgctxt "RID_FONTXY_HELP"
msgid "Change Font"
msgstr "Смяна на шрифт"
#. EGfMH
-#: starmath/inc/strings.hrc:191
+#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
msgstr "Черен цвят"
#. GrXZS
-#: starmath/inc/strings.hrc:192
+#: starmath/inc/strings.hrc:191
msgctxt "RID_COLORX_BLUE_HELP"
msgid "Color Blue"
msgstr "Син цвят"
#. DRFYB
-#: starmath/inc/strings.hrc:193
+#: starmath/inc/strings.hrc:192
msgctxt "RID_COLORX_GREEN_HELP"
msgid "Color Green"
msgstr "Зелен цвят"
#. MJhTE
-#: starmath/inc/strings.hrc:194
+#: starmath/inc/strings.hrc:193
msgctxt "RID_COLORX_RED_HELP"
msgid "Color Red"
msgstr "Червен цвят"
#. dDDvs
-#: starmath/inc/strings.hrc:195
+#: starmath/inc/strings.hrc:194
msgctxt "RID_COLORX_AQUA_HELP"
msgid "Color Aqua"
msgstr "Синьо-зелен цвят"
#. 6zGQ2
-#: starmath/inc/strings.hrc:196
+#: starmath/inc/strings.hrc:195
msgctxt "RID_COLORX_FUCHSIA_HELP"
msgid "Color Fuchsia"
msgstr "Цикламен цвят"
#. em3aA
-#: starmath/inc/strings.hrc:197
+#: starmath/inc/strings.hrc:196
msgctxt "RID_COLORX_GRAY_HELP"
msgid "Color Gray"
msgstr "Сив цвят"
#. 8Pn5t
-#: starmath/inc/strings.hrc:198
+#: starmath/inc/strings.hrc:197
msgctxt "RID_COLORX_LIME_HELP"
msgid "Color Lime"
msgstr "Цвят лайм"
#. xGjXA
-#: starmath/inc/strings.hrc:199
+#: starmath/inc/strings.hrc:198
msgctxt "RID_COLORX_MAROON_HELP"
msgid "Color Maroon"
msgstr "Кестеняв цвят"
#. Cmhuj
-#: starmath/inc/strings.hrc:200
+#: starmath/inc/strings.hrc:199
msgctxt "RID_COLORX_NAVY_HELP"
msgid "Color Navy"
msgstr "Тъмносин цвят"
#. XL3XB
-#: starmath/inc/strings.hrc:201
+#: starmath/inc/strings.hrc:200
msgctxt "RID_COLORX_OLIVE_HELP"
msgid "Color Olive"
msgstr "Маслинен цвят"
#. yZ9RF
-#: starmath/inc/strings.hrc:202
+#: starmath/inc/strings.hrc:201
msgctxt "RID_COLORX_PURPLE_HELP"
msgid "Color Purple"
msgstr "Пурпурен цвят"
#. 2zE5Z
-#: starmath/inc/strings.hrc:203
+#: starmath/inc/strings.hrc:202
msgctxt "RID_COLORX_SILVER_HELP"
msgid "Color Silver"
msgstr "Сребърен цвят"
#. vMBoD
-#: starmath/inc/strings.hrc:204
+#: starmath/inc/strings.hrc:203
msgctxt "RID_COLORX_TEAL_HELP"
msgid "Color Teal"
msgstr "Синьозелен цвят"
#. U7bEA
-#: starmath/inc/strings.hrc:205
+#: starmath/inc/strings.hrc:204
msgctxt "RID_COLORX_YELLOW_HELP"
msgid "Color Yellow"
msgstr "Жълт цвят"
#. 6mDX7
-#: starmath/inc/strings.hrc:206
+#: starmath/inc/strings.hrc:205
msgctxt "RID_COLORX_RGB_HELP"
msgid "Color RGB"
msgstr "Цвят RGB"
#. FHLCx
-#: starmath/inc/strings.hrc:207
+#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
msgstr "Цвят RGB"
#. UxFDW
-#: starmath/inc/strings.hrc:208
+#: starmath/inc/strings.hrc:207
msgctxt "RID_COLORX_HEX_HELP"
msgid "Color hexadecimal"
msgstr "Цвят, шестнадесетично"
#. MGdCv
-#: starmath/inc/strings.hrc:209
+#: starmath/inc/strings.hrc:208
msgctxt "RID_COLORX_CORAL_HELP"
msgid "Color Coral"
msgstr "Коралов цвят"
#. gPCCe
-#: starmath/inc/strings.hrc:210
+#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
msgstr "Кървавочервен цвят"
#. oDRbR
-#: starmath/inc/strings.hrc:211
+#: starmath/inc/strings.hrc:210
msgctxt "RID_COLORX_MIDNIGHT_HELP"
msgid "Color Midnight blue"
msgstr "Цвят полунощно синьо"
#. 4aCMu
-#: starmath/inc/strings.hrc:212
+#: starmath/inc/strings.hrc:211
msgctxt "RID_COLORX_VIOLET_HELP"
msgid "Color Violet"
msgstr "Виолетов цвят"
#. Qivdb
-#: starmath/inc/strings.hrc:213
+#: starmath/inc/strings.hrc:212
msgctxt "RID_COLORX_ORANGE_HELP"
msgid "Color Orange"
msgstr "Оранжев цвят"
#. CVygm
-#: starmath/inc/strings.hrc:214
+#: starmath/inc/strings.hrc:213
msgctxt "RID_COLORX_ORANGERED_HELP"
msgid "Color Orangered"
msgstr "Оранжево-червен цвят"
#. LbfRK
-#: starmath/inc/strings.hrc:215
+#: starmath/inc/strings.hrc:214
msgctxt "RID_COLORX_SEAGREEN_HELP"
msgid "Color Seagreen"
msgstr "Морско зелен цвят"
#. DKivY
-#: starmath/inc/strings.hrc:216
+#: starmath/inc/strings.hrc:215
msgctxt "RID_COLORX_INDIGO_HELP"
msgid "Color Indigo"
msgstr "Цвят индиго"
#. TZQzN
-#: starmath/inc/strings.hrc:217
+#: starmath/inc/strings.hrc:216
msgctxt "RID_COLORX_HOTPINK_HELP"
msgid "Color Hot pink"
msgstr "Ярко розов цвят"
#. GHgTB
-#: starmath/inc/strings.hrc:218
+#: starmath/inc/strings.hrc:217
msgctxt "RID_COLORX_LAVENDER_HELP"
msgid "Color Lavender"
msgstr "Цвят лавандула"
#. HQmw7
-#: starmath/inc/strings.hrc:219
+#: starmath/inc/strings.hrc:218
msgctxt "RID_COLORX_SNOW_HELP"
msgid "Color Snow"
msgstr "Снежнобял цвят"
#. A2GQ4
-#: starmath/inc/strings.hrc:220
+#: starmath/inc/strings.hrc:219
msgctxt "RID_LRGROUPX_HELP"
msgid "Group Brackets"
msgstr "Групиращи скоби"
#. X7CEt
-#: starmath/inc/strings.hrc:221
+#: starmath/inc/strings.hrc:220
msgctxt "RID_LRPARENTX_HELP"
msgid "Round Brackets"
msgstr "Кръгли скоби"
#. AYBJ3
-#: starmath/inc/strings.hrc:222
+#: starmath/inc/strings.hrc:221
msgctxt "RID_LRBRACKETX_HELP"
msgid "Square Brackets"
msgstr "Квадратни скоби"
#. 72tg7
-#: starmath/inc/strings.hrc:223
+#: starmath/inc/strings.hrc:222
msgctxt "RID_LRDBRACKETX_HELP"
msgid "Double Square Brackets"
msgstr "Двойни квадратни скоби"
#. 8q7SE
-#: starmath/inc/strings.hrc:224
+#: starmath/inc/strings.hrc:223
msgctxt "RID_LRBRACEX_HELP"
msgid "Braces"
msgstr "Фигурни скоби"
#. bR8zw
-#: starmath/inc/strings.hrc:225
+#: starmath/inc/strings.hrc:224
msgctxt "RID_LRANGLEX_HELP"
msgid "Angle Brackets"
msgstr "Счупени скоби"
#. BeDY5
-#: starmath/inc/strings.hrc:226
+#: starmath/inc/strings.hrc:225
msgctxt "RID_LRCEILX_HELP"
msgid "Upper Ceil"
msgstr "Горни скоби"
#. EgGfR
-#: starmath/inc/strings.hrc:227
+#: starmath/inc/strings.hrc:226
msgctxt "RID_LRFLOORX_HELP"
msgid "Floor"
msgstr "Долни скоби"
#. L4q5e
-#: starmath/inc/strings.hrc:228
+#: starmath/inc/strings.hrc:227
msgctxt "RID_LRLINEX_HELP"
msgid "Single Lines"
msgstr "Единични линии"
#. pxcsk
-#: starmath/inc/strings.hrc:229
+#: starmath/inc/strings.hrc:228
msgctxt "RID_LRDLINEX_HELP"
msgid "Double Lines"
msgstr "Двойни линии"
#. QpgTC
-#: starmath/inc/strings.hrc:230
+#: starmath/inc/strings.hrc:229
msgctxt "RID_LMRANGLEXY_HELP"
msgid "Operator Brackets"
msgstr "Операторни скоби"
#. 26fDL
-#: starmath/inc/strings.hrc:231
+#: starmath/inc/strings.hrc:230
msgctxt "RID_SLRPARENTX_HELP"
msgid "Round Brackets (Scalable)"
msgstr "Кръгли скоби (мащабируеми)"
#. hYSwY
-#: starmath/inc/strings.hrc:232
+#: starmath/inc/strings.hrc:231
msgctxt "RID_SLRBRACKETX_HELP"
msgid "Square Brackets (Scalable)"
msgstr "Квадратни скоби (мащабируеми)"
#. GYgVC
-#: starmath/inc/strings.hrc:233
+#: starmath/inc/strings.hrc:232
msgctxt "RID_SLRDBRACKETX_HELP"
msgid "Double Square Brackets (Scalable)"
msgstr "Двойни квадратни скоби (мащабируеми)"
#. yAB5Z
-#: starmath/inc/strings.hrc:234
+#: starmath/inc/strings.hrc:233
msgctxt "RID_SLRBRACEX_HELP"
msgid "Braces (Scalable)"
msgstr "Фигурни скоби (мащабируеми)"
#. gVyvk
-#: starmath/inc/strings.hrc:235
+#: starmath/inc/strings.hrc:234
msgctxt "RID_SLRANGLEX_HELP"
msgid "Angle Brackets (Scalable)"
msgstr "Счупени скоби (мащабируеми)"
#. TQgEE
-#: starmath/inc/strings.hrc:236
+#: starmath/inc/strings.hrc:235
msgctxt "RID_SLRCEILX_HELP"
msgid "Ceiling (Scalable)"
msgstr "Закръгляване нагоре (мащабируемо)"
#. JD7hz
-#: starmath/inc/strings.hrc:237
+#: starmath/inc/strings.hrc:236
msgctxt "RID_SLRFLOORX_HELP"
msgid "Floor (Scalable)"
msgstr "Закръгляване надолу (мащабируемо)"
#. zefYy
-#: starmath/inc/strings.hrc:238
+#: starmath/inc/strings.hrc:237
msgctxt "RID_SLRLINEX_HELP"
msgid "Single Lines (Scalable)"
msgstr "Единични линии (мащабируеми)"
#. xRAGP
-#: starmath/inc/strings.hrc:239
+#: starmath/inc/strings.hrc:238
msgctxt "RID_SLRDLINEX_HELP"
msgid "Double Lines (Scalable)"
msgstr "Двойни линии (мащабируеми)"
#. EzvMA
-#: starmath/inc/strings.hrc:240
+#: starmath/inc/strings.hrc:239
msgctxt "RID_SLMRANGLEXY_HELP"
msgid "Operator Brackets (Scalable)"
msgstr "Операторни скоби (мащабируеми)"
#. ZurRw
-#: starmath/inc/strings.hrc:241
+#: starmath/inc/strings.hrc:240
msgctxt "RID_XEVALUATEDATY_HELP"
msgid "Evaluated At"
msgstr "Изчислено за"
#. aHELy
-#: starmath/inc/strings.hrc:242
+#: starmath/inc/strings.hrc:241
msgctxt "RID_XOVERBRACEY_HELP"
msgid "Braces Top (Scalable)"
msgstr "Фигурна скоба отгоре (мащабируема)"
#. LUhCa
-#: starmath/inc/strings.hrc:243
+#: starmath/inc/strings.hrc:242
msgctxt "RID_XUNDERBRACEY_HELP"
msgid "Braces Bottom (Scalable)"
msgstr "Фигурна скоба отдолу (мащабируема)"
#. Ecw64
-#: starmath/inc/strings.hrc:244
+#: starmath/inc/strings.hrc:243
msgctxt "RID_EVALUATEX_HELP"
msgid "Evaluate"
msgstr "Изчисляване"
#. vfpuY
-#: starmath/inc/strings.hrc:245
+#: starmath/inc/strings.hrc:244
msgctxt "RID_EVALUATE_FROMX_HELP"
msgid "Evaluate Subscript Bottom"
msgstr "Изчисляване, долен индекс отдолу"
#. Q6G2q
-#: starmath/inc/strings.hrc:246
+#: starmath/inc/strings.hrc:245
msgctxt "RID_EVALUATE_TOX_HELP"
msgid "Evaluate Superscript Top"
msgstr "Изчисляване, горен индекс отгоре"
#. 6NGAj
-#: starmath/inc/strings.hrc:247
+#: starmath/inc/strings.hrc:246
msgctxt "RID_EVALUATE_FROMTOX_HELP"
msgid "Evaluate Sup/Sub script"
msgstr "Изчисляване, горен/долен индекс"
#. wePDA
-#: starmath/inc/strings.hrc:248
+#: starmath/inc/strings.hrc:247
msgctxt "RID_RSUBX_HELP"
msgid "Subscript Right"
msgstr "Долен индекс отдясно"
#. tAk6B
-#: starmath/inc/strings.hrc:249
+#: starmath/inc/strings.hrc:248
msgctxt "RID_RSUPX_HELP"
msgid "Power"
msgstr "Степен"
#. fkDc3
-#: starmath/inc/strings.hrc:250
+#: starmath/inc/strings.hrc:249
msgctxt "RID_LSUBX_HELP"
msgid "Subscript Left"
msgstr "Долен индекс отляво"
#. diRUE
-#: starmath/inc/strings.hrc:251
+#: starmath/inc/strings.hrc:250
msgctxt "RID_LSUPX_HELP"
msgid "Superscript Left"
msgstr "Горен индекс отляво"
#. cA8up
-#: starmath/inc/strings.hrc:252
+#: starmath/inc/strings.hrc:251
msgctxt "RID_CSUBX_HELP"
msgid "Subscript Bottom"
msgstr "Долен индекс отдолу"
#. BmFm5
-#: starmath/inc/strings.hrc:253
+#: starmath/inc/strings.hrc:252
msgctxt "RID_CSUPX_HELP"
msgid "Superscript Top"
msgstr "Горен индекс отгоре"
#. WTF6i
-#: starmath/inc/strings.hrc:254
+#: starmath/inc/strings.hrc:253
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
msgstr "Малка междина"
#. 3GBzt
-#: starmath/inc/strings.hrc:255
+#: starmath/inc/strings.hrc:254
msgctxt "RID_BLANK_HELP"
msgid "Blank"
msgstr "Празнина"
#. Tv29B
-#: starmath/inc/strings.hrc:256
+#: starmath/inc/strings.hrc:255
msgctxt "RID_NEWLINE_HELP"
msgid "New Line"
msgstr "Нов ред"
#. tnBvX
-#: starmath/inc/strings.hrc:257
+#: starmath/inc/strings.hrc:256
msgctxt "RID_BINOMXY_HELP"
msgid "Vertical Stack (2 Elements)"
msgstr "Вертикално разполагане (2 елемента)"
#. uAfzF
-#: starmath/inc/strings.hrc:258
+#: starmath/inc/strings.hrc:257
msgctxt "RID_STACK_HELP"
msgid "Vertical Stack"
msgstr "Вертикално разполагане"
#. GZoUk
-#: starmath/inc/strings.hrc:259
+#: starmath/inc/strings.hrc:258
msgctxt "RID_MATRIX_HELP"
msgid "Matrix Stack"
msgstr "Разполагане в матрица"
#. qGAFn
-#: starmath/inc/strings.hrc:260
+#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNLX_HELP"
msgid "Align Left"
msgstr "Подравняване отляво"
#. BpAbA
-#: starmath/inc/strings.hrc:261
+#: starmath/inc/strings.hrc:260
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
msgstr "Центрирано подравняване"
#. RTRN9
-#: starmath/inc/strings.hrc:262
+#: starmath/inc/strings.hrc:261
msgctxt "RID_ALIGNRX_HELP"
msgid "Align Right"
msgstr "Подравняване отдясно"
#. rBXQx
-#: starmath/inc/strings.hrc:263
+#: starmath/inc/strings.hrc:262
msgctxt "RID_ALEPH_HELP"
msgid "Aleph"
msgstr "Алеф"
#. ixk6B
-#: starmath/inc/strings.hrc:264
+#: starmath/inc/strings.hrc:263
msgctxt "RID_EMPTYSET_HELP"
msgid "Empty Set"
msgstr "Празно множество"
#. fbVuw
-#: starmath/inc/strings.hrc:265
+#: starmath/inc/strings.hrc:264
msgctxt "RID_RE_HELP"
msgid "Real Part"
msgstr "Реална част"
#. DjahE
-#: starmath/inc/strings.hrc:266
+#: starmath/inc/strings.hrc:265
msgctxt "RID_IM_HELP"
msgid "Imaginary Part"
msgstr "Имагинерна част"
#. LwDCX
-#: starmath/inc/strings.hrc:267
+#: starmath/inc/strings.hrc:266
msgctxt "RID_INFINITY_HELP"
msgid "Infinity"
msgstr "Безкрайност"
#. 5TTyg
-#: starmath/inc/strings.hrc:268
+#: starmath/inc/strings.hrc:267
msgctxt "RID_PARTIAL_HELP"
msgid "Partial"
msgstr "Частна производна"
#. gkq7i
-#: starmath/inc/strings.hrc:269
+#: starmath/inc/strings.hrc:268
msgctxt "RID_NABLA_HELP"
msgid "Nabla"
msgstr "Набла"
#. DzGXD
-#: starmath/inc/strings.hrc:270
+#: starmath/inc/strings.hrc:269
msgctxt "RID_LAPLACE_HELP"
msgid "Laplace transform"
msgstr "Трансформация на Лаплас"
#. ajf9X
-#: starmath/inc/strings.hrc:271
+#: starmath/inc/strings.hrc:270
msgctxt "RID_FOURIER_HELP"
msgid "Fourier transform"
msgstr "Трансформация на Фурие"
#. BC9vn
-#: starmath/inc/strings.hrc:272
+#: starmath/inc/strings.hrc:271
msgctxt "RID_BACKEPSILON_HELP"
msgid "Backwards epsilon"
-msgstr ""
+msgstr "Обърнат епсилон"
#. aQpTD
-#: starmath/inc/strings.hrc:273
+#: starmath/inc/strings.hrc:272
msgctxt "RID_WP_HELP"
msgid "Weierstrass p"
msgstr "Символ на Вайерщрас"
#. f9sfv
-#: starmath/inc/strings.hrc:274
+#: starmath/inc/strings.hrc:273
msgctxt "RID_DOTSAXIS_HELP"
msgid "Dots In Middle"
msgstr "Точки в средата"
#. C3nbh
-#: starmath/inc/strings.hrc:275
+#: starmath/inc/strings.hrc:274
msgctxt "RID_DOTSUP_HELP"
msgid "Dots To Top"
msgstr "Точки до горе"
#. tzBF5
-#: starmath/inc/strings.hrc:276
+#: starmath/inc/strings.hrc:275
msgctxt "RID_DOTSDOWN_HELP"
msgid "Dots To Bottom"
msgstr "Точки до долу"
#. XDsJg
-#: starmath/inc/strings.hrc:277
+#: starmath/inc/strings.hrc:276
msgctxt "RID_DOTSLOW_HELP"
msgid "Dots At Bottom"
msgstr "Точки отдолу"
#. TtFD4
-#: starmath/inc/strings.hrc:278
+#: starmath/inc/strings.hrc:277
msgctxt "RID_DOTSVERT_HELP"
msgid "Dots Vertically"
msgstr "Вертикални точки"
#. YsuWX
-#: starmath/inc/strings.hrc:279
+#: starmath/inc/strings.hrc:278
msgctxt "RID_XCIRCY_HELP"
msgid "Concatenate"
msgstr "Конкатенация"
#. JAGx5
-#: starmath/inc/strings.hrc:280
+#: starmath/inc/strings.hrc:279
msgctxt "RID_XWIDESLASHY_HELP"
msgid "Division (wideslash)"
msgstr "Деление (широка наклонена черта)"
#. YeJSK
-#: starmath/inc/strings.hrc:281
+#: starmath/inc/strings.hrc:280
msgctxt "RID_XWIDEBSLASHY_HELP"
msgid "Division (counter wideslash)"
msgstr "Деление (обратна широка наклонена черта)"
#. wfbfE
-#: starmath/inc/strings.hrc:282
+#: starmath/inc/strings.hrc:281
msgctxt "RID_XDIVIDESY_HELP"
msgid "Divides"
msgstr "Дели"
#. 3BFDd
-#: starmath/inc/strings.hrc:283
+#: starmath/inc/strings.hrc:282
msgctxt "RID_XNDIVIDESY_HELP"
msgid "Does Not Divide"
msgstr "Не дели"
#. CCvBP
-#: starmath/inc/strings.hrc:284
+#: starmath/inc/strings.hrc:283
msgctxt "RID_DLARROW_HELP"
msgid "Double Arrow Left"
msgstr "Двойна стрелка наляво"
#. UJYMA
-#: starmath/inc/strings.hrc:285
+#: starmath/inc/strings.hrc:284
msgctxt "RID_DLRARROW_HELP"
msgid "Double Arrow Left And Right"
msgstr "Двойна стрелка наляво и надясно"
#. xEGRt
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:285
msgctxt "RID_DRARROW_HELP"
msgid "Double Arrow Right"
msgstr "Двойна стрелка надясно"
#. 9fdkb
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:286
msgctxt "RID_SETN_HELP"
msgid "Natural Numbers Set"
msgstr "Множество на естествените числа"
#. rCVLA
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:287
msgctxt "RID_SETZ_HELP"
msgid "Integers Set"
msgstr "Множество на целите числа"
#. bPiC2
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:288
msgctxt "RID_SETQ_HELP"
msgid "Set of Rational Numbers"
msgstr "Множество на рационалните числа"
#. ftype
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:289
msgctxt "RID_SETR_HELP"
msgid "Real Numbers Set"
msgstr "Множество на реалните числа"
#. i4knq
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:290
msgctxt "RID_SETC_HELP"
msgid "Complex Numbers Set"
msgstr "Множество на комплексните числа"
#. EsxDq
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:291
msgctxt "RID_WIDEHATX_HELP"
msgid "Large Circumflex"
msgstr "Голям циркумфлекс"
#. Ho4gN
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:292
msgctxt "RID_WIDETILDEX_HELP"
msgid "Large Tilde"
msgstr "Голяма тилда"
#. DJGj6
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:293
msgctxt "RID_WIDEVECX_HELP"
msgid "Large Vector Arrow"
msgstr "Голяма стрелка за вектор"
#. Ew4TJ
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:294
msgctxt "RID_WIDEHARPOONX_HELP"
msgid "Large Harpoon"
msgstr "Голям харпун"
#. 5Ce5n
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:295
msgctxt "RID_HBAR_HELP"
msgid "h Bar"
msgstr "h черта"
#. PAJLg
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:296
msgctxt "RID_LAMBDABAR_HELP"
msgid "Lambda Bar"
msgstr "Ламбда черта"
#. obBGe
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:297
msgctxt "RID_LEFTARROW_HELP"
msgid "Left Arrow"
msgstr "Стрелка наляво"
#. krnEB
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:298
msgctxt "RID_RIGHTARROW_HELP"
msgid "Right Arrow"
msgstr "Стрелка надясно"
#. gADL7
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:299
msgctxt "RID_UPARROW_HELP"
msgid "Up Arrow"
msgstr "Стрелка нагоре"
#. oTVat
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:300
msgctxt "RID_DOWNARROW_HELP"
msgid "Down Arrow"
msgstr "Стрелка надолу"
#. xVkoU
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:301
msgctxt "RID_NOSPACE_HELP"
msgid "No space"
msgstr "Без интервал"
#. gSrMz
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:302
msgctxt "RID_XPRECEDESY_HELP"
msgid "Precedes"
msgstr "Предхожда"
#. yiATA
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:303
msgctxt "RID_XPRECEDESEQUALY_HELP"
msgid "Precedes or equal to"
msgstr "Предхожда или е равно на"
#. ZY4XE
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:304
msgctxt "RID_XPRECEDESEQUIVY_HELP"
msgid "Precedes or equivalent to"
msgstr "Предхожда или е еквивалентно на"
#. Br8e9
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:305
msgctxt "RID_XSUCCEEDSY_HELP"
msgid "Succeeds"
msgstr "Следва"
#. VraAq
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:306
msgctxt "RID_XSUCCEEDSEQUALY_HELP"
msgid "Succeeds or equal to"
msgstr "Следва или е равно на"
#. bRiLq
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:307
msgctxt "RID_XSUCCEEDSEQUIVY_HELP"
msgid "Succeeds or equivalent to"
msgstr "Следва или е еквивалентно на"
#. Cy5fB
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:308
msgctxt "RID_XNOTPRECEDESY_HELP"
msgid "Not precedes"
msgstr "Не предхожда"
#. ihTrN
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:309
msgctxt "RID_XNOTSUCCEEDSY_HELP"
msgid "Not succeeds"
msgstr "Не следва"
#. eu7va
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:310
msgctxt "RID_CATEGORY_UNARY_BINARY_OPERATORS"
msgid "Unary/Binary Operators"
msgstr "Едноместни/двуместни операции"
#. qChkW
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:311
msgctxt "RID_CATEGORY_RELATIONS"
msgid "Relations"
msgstr "Релации"
#. UCQER
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:312
msgctxt "RID_CATEGORY_SET_OPERATIONS"
msgid "Set Operations"
msgstr "Операции с множества"
#. H7MZE
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:313
msgctxt "RID_CATEGORY_FUNCTIONS"
msgid "Functions"
msgstr "Функции"
#. zAeXx
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:314
msgctxt "RID_CATEGORY_OPERATORS"
msgid "Operators"
msgstr "Оператори"
#. GGitA
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:315
msgctxt "RID_CATEGORY_ATTRIBUTES"
msgid "Attributes"
msgstr "Атрибути"
#. B29Ad
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_BRACKETS"
msgid "Brackets"
msgstr "Скоби"
#. UAdpn
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:317
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
msgstr "Формати"
#. Yif8p
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:318
msgctxt "RID_CATEGORY_OTHERS"
msgid "Others"
msgstr "Други"
#. 3fzNy
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:319
msgctxt "RID_CATEGORY_EXAMPLES"
msgid "Examples"
msgstr "Примери"
#. qPycE
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
msgid "Circumference"
msgstr "Обиколка"
#. FhGWC
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
msgstr "Еквивалентност маса – енергия"
#. nwdFs
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
msgstr "Теорема на Питагор"
#. b5eq8
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
msgstr "Ред на Тейлър"
#. MuqjR
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
msgstr "Разпределение на Гаус"
#. sWaki
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
msgstr "Уравнение на Ойлер-Лагранж"
#. LnNNA
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
msgstr "Фундаментална теорема на анализа"
#. jF2GD
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:328
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
msgstr "Уравнение на хаоса"
#. afEQ8
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:329
msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP"
msgid "Euler's identity"
msgstr "Равенство на Ойлер"
#. m3ukF
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:330
msgctxt "RID_EXAMPLE_2NEWTON"
msgid "Newton's second law"
msgstr "Втори закон на Нютон"
#. ZmaUU
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:331
msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP"
msgid "General relativity"
msgstr "Обща теория на относителността"
#. ADBy9
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:332
msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP"
msgid "Special relativity"
msgstr "Специална теория на относителността"
#. u47dF
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:334
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандартен"
#. aZbaD
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсив"
#. 7t5Hn
-#: starmath/inc/strings.hrc:337
+#: starmath/inc/strings.hrc:336
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Получер"
#. urCxA
-#: starmath/inc/strings.hrc:338
+#: starmath/inc/strings.hrc:337
msgctxt "STR_BLACK"
msgid "black"
msgstr "черно"
#. n4qFR
-#: starmath/inc/strings.hrc:339
+#: starmath/inc/strings.hrc:338
msgctxt "STR_BLUE"
msgid "blue"
msgstr "синьо"
#. ZS9Ma
-#: starmath/inc/strings.hrc:340
+#: starmath/inc/strings.hrc:339
msgctxt "STR_GREEN"
msgid "green"
msgstr "зелено"
#. SAB9J
-#: starmath/inc/strings.hrc:341
+#: starmath/inc/strings.hrc:340
msgctxt "STR_RED"
msgid "red"
msgstr "червено"
#. b5qhM
-#: starmath/inc/strings.hrc:342
+#: starmath/inc/strings.hrc:341
msgctxt "STR_AQUA"
msgid "aqua"
msgstr "аква"
#. GLy7q
-#: starmath/inc/strings.hrc:343
+#: starmath/inc/strings.hrc:342
msgctxt "STR_FUCHSIA"
msgid "fuchsia"
msgstr "цикламено"
#. fZKES
-#: starmath/inc/strings.hrc:344
+#: starmath/inc/strings.hrc:343
msgctxt "STR_GRAY"
msgid "gray"
msgstr "сиво"
#. BaoAG
-#: starmath/inc/strings.hrc:345
+#: starmath/inc/strings.hrc:344
msgctxt "STR_LIME"
msgid "lime"
msgstr "лайм"
#. MERnK
-#: starmath/inc/strings.hrc:346
+#: starmath/inc/strings.hrc:345
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "кестеняво"
#. CEYFL
-#: starmath/inc/strings.hrc:347
+#: starmath/inc/strings.hrc:346
msgctxt "STR_NAVY"
msgid "navy"
msgstr "тъмносино"
#. DDWH3
-#: starmath/inc/strings.hrc:348
+#: starmath/inc/strings.hrc:347
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "маслиново"
#. dZoUG
-#: starmath/inc/strings.hrc:349
+#: starmath/inc/strings.hrc:348
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "пурпурно"
#. 7JFDe
-#: starmath/inc/strings.hrc:350
+#: starmath/inc/strings.hrc:349
msgctxt "STR_SILVER"
msgid "silver"
msgstr "сребърно"
#. enQJY
-#: starmath/inc/strings.hrc:351
+#: starmath/inc/strings.hrc:350
msgctxt "STR_TEAL"
msgid "teal"
msgstr "синьозелено"
#. QkBT2
-#: starmath/inc/strings.hrc:352
+#: starmath/inc/strings.hrc:351
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "жълто"
#. AZyLo
-#: starmath/inc/strings.hrc:353
+#: starmath/inc/strings.hrc:352
msgctxt "STR_CORAL"
msgid "coral"
msgstr "коралово"
#. RZSh6
-#: starmath/inc/strings.hrc:354
+#: starmath/inc/strings.hrc:353
msgctxt "STR_CRIMSON"
msgid "crimson"
msgstr "кървавочервено"
#. QGibF
-#: starmath/inc/strings.hrc:355
+#: starmath/inc/strings.hrc:354
msgctxt "STR_MIDNIGHT"
msgid "midnight"
msgstr "полунощно синьо"
#. NKAkW
-#: starmath/inc/strings.hrc:356
+#: starmath/inc/strings.hrc:355
msgctxt "STR_VIOLET"
msgid "violet"
msgstr "виолетово"
#. sF9zc
-#: starmath/inc/strings.hrc:357
+#: starmath/inc/strings.hrc:356
msgctxt "STR_ORANGE"
msgid "orange"
msgstr "оранжево"
#. CXMyK
-#: starmath/inc/strings.hrc:358
+#: starmath/inc/strings.hrc:357
msgctxt "STR_ORANGERED"
msgid "orangered"
msgstr "оранжево-червено"
#. Ak3yd
-#: starmath/inc/strings.hrc:359
+#: starmath/inc/strings.hrc:358
msgctxt "STR_LAVENDER"
msgid "lavender"
msgstr "лавандула"
#. DLUaV
-#: starmath/inc/strings.hrc:360
+#: starmath/inc/strings.hrc:359
msgctxt "STR_SNOW"
msgid "snow"
msgstr "снежнобяло"
#. QDTEU
-#: starmath/inc/strings.hrc:361
+#: starmath/inc/strings.hrc:360
msgctxt "STR_SEAGREEN"
msgid "seagreen"
msgstr "морско зелено"
#. PNveS
-#: starmath/inc/strings.hrc:362
+#: starmath/inc/strings.hrc:361
msgctxt "STR_INDIGO"
msgid "indigo"
msgstr "индиго"
#. r5S8P
-#: starmath/inc/strings.hrc:363
+#: starmath/inc/strings.hrc:362
msgctxt "STR_HOTPINK"
msgid "hotpink"
msgstr "ярко розово"
#. NNmRT
-#: starmath/inc/strings.hrc:364
+#: starmath/inc/strings.hrc:363
msgctxt "STR_RGB"
msgid "rgb"
msgstr "rgb"
#. nsmGb
-#: starmath/inc/strings.hrc:365
+#: starmath/inc/strings.hrc:364
msgctxt "STR_RGBA"
msgid "rgba"
msgstr "rgba"
#. BRYCu
-#: starmath/inc/strings.hrc:366
+#: starmath/inc/strings.hrc:365
msgctxt "STR_HEX"
msgid "hex"
msgstr "шестнадесетично"
#. CCpNs
-#: starmath/inc/strings.hrc:367
+#: starmath/inc/strings.hrc:366
msgctxt "STR_HIDE"
msgid "hide"
msgstr "скриване"
#. FtCHm
-#: starmath/inc/strings.hrc:368
+#: starmath/inc/strings.hrc:367
msgctxt "STR_SIZE"
msgid "size"
msgstr "размер"
#. qFRcG
-#: starmath/inc/strings.hrc:369
+#: starmath/inc/strings.hrc:368
msgctxt "STR_FONT"
msgid "font"
msgstr "шрифт"
#. TEnpE
-#: starmath/inc/strings.hrc:370
+#: starmath/inc/strings.hrc:369
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "отляво"
#. dBczP
-#: starmath/inc/strings.hrc:371
+#: starmath/inc/strings.hrc:370
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "центриране"
#. U9mzR
-#: starmath/inc/strings.hrc:372
+#: starmath/inc/strings.hrc:371
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "отдясно"
#. C3cxx
-#: starmath/inc/strings.hrc:373
+#: starmath/inc/strings.hrc:372
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Команди"
#. Sgayv
-#: starmath/inc/strings.hrc:374
+#: starmath/inc/strings.hrc:373
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
#. veG66
-#: starmath/inc/strings.hrc:375
+#: starmath/inc/strings.hrc:374
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Запазва се документ..."
#. M6rLx
-#: starmath/inc/strings.hrc:376
+#: starmath/inc/strings.hrc:375
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION – формула"
#. AFFdK
-#: starmath/inc/strings.hrc:377
+#: starmath/inc/strings.hrc:376
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ГРЕШКА: "
#. wu5Uu
-#: starmath/inc/strings.hrc:378
+#: starmath/inc/strings.hrc:377
msgctxt "RID_ERR_NONE"
msgid "no error"
-msgstr ""
+msgstr "Няма грешка"
#. p2FHe
-#: starmath/inc/strings.hrc:379
+#: starmath/inc/strings.hrc:378
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Неочакван знак"
#. CgyFQ
-#: starmath/inc/strings.hrc:380
+#: starmath/inc/strings.hrc:379
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Неочакван символ"
#. RGAFy
-#: starmath/inc/strings.hrc:381
+#: starmath/inc/strings.hrc:380
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Очаква се \"{\""
#. Wyx9q
-#: starmath/inc/strings.hrc:382
+#: starmath/inc/strings.hrc:381
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Очаква се \"}\""
#. B7B7y
-#: starmath/inc/strings.hrc:383
+#: starmath/inc/strings.hrc:382
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Очаква се \"(\""
#. kKoFQ
-#: starmath/inc/strings.hrc:384
+#: starmath/inc/strings.hrc:383
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Очаква се \")\""
#. aDG4Y
-#: starmath/inc/strings.hrc:385
+#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Несъответстващи си ляв и десен символ"
#. FYFE5
-#: starmath/inc/strings.hrc:386
+#: starmath/inc/strings.hrc:385
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Очаква се „fixed“, „sans“ или „serif“"
#. jGZdh
-#: starmath/inc/strings.hrc:387
+#: starmath/inc/strings.hrc:386
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Неочакван символ след „size“"
#. 6DqgC
-#: starmath/inc/strings.hrc:388
+#: starmath/inc/strings.hrc:387
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Не е разрешено двойно подравняване"
#. aoufx
-#: starmath/inc/strings.hrc:389
+#: starmath/inc/strings.hrc:388
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Не са разрешени двойни долни или горни индекси"
#. U6U5Z
-#: starmath/inc/strings.hrc:390
+#: starmath/inc/strings.hrc:389
msgctxt "RID_ERR_NUMBEREXPECTED"
msgid "Expected number"
msgstr "Очаква се число"
#. ZWBDD
-#: starmath/inc/strings.hrc:391
+#: starmath/inc/strings.hrc:390
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Очаква се \"#\""
#. HLZNK
-#: starmath/inc/strings.hrc:392
+#: starmath/inc/strings.hrc:391
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Очаква се цвят"
#. GboH7
-#: starmath/inc/strings.hrc:393
+#: starmath/inc/strings.hrc:392
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Очаква се \"RIGHT\""
#. A8QNw
-#: starmath/inc/strings.hrc:394
+#: starmath/inc/strings.hrc:393
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. mLvHF
-#: starmath/inc/strings.hrc:395
+#: starmath/inc/strings.hrc:394
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Съдържание"
#. Dwn4W
-#: starmath/inc/strings.hrc:396
+#: starmath/inc/strings.hrc:395
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Заглавие"
#. LSV24
-#: starmath/inc/strings.hrc:397
+#: starmath/inc/strings.hrc:396
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Текст на формула"
#. XnVAD
-#: starmath/inc/strings.hrc:398
+#: starmath/inc/strings.hrc:397
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Кантове"
#. TfBWF
-#: starmath/inc/strings.hrc:399
+#: starmath/inc/strings.hrc:398
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Размер"
#. egvJg
-#: starmath/inc/strings.hrc:400
+#: starmath/inc/strings.hrc:399
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Оригинален размер"
#. ZSF52
-#: starmath/inc/strings.hrc:401
+#: starmath/inc/strings.hrc:400
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Побиране в страницата"
#. ZVcSf
-#: starmath/inc/strings.hrc:402
+#: starmath/inc/strings.hrc:401
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Мащабиране"
diff --git a/source/bg/svl/messages.po b/source/bg/svl/messages.po
index 837b474691d..1e0cd1d69f7 100644
--- a/source/bg/svl/messages.po
+++ b/source/bg/svl/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2020-02-24 11:23+0000\n"
+"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/svlmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svlmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1519741631.000000\n"
#. PDMJD
@@ -32,64 +32,64 @@ msgstr "Преглед..."
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/svtools/messages.po b/source/bg/svtools/messages.po
index 060859066b4..f0696c851dd 100644
--- a/source/bg/svtools/messages.po
+++ b/source/bg/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-02-03 18:01+0000\n"
+"PO-Revision-Date: 2021-02-28 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1559419310.000000\n"
#. fLdeV
@@ -1736,67 +1736,67 @@ msgstr "Списък с игнорирани думи"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. tBGDJ
#: svtools/inc/borderline.hrc:17
@@ -4978,19 +4978,19 @@ msgstr "Английски (Кения)"
#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
-msgstr ""
+msgstr "Пали (тайска писменост)"
#. DGeeF
#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
-msgstr ""
+msgstr "Кабекар"
#. xHCtG
#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
-msgstr ""
+msgstr "Брибри"
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 25516a72fce..7c325d5a1a9 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/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: 2021-02-22 17:17+0100\n"
-"PO-Revision-Date: 2020-12-11 20:36+0000\n"
+"POT-Creation-Date: 2021-03-19 17:31+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+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-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562357387.000000\n"
#. 3GkZj
@@ -814,5736 +814,5742 @@ msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Обръщане на реда на %1"
-#. cALbH
+#. rpJs7
#: include/svx/strings.hrc:158
+msgctxt "STR_SortShapes"
+msgid "Sort shapes"
+msgstr "Сортиране на фигури"
+
+#. cALbH
+#: include/svx/strings.hrc:159
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Местене на %1"
#. dskGp
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Оразмеряване на %1"
#. 5QxCS
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Въртене на %1"
#. BD8aF
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Хоризонтално огледално обръщане на %1"
#. g7Qgy
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "Вертикално огледално обръщане на %1"
#. 8MR5T
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Диагонално огледално обръщане на %1"
#. zDbgU
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "Произволно огледално обръщане на %1"
#. AFUeA
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "Деформиране на %1 (наклон)"
#. QRoy3
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "Подреждане на %1 в кръг"
#. wvGVC
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "Преобразуване на %1 в окръжност"
#. iUJAq
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "Деформиране на %1"
#. GRiqx
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Отмяна на %1"
#. sE8PU
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Промяна на параметрите на Безие за %1"
#. CzVVY
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Промяна на параметрите на Безие за %1"
#. 5KcDa
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "Задаване направление на изход за %1"
#. Gbbmq
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "Задаване на относителен атрибут за %1"
#. Auc4o
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "Задаване на отправна точка за %1"
#. M5Jac
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Групиране на %1"
#. wEEok
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "Разгрупиране на %1"
#. XochA
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Прилагане на атрибути върху %1"
#. kzth3
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Прилагане на стилове върху %1"
#. PDT8V
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Премахване стила от %1"
#. 5DwCY
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "Преобразуване на %1 в многоъгълник"
#. TPv7Q
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "Преобразуване на %1 в многоъгълници"
#. ompqC
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "Преобразуване на %1 в крива"
#. gax8J
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "Преобразуване на %1 в криви"
#. s96Mt
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "Преобразуване на %1 в контур"
#. LAyEj
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "Преобразуване на %1 в контури"
#. jzxvB
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Подравняване на %1"
#. jocJd
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "Подравняване на %1 отгоре"
#. WFGbz
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "Подравняване на %1 отдолу"
#. SyXzE
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "Хоризонтално центриране на %1"
#. TgGUN
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "Подравняване на %1 отляво"
#. s3Erz
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "Подравняване на %1 отдясно"
#. apfuW
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "Вертикално центриране на %1"
#. ttEmT
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "Центриране на %1"
#. xkGug
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "Трансформиране на %1"
#. smiFA
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Комбиниране на %1"
#. PypoU
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Обединяване на %1"
#. 2KfaD
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Изваждане на %1"
#. gKFow
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "Сечение на %1"
#. M8onz
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Разпределяне на избраните обекти"
#. CnGYu
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "Изравняване на ширината %1"
#. zBTZe
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "Изравняване на височината %1"
#. JWmM2
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Комбиниране на %1"
#. k5kFN
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Разделяне на %1"
#. weAmr
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Разделяне на %1"
#. Yofeq
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Разделяне на %1"
#. hWuuR
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Вмъкване на обект(и)"
#. EaVu8
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Вмъкване на точка в %1"
#. AGGij
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert glue point to %1"
msgstr "Вмъкване на точка за съединяване в %1"
#. 6JqED
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "Преместване на отправната точка"
#. o8CAF
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Геометрична промяна на %1"
#. ghkib
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Местене на %1"
#. BCrkD
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Оразмеряване на %1"
#. xonh6
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Въртене на %1"
#. kBYzN
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Хоризонтално огледално обръщане на %1"
#. CBBXE
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "Вертикално огледално обръщане на %1"
#. uHCGD
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Диагонално огледално обръщане на %1"
#. vRwXA
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "Произволно огледално обръщане на %1"
#. 9xhJw
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Интерактивно преливане за %1"
#. Fst87
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Интерактивна прозрачност за %1"
#. jgbKK
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "Деформиране на %1 (наклон)"
#. Eo8H6
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "Подреждане на %1 в кръг"
#. stAcK
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "Преобразуване на %1 в окръжност"
#. VbA6t
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "Деформиране на %1"
#. YjghP
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Подрязване на %1"
#. ViifK
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Промяна на радиуса с %1"
#. usEq4
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Промяна на %1"
#. X4GFU
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Оразмеряване на %1"
#. qF4Px
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Местене на %1"
#. fKuKa
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "Местене на крайната точка на %1"
#. ewcHx
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "Регулиране на ъгъла с %1"
#. L8rCz
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Промяна на %1"
#. UxCCc
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "Редакция: Абзац %1, Ред %2, Колона %3"
#. 23tL7
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "Избор: %1"
#. yQkFZ
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Точка от %1"
#. RGnTk
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 точки от %1"
#. u9oDR
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Glue point from %1"
msgstr "Точка за съединяване от %1"
#. BCTCL
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 glue points from %1"
msgstr "%2 точки за съединяване от %1"
#. CDqRQ
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Маркиране на обекти"
#. SLrPJ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "Маркиране на допълнителни обекти"
#. hczKZ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Маркиране на точки"
#. 778bF
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "Маркиране на допълнителни точки"
#. cFBRw
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark glue points"
msgstr "Маркиране на точки за съединяване"
#. 5uDeK
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional glue points"
msgstr "Маркиране на допълнителни точки за съединяване"
#. D5ZZA
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Създаване на %1"
#. 7FoxD
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Вмъкване на %1"
#. 9hXBp
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Копиране на %1"
#. arzhD
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "Промяна в реда за обект %1"
#. QTZxE
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Редактиране на текста на %1"
#. un957
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Вмъкване на страница"
#. vBvUC
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Изтриване на страница"
#. rFgUQ
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Копиране на страница"
#. EYfZc
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Промяна в реда на страниците"
#. BQRVo
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "Изчистване на фоновата страница"
#. 79Cxu
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "Смяна на фоновата страница"
#. 9P8JF
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Вмъкване на документ"
#. w3W7h
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Вмъкване на слой"
#. 7pifL
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Изтриване на слой"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:259
+#: include/svx/strings.hrc:260
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Промяна на име на обект от %1 на"
#. D4AsZ
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Промяна на заглавие на обект от %1 на"
#. tqeMT
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "Промяна на описание на обект от %1 на"
#. XcY5w
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_ItemValON"
msgid "on"
msgstr "вкл."
#. e6RAB
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "изкл."
#. gaXKQ
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "да"
#. 65SoV
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "Не"
#. aeEuB
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Тип 1"
#. BFaLY
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Тип 2"
#. KFMjw
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Тип 3"
#. 48UKA
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Тип 4"
#. DVm64
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Хоризонтално"
#. ZYYeS
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Вертикално"
#. HcoYN
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Автоматично"
#. uZNFq
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Изкл."
#. 2ZQvA
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Пропорционална"
#. Ej4Ya
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Напасване по размер (отделно за всички редове) "
#. Wr4kE
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "Прилагане на твърди атрибути"
#. 73uL2
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Горе"
#. 3Cde5
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "В средата"
#. AR3n7
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Долу"
#. UmBBe
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "Използване на цялата височина"
#. dRtWD
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Разтегнат"
#. kGXVu
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Ляво"
#. bDPBk
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "В средата"
#. tVhNN
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Дясно"
#. K8NiD
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "По цялата ширина"
#. H7dgd
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Разтегнат"
#. q5eQw
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "изкл."
#. Roba3
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "мигане"
#. UDFFC
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "Превъртане"
#. A9BQL
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "редуване"
#. EkPkn
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "Превъртане навътре"
#. x3Yd5
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "наляво"
#. w7PTQ
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "нагоре"
#. oMaiF
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "надясно"
#. tQTCd
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "надолу"
#. 6MMYx
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Стандартна съединителна линия"
#. SLdM8
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Начупена съединителна линия"
#. ZAtDC
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Права съединителна линия"
#. 9qXds
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Крива съединителна линия"
#. MGEse
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Стандартен"
#. sNziy
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Радиус"
#. LcFuk
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_TEXTHAUTO"
msgid "automatic"
msgstr "Автоматично"
#. eocRP
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTLEFTOUTSIDE"
msgid "left outside"
msgstr "отвън отляво"
#. ZUEgu
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_TEXTINSIDE"
msgid "inside (centered)"
msgstr "вътре (центрирано)"
#. GKuxD
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURE_TEXTRIGHTOUTSID"
msgid "right outside"
msgstr "отвън отдясно"
#. zGpyM
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "Автоматично"
#. jA4pb
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "на реда"
#. iqYjg
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "пренесен ред"
#. h8npu
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "под линия"
#. WL8XG
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "центрирано"
#. hy9eX
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "пълен кръг"
#. 6BdZt
-#: include/svx/strings.hrc:312
+#: include/svx/strings.hrc:313
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Кръгов сектор"
#. j6Bc3
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Кръгов сегмент"
#. 7sN8d
-#: include/svx/strings.hrc:314
+#: include/svx/strings.hrc:315
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "Дъга"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Непознато свойство"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Стил на линия"
#. BbP7X
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "Образец за линия"
#. 4NCnS
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Ширина на линия"
#. NuJkv
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Цвят на контура"
#. NgaPV
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Начало на линия"
#. UYBDU
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Край на линия"
#. DJkAF
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Ширина на началото на линия"
#. QqA6b
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Ширина на края на линия"
#. FcHDB
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "Центриране началото на линията"
#. KnFtT
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "Центриране края на линията"
#. 2UZUA
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Прозрачност на линия"
#. 5MLYD
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Преход между линии"
#. ArqSC
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Свойства на линията"
#. dufaT
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Стил на запълване"
#. RDcH6
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Цвят на запълването"
#. DJM9B
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Преливане"
#. gbABb
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "Щриховка"
#. GE68t
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Растерно изображение за запълване"
#. DV2Ss
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Прозрачност"
#. eK8kh
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Брой стъпки на преливане"
#. AVtYF
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Заглавие на запълването"
#. D7T2o
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Позиция на растерното изображение за запълване"
#. NVLGP
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Ширина на растерното изображение за запълване"
#. PSCTE
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Височина на растерното изображение за запълване"
#. zW4zt
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Прозрачно преливане"
#. DBBgQ
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "Резервирано запълване 2"
#. PaSqp
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Големина на плочката не в %"
#. fwikV
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "Отместване на плочката по Х в %"
#. FQgvE
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "Отместване на плочката по Y в %"
#. NUEGF
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Мащабиране на растерно изображение"
#. pc9yk
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "Позиция на плочката по Х в %"
#. DH43F
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "Позиция на плочката по Y в %"
#. 8GFpS
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Запълване на фона"
#. 2SvhA
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Свойства на областта"
#. TE8CS
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Стил на Fontwork"
#. qMnRZ
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Подравняване на Fontwork"
#. fpGEZ
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "Разредка на Fontwork"
#. CUBXL
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Начало на шрифт на Fontwork"
#. JSVHo
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "Огледално обръщане на Fontwork"
#. P5W29
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Очертаване на Fontwork"
#. LKCDD
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Сянка на Fontwork"
#. oDiYn
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Цвят на сянката на Fontwork"
#. sFLRA
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "Отместване по X за сянка на Fontwork"
#. daERW
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "Отместване по Y за сянка на Fontwork"
#. LdeJZ
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "Скриване очертанието на Fontwork"
#. 3sPPg
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "Прозрачност на сянката на Fontwork"
#. q6MHs
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "Сянка"
#. dSwen
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Цвят на сянка"
#. HcLrC
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Отстояние за сянката по X"
#. TMGmk
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Отстояние за сянката по Y"
#. u5baB
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Прозрачност на сянката"
#. AtDxf
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr "Замъгляване на сянката"
#. sDFuG
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "Триизмерна сянка"
#. FGU8f
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "Сянка в перспектива"
#. MV529
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Тип на легендата"
#. GAtWb
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "Фиксиран ъгъл на легендата"
#. SgHKq
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Ъгъл на легендата"
#. gwcQp
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Разстояние между редовете в легендата"
#. 6uEae
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "Изходно направление на легенда"
#. TXjGv
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "Относителен изход на легендата"
#. Z5bQB
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "Относителен изход на легендата"
#. 4TmFK
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "Абсолютен изход на легендата"
#. V9TG8
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Дължина на реда в легендата"
#. haQgi
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "Автоматична дължина на редовете в легендата"
#. DGKz5
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_ECKENRADIUS"
msgid "Corner radius"
msgstr "Радиус на ъгъл"
#. GEA3m
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Минимална височина на рамката"
#. 3jdRR
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "Автоматично напасване на височината"
#. NoJR4
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "Побиране на текста в рамката"
#. EexDC
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "Разстояние до текста в рамката отляво"
#. 3thvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "Разстояние до текста в рамката отдясно"
#. 8x2Xa
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "Разстояние до текста в рамката отгоре"
#. WyymX
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "Разстояние до текста в рамката отдолу"
#. vdbvB
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "Котва във вертикален текст"
#. QzTNc
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Максимална височина на рамката"
#. CcAnR
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Минимална височина на рамката"
#. i6nqD
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Максимална ширина на рамката"
#. irtVb
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "Автоматично напасване на ширината"
#. BGR8n
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "Котва в хоризонтален текст"
#. ruk5J
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "Бягащ ред"
#. cvDiA
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "Посока на бягащия ред"
#. GuCC5
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "Бягащият ред започва отвътре"
#. ipog5
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "Бягащият ред завършва вътре"
#. pWAHL
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "Брой превъртания на бягащия текст"
#. vGEjP
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "Скорост на бягащия ред"
#. SdHEU
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "Стъпка на бягащия ред"
#. LzoA5
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Изливане на текста по контур"
#. HDtDf
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Потребителски свойства"
#. F9FzF
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "Независима от шрифта редова разредка"
#. jTAhz
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "Пренасяне на текста във фигурата"
#. QDaB6
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr "Следваща връзка във верига от текстове"
#. BA5dh
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Тип на свързващата линия"
#. CoYH2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "Хориз. разстояние обект 1"
#. xdvs2
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "Верт. разстояние обект 1"
#. FB4Cj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "Хориз. разстояние обект 2"
#. uGKvj
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "Верт. разстояние обект 2"
#. FSkBP
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "Разстояние между точките за съединяване – обект 1"
#. 845KH
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "Разстояние между точките за съединяване - обект 2"
#. FEDAf
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "Брой на плаващите линии"
#. EnGaG
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "Отместване ред 1"
#. 5XFzK
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "Отместване ред 2"
#. nBFrd
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "Отместване ред 3"
#. x7oEC
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Тип на оразмеряването"
#. 2XCPo
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "Хоризонтална позиция на текст за размер"
#. DxA8Z
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "Вертикална позиция на текст за размер"
#. LQCsj
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "Интервал между размерните линии"
#. jZBoK
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "Настъп на междинните размерни линии"
#. Bhboy
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "Разстояние между междинните размерни линии"
#. jw9E7
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "Запас на помощни размерни линии 1"
#. CYFg6
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "Запас на помощни размерни линии 2"
#. ocvCK
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "Размер на долния кант"
#. cFVVA
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "Текст за размер напреки на размерната линия"
#. VVAgC
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "Завъртане на размерната стойност на 180ø"
#. iFX7y
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "Настъп на размерните линии"
#. DoBGo
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Мерна единица"
#. 2NBMp
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "Допълнителен коефициент на мащабиране"
#. 4yTAW
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Показване на мерните единици"
#. NFDC3
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Формат на текста за размер"
#. UBjQk
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "Автоматична позиция на текста за размер"
#. GDQC3
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "Ъгъл за автоматична позиция на текста за размер"
#. DB243
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "Определяне на ъгъла на текста за размер"
#. i3Bah
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "Ъгъл на текста за размер"
#. qWKC7
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Десетични позиции"
#. wkrNX
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Тип на кръга"
#. FRFU8
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "Начален ъгъл"
#. FmSKG
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "Краен ъгъл"
#. ejn6F
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Защитена позиция на обекта"
#. ZPEB9
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Защитен размер на обекта"
#. BN5CM
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "Обект, печатаем"
#. 3Digj
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Обект, видим"
#. nZLtM
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "Идентификатор на ниво"
#. f3ed2
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Слой"
#. rb6GC
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Име на обекта"
#. 5zRFi
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "Позиция - X, цялостна"
#. 5enZ7
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "Позиция - Y, цялостна"
#. 2V5Mn
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "Обща ширина"
#. P6Y6W
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "Височина, цялостна"
#. yFnnC
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "Единична позиция X"
#. jEGfd
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "Единична позиция Y"
#. YJFnY
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "Единична ширина"
#. bZFkM
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "Единична височина"
#. K5Xuq
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Логическа ширина"
#. 9Niyk
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Логическа височина"
#. yFmvh
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "Единичен ъгъл на завъртане"
#. zNyKY
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "Ъгъл на единичен отрез"
#. bJv8D
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "Хоризонтално преместване"
#. z7EPp
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "Вертикално преместване"
#. Qn4GS
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Преоразмеряване по X, единично"
#. VCtZa
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Преоразмеряване по Y, единично"
#. NxatH
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Единично завъртане"
#. gNVw9
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "Единично хоризонтално срязване"
#. iCzED
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "Единично вертикално срязване"
#. HQcJt
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Оразмеряване по X, пълно"
#. VcK8z
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Оразмеряване по Y, пълно"
#. vgGU4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Завъртане на всичко"
#. 3faE4
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "Хоризонтално срязване, изцяло"
#. RAEPz
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "Вертикално срязване, изцяло"
#. gtXM3
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "Отправна точка 1 X"
#. YpQDc
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "Отправна точка 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "Отправна точка 2 X"
#. Rty4j
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "Отправна точка 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Сричкопренасяне"
#. HMmA6
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Показване на водачи"
#. 8Q88u
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "Номерирани отстъпи"
#. inGxX
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Номерирани нива"
#. 2CtLK
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Водачи и номерация"
#. hCE5d
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Отстъпи"
#. Y5YFm
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Разстояние между абзаците"
#. feirn
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Редова разредка"
#. gjAVE
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Абзацно подравняване"
#. offnT
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Табулатори"
#. kpiTD
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Цвят на шрифта"
#. X535C
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Знаков набор"
#. AEbEz
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Размер на шрифта"
#. UKHSM
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Ширина на шрифта"
#. SQWpD
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "Получер (дебелина)"
#. AUR7N
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Подчертан"
#. v2AEJ
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Надчертан"
#. ARvwR
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Зачертан"
#. gcVzb
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Курсив"
#. kJVaV
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "План"
#. CZR4e
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Сянка на шрифта"
#. PFSUR
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "Горен/долен индекс"
#. DrBio
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Кърнинг"
#. tUVvP
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Ръчен кърнинг"
#. S9QCU
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Без подчертаване на интервалите"
#. GuTzF
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Табулатор"
#. U4qgA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "Незадължителен нов ред"
#. jzBEA
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Непреобразуваем знак"
#. tZd9C
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Полета"
#. GeKPD
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Червено"
#. EzAu7
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Зелено"
#. TmBML
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Синьо"
#. 7Gqzs
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Яркост"
#. rziVW
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Контраст"
#. CHepz
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Гама"
#. 2ESVA
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Прозрачност"
#. uZYFG
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Инвертиране"
#. 6aFx2
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Режим на изображението"
#. Ni9KZ
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "Подрязване"
#. kVnke
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr "Радиус на блясък"
#. 3hvai
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr "Цвят на блясък"
#. eCSE2
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr "Прозрачност на блясък"
#. 8qNHk
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr "Радиус на преливащи ръбове"
#. nVcjU
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Мултимедиен обект"
#. nbHgw
-#: include/svx/strings.hrc:522
+#: include/svx/strings.hrc:523
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Мултимедийни обекти"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Вмъкване на колона"
#. SAmd8
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Вмъкване на ред"
#. yFDYp
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Изтриване на колона"
#. 9SF9L
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Изтриване на ред"
#. iBbtT
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Разделяне на клетки"
#. vmzqf
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Сливане на клетки"
#. 3VVmF
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Форматиране на клетка"
#. pSCJC
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "Разпределяне на редове"
#. GdLHf
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "Разпределяне на колони"
#. fGNto
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Изтриване съдържанието на клетки"
#. B33Cb
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Стил на таблица"
#. ZHBAC
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Настройки на стил на таблица"
#. eERmE
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Таблица"
#. XjgSV
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Таблици"
#. mLDqP
-#: include/svx/strings.hrc:538
+#: include/svx/strings.hrc:539
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "Обект на Fontwork"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "Непрекъсната"
#. uNL7M
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Градиент"
#. a8YoL
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Растерно изображение"
#. FDmra
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "Шарка"
#. HcGBQ
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "Шарка без име"
#. GHj4Q
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Стил за линии"
#. fa7EG
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Няма"
#. mrTdk
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Цвят"
#. 5bjE5
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "Щриховка"
#. yGRGW
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Краища на линии"
#. snuCi
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Стрелка"
#. 6EvQ7
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Квадрат"
#. i6cva
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Кръгче"
#. emz9g
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- няма -"
#. hGaEK
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Прозрачност"
#. X4EFw
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Центрирано"
#. FFe8m
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Не центриран"
#. hFhmH
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "По подразбиране"
#. DdAzc
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "Степени на сивото"
#. RHEXM
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Черно-бяло"
#. bcXbA
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "Воден знак"
#. ZWz8Y
-#: include/svx/strings.hrc:561
+#: include/svx/strings.hrc:562
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr "Ляв бутон: прилагане като фонов цвят, десен бутон: задаване цвят на линиите"
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr "Тъмно червено 2"
#. Rw7nG
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "Синьо"
#. UdEYr
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "Жълто"
#. 9AUDK
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr "Тъмно синьо 1"
#. aSWwv
-#: include/svx/strings.hrc:567
+#: include/svx/strings.hrc:568
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr "Светло синьо 2"
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Черно"
#. PwGvV
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Сиво"
#. Dp9Az
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Бяло"
#. TGLmD
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Жълто"
#. YpDke
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Златисто"
#. 7aJCZ
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Оранжево"
#. mZMFN
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "Керемидено"
#. juJeM
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Червено"
#. 7xMrN
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Пурпурно"
#. ELXiM
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Пурпурно"
#. UTexf
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "Индиго"
#. qbcF9
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Синьо"
#. hQ44j
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "Синьозелено"
#. JpxBr
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Зелено"
#. A3aCJ
-#: include/svx/strings.hrc:583
+#: include/svx/strings.hrc:584
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "Жълтозелено"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Светло сиво"
#. YF2ud
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "Светло жълто"
#. BaXBj
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "Светло златисто"
#. masPL
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "Светло оранжево"
#. k5GY4
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "Светло керемидено"
#. KGDDj
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Светло червено"
#. nvB2W
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr "Светла магента"
#. y96HS
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "Светло пурпурно"
#. 8Bg8h
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "Светло индиго"
#. suGUh
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Светло синьо"
#. 5VFSV
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "Светло синьозелено"
#. 3Z7KA
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Светло зелено"
#. HVPnD
-#: include/svx/strings.hrc:597
+#: include/svx/strings.hrc:598
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "Светло жълтозелено"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "Тъмно сиво"
#. EaFik
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "Тъмно жълто"
#. AFByn
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "Тъмно златисто"
#. qAGnF
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "Тъмно оранжево"
#. NC62Q
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "Тъмно керемидено"
#. st4Zy
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Тъмно червено"
#. indkC
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr "Тъмна магента"
#. AE9Ya
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "Тъмно пурпурно"
#. VFKuJ
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "Тъмно индиго"
#. U3qfW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "Тъмно синьо"
#. dYdEW
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "Тъмно синьозелено"
#. qFAAB
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "Тъмно зелено"
#. C3U7v
-#: include/svx/strings.hrc:611
+#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "Тъмно жълтозелено"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "Виолетово"
#. GgboW
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Виолетово (извън гамата)"
#. mz3Eo
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Синьо (извън гамата)"
#. SGvfY
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Лазурно (извън гамата)"
#. dYBjC
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Пролетно зелено (извън гамата)"
#. GCcWR
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Зелено (извън гамата)"
#. DLuCh
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Бледозелено (извън гамата)"
#. s3ZaC
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Оранжево (извън гамата)"
#. A8i2G
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Червено (извън гамата)"
#. j4oEv
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Розово (извън гамата)"
#. qBpvR
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr "Лазурно"
#. Y6vVA
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "Циан"
#. 583vY
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr "Пролетно зелено"
#. jtKm8
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr "Бледозелено"
#. RkAmE
-#: include/svx/strings.hrc:627
+#: include/svx/strings.hrc:628
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr "Розово"
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr "Сиво A"
#. 3b7sB
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr "Жълто A"
#. DbqvY
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr "Кехлибарено A"
#. nFENC
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr "Кехлибарено"
#. i8Tx3
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr "Оранжево A"
#. DMVTT
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr "Тъмно оранжево A"
#. LgNfg
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr "Тъмно оранжево"
#. A4JAB
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr "Червено A"
#. jsEPc
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr "Розово A"
#. cFBzv
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr "Пурпурно A"
#. p6AAX
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr "Тъмно пурпурно A"
#. WcMy9
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr "Тъмно пурпурно"
#. e4rqj
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr "Индиго A"
#. r3rtQ
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr "Синьо A"
#. dDQEi
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr "Светло синьо A"
#. BepQT
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr "Циан A"
#. PvkCw
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr "Синьозелено A"
#. znZyu
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr "Зелено A"
#. nZDMp
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr "Светло зелено A"
#. 7RWqh
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr "Жълтозелено A"
#. vuq8i
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr "Кафяво A"
#. wcNMK
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr "Кафяво"
#. RA8KB
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr "Синьо-сиво A"
#. yXhED
-#: include/svx/strings.hrc:652
+#: include/svx/strings.hrc:653
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr "Синьо-сиво"
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "Синьо, класическо"
#. CWbzY
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "Синьо-сиво"
#. DkKFF
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Бордо"
#. 5hZu8
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "Бледожълто"
#. wSEGQ
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "Бледозелено"
#. pUEkF
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "Тъмно виолетово"
#. qVhW9
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Розово-оранжево"
#. QV77P
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "Морско синьо"
#. gYFV6
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Диаграма"
#. LXcFL
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "Небесносиньо"
#. QbGU3
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "Жълтозелено"
#. UDfTh
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Розово"
#. FXDuA
-#: include/svx/strings.hrc:666
+#: include/svx/strings.hrc:667
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Тюркоазено"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3-И"
#. GtMuR
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Черно 1"
#. AhPLy
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Черно 2"
#. jVxFC
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Синьо"
#. FacjB
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Кафяво"
#. uQSDF
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Валута"
#. sQpNL
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Валута, 3-И"
#. ACACr
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Валута, сива"
#. yy7mJ
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Валута, бледолилава"
#. 4THUt
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Валута, тюркоазена"
#. a8AGf
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Сиво"
#. B4e9f
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Зелено"
#. 3mz4G
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Бледолилаво"
#. gdfFF
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Червено"
#. GsAVb
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Тюркоазено"
#. sZbit
-#: include/svx/strings.hrc:683
+#: include/svx/strings.hrc:684
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Жълто"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr "Академична"
#. CYMbi
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "Списък с рамка, синьо"
#. njUDn
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "Списък с рамка, зелено"
#. GUk5r
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "Списък с рамка, червено"
#. oNMgD
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "Списък с рамка, жълто"
#. YVY2f
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "Елегантна"
#. Q9rDT
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Финансова"
#. 3qSCd
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr "Обикновена решетка, колони"
#. hksaM
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr "Обикновена решетка, редове"
#. CHXkk
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr "Обикновен списък с оцветяване"
#. XrHFB
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Центрирано свързване на линии"
#. zbAG7
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Скосено свързване на линии"
#. EtQJT
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Скъсено свързване на линии"
#. YUtBv
-#: include/svx/strings.hrc:698
+#: include/svx/strings.hrc:699
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Закръглено свързване на линии"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "Плоски крайчета на линии"
#. zKt6C
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "Заоблени крайчета на линии"
#. 5Lbx4
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "Квадратни крайчета на линии"
#. YXbPg
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Градиент"
#. mZwMD
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Линеен, синьо/бяло"
#. WyGuh
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Линеен, пурпурно/зелено"
#. cLHvA
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Линеен, жълто/кафяво"
#. Kfkbm
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Радиален, зелено/черно"
#. uiTTS
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Радиален, червено/жълто"
#. SsUvr
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Правоъгълен, червено/бяло"
#. CKwQP
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Квадратен, жълто/бяло"
#. hi3tb
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Елиптичен, синьо-сиво/светлосиньо"
#. b6AwV
-#: include/svx/strings.hrc:712
+#: include/svx/strings.hrc:713
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Осев, светлочервено/бяло"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:714
+#: include/svx/strings.hrc:715
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Диагонал 1л"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:716
+#: include/svx/strings.hrc:717
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Диагонал 1д"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:718
+#: include/svx/strings.hrc:719
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Диагонал 2л"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:720
+#: include/svx/strings.hrc:721
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Диагонал 2д"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:722
+#: include/svx/strings.hrc:723
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Диагонал 3л"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:724
+#: include/svx/strings.hrc:725
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Диагонал 3д"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:726
+#: include/svx/strings.hrc:727
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Диагонал 4л"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Диагонал 4д"
#. yqda8
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Диагонал, синьо"
#. GCtJC
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Диагонал, зелено"
#. LCQEB
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Диагонал, оранжево"
#. oD7FW
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Диагонал, червено"
#. vuyUG
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Диагонал, тюркоазено"
#. mGtyc
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Диагонал, виолетово"
#. cArVy
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "От ъгъл"
#. gvXLL
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "От ъгъл, синьо"
#. GaTPh
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "От ъгъл, зелено"
#. GE5vm
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "От ъгъл, оранжево"
#. BFTnr
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "От ъгъл, червено"
#. AFKRL
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "От ъгъл, тюркоазено"
#. djBGe
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "От ъгъл, виолетово"
#. pwDuE
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "От средата"
#. y8qpL
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "От средата, синьо"
#. PGt5w
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "От средата, зелено"
#. CyLXB
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "От средата, оранжево"
#. vkERJ
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "От средата, червено"
#. Sq2SE
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "От средата, тюркоазено"
#. DoSmH
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "От средата, виолетово"
#. 9XHkg
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Хоризонтално"
#. FDG7B
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Хоризонтален, синьо"
#. ZEfzF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Хоризонтален, зелено"
#. GFRCF
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Хоризонтален, оранжево"
#. iouxG
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Хоризонтален, червено"
#. Gta9k
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Хоризонтален, тюркоазено"
#. Tdpw4
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Хоризонтален, виолетово"
#. DyVEP
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Радиален"
#. Uyhuj
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Радиален, синьо"
#. MA6Qs
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Радиален, зелено"
#. Pt24U
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "Радиален, оранжево"
#. 37T3A
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Радиален, червено"
#. gLwZp
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Радиален, тюркоазено"
#. gka9C
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Радиален, виолетово"
#. BaGs9
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Вертикален"
#. DqGbG
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Вертикален, синьо"
#. FCa2X
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Вертикален, зелено"
#. BNSiE
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Вертикален, оранжево"
#. DfiaF
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Вертикален, червено"
#. 4htXp
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Вертикален, тюркоазено"
#. FVCCq
-#: include/svx/strings.hrc:769
+#: include/svx/strings.hrc:770
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Вертикален, виолетово"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "Сив градиент"
#. CDxDN
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "Жълт градиент"
#. amMze
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "Оранжев градиент"
#. bodAW
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "Червен градиент"
#. Zn2x3
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "Розов градиент"
#. xXMfH
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Небе"
#. RYfTi
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "Цианов градиент"
#. jAu7g
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "Син градиент"
#. idyKS
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "Пурпурен градиент"
#. fFZia
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Нощ"
#. 4ECED
-#: include/svx/strings.hrc:781
+#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "Зелен градиент"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr "Пастелен букет"
#. 9BV4L
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr "Пастелна мечта"
#. jEVDi
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr "Синьо докосване"
#. ZAj48
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr "Бяло със сиво"
#. CJqu3
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr "Сиво със светло петно"
#. s6Z54
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr "Лондонска мъгла"
#. nk99S
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr "От синьозелено към синьо"
#. ud3Bc
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr "Полунощ"
#. 3DFV9
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr "Океански дълбини"
#. beAAG
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr "Под водата"
#. LCJCH
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr "Зелена трева"
#. wiGu5
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr "Неонова светлина"
#. EGqXT
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr "Слънце"
#. WCs3M
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr "Подарък"
#. 99B5Z
-#: include/svx/strings.hrc:797
+#: include/svx/strings.hrc:798
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr "Махагон"
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr "Черна, 0 градуса"
#. BUCv6
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr "Черна, 90 градуса"
#. gyzNu
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr "Черна, 180 градуса, кръстосана"
#. KYmyj
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr "Синя, 45 градуса"
#. 2qkyC
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr "Синя, -45 градуса"
#. GFqzJ
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr "Синя, 45 градуса, кръстосана"
#. wRXH2
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr "Зелена, 30 градуса"
#. JAkb9
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr "Зелена, 60 градуса"
#. DnKyA
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr "Зелена, 90 градуса, тройна"
#. oTAUx
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr "Червена, 45 градуса"
#. xcHED
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr "Червена, 90 градуса, кръстосана"
#. UZM2R
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr "Червена, -45 градуса, тройна"
#. TypfV
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr "Жълта, 45 градуса"
#. eRFD8
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr "Жълта, 45 градуса, кръстосана"
#. JhXx3
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr "Жълта, 45 градуса, тройна"
#. 78jyB
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr "Щриховка"
#. FJati
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Празно"
#. Q4jUs
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr "Бяла боя"
#. iHX2t
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr "Хартия"
#. mAyG3
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr "Смачкана хартия"
#. i3ARe
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr "Разграфена хартия"
#. 6izYJ
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "Пергаментова хартия"
#. mQCXG
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr "Ограда"
#. TriUQ
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr "Дъска"
#. Hp2Gp
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr "Кленови листа"
#. 2B5Wr
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr "Морава"
#. bAE9x
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr "Цветни камъчета"
#. nqBbP
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr "Кафени зърна"
#. CQS6y
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr "Облачета"
#. 2hE6A
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr "Фаянсови плочки"
#. KZeGr
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr "Каменна стена"
#. wAELs
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr "Зебра"
#. AVGfC
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr "Цветни ивици"
#. ZoUmP
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr "Чакъл"
#. 5FiBd
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr "Пергамент"
#. HYfqK
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr "Нощно небе"
#. NkYV3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "Басейн"
#. Co6U3
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Растерно изображение"
#. KFEX5
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr "Крафт хартия"
#. x5eiA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr "Бетон"
#. RxiMA
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr "Тухлена стена"
#. WNEfT
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr "Каменна стена"
#. dFqW3
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr "Флорален мотив"
#. FzePv
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr "Космос"
#. FzVch
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr "Ледена светлина"
#. YGtzc
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr "Мрамор"
#. Rzgwp
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr "Пясъчна светлина"
#. cK72d
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr "Камък"
#. TnkWd
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr "Дифузно бяло"
#. kksvW
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr "Повърхност"
#. BQj9p
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr "Картон"
#. poA6e
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr "Студио"
#. YEbqw
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 процента"
#. AAn36
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 процента"
#. NLTbt
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 процента"
#. vx2XC
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 процента"
#. weQqs
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 процента"
#. CAdAS
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 процента"
#. 5T5vP
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 процента"
#. aNdJE
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 процента"
#. 3vD8U
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 процента"
#. UJmCD
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 процента"
#. i9RCR
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 процента"
#. 2oEkC
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 процента"
#. a3yZ5
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "Тънки диагонали надолу"
#. oiGTx
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "Тънки диагонали нагоре"
#. CGpy7
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "Дебели диагонали надолу"
#. cucpa
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "Дебели диагонали нагоре"
#. EFDcT
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "Широки диагонали надолу"
#. CWmH5
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "Широки диагонали нагоре"
#. BZJUK
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "Тънки вертикали"
#. B5FVF
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "Тънки хоризонтали"
#. daP9i
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "Тесни вертикали"
#. JD5FJ
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "Тесни хоризонтали"
#. eB4wk
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "Дебели вертикали"
#. MeoCx
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "Дебели хоризонтали"
#. gAqnG
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "Прекъснати диагонали надолу"
#. DGB5k
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "Прекъснати диагонали нагоре"
#. JC7je
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "Прекъснати хоризонтали"
#. iFiBq
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "Прекъснати вертикали"
#. gWDnG
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "Дребни конфети"
#. vbh6h
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "Едри конфети"
#. XFemm
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "Зигзаг"
#. mC3BE
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Вълна"
#. icCPR
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "Диагонални тухли"
#. 8CqPG
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "Хоризонтални тухли"
#. GFUZF
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "Плетка"
#. bp9ZY
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "Каре"
#. ZrVMS
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "Чим"
#. tFas9
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "Пунктирана мрежа"
#. SECdZ
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "Пунктирани ромбове"
#. ri3Ge
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "Керемиди"
#. jD9er
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "Решетка"
#. aemFS
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "Сфера"
#. Ds8Ae
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "Дребна мрежа"
#. a33Ci
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "Едра мрежа"
#. BCSZY
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "Дребна шахматна"
#. Bgczw
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "Едра шахматна"
#. sD7Mf
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "Очертани ромбове"
#. RNNkR
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "Запълнени ромбове"
#. HJkgr
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "Вертикали"
#. ED3Ga
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "Хоризонтали"
#. ENYtZ
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "Диагонали надолу"
#. mbjPX
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "Диагонали нагоре"
#. TxAfM
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Кръстосана"
#. 4mGJX
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "Диагонална кръстосана"
#. J4CJa
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr "Тирета и точки"
#. Rno6q
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr "Тирета и точки по диагонал нагоре"
#. pFZkq
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr "Плътна на точки"
#. NA5sT
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr "Точка"
#. nCpL4
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr "Дълга точка"
#. utrkH
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH2"
msgid "Double Dot"
msgstr "Двойна точка"
#. 2X7pw
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr "Тире"
#. A46B5
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr "Дълго тире"
#. axE2r
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr "Двойно тире"
#. beDTh
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr "Дълго тире, точка"
#. gVPtU
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr "Двойно тире, точка"
#. UFaLC
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr "Двойно тире, точка, точка"
#. F9cPw
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr "Свръхтънка пунктирана"
#. s3rBZ
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr "Тънка пунктирана"
#. w7W8j
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr "Свръхтънка прекъсната"
#. xWgiA
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr "Тънка прекъсната"
#. u34Ff
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr "Тънка прекъсната"
#. hT4CE
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr "Прекъсната"
#. T7sVF
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr "Стил за линии 9"
#. evPXr
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr "3 тирета - 3 точки"
#. H7iUz
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr "Свръхтънка, 2 точки - 3 тирета"
#. KpCzr
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr "2 точки - тире"
#. zbWk3
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr "Линия с дребни точки"
#. ibALA
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH20"
msgid "Dashed"
msgstr "Прекъсната"
#. qEZc6
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH21"
msgid "Line Style"
msgstr "Стил за линии"
#. iKAwD
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "Всички формати"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr "Вдлъбната, къса"
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Квадрат 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr "Стрелка, къса"
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:938
+#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "Размерни линии"
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:940
+#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Двойна стрелка"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:942
+#: include/svx/strings.hrc:943
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr "Триъгълник"
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:944
+#: include/svx/strings.hrc:945
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr "Вдлъбнат край"
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:946
+#: include/svx/strings.hrc:947
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr "Стрелка, голяма"
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:948
+#: include/svx/strings.hrc:949
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "Размерна линия"
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:950
+#: include/svx/strings.hrc:951
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Кръгче"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:952
+#: include/svx/strings.hrc:953
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Квадрат"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:954
+#: include/svx/strings.hrc:955
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Стрелка"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:956
+#: include/svx/strings.hrc:957
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr "Полукръг"
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:958
+#: include/svx/strings.hrc:959
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "Празен триъгълник"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:960
+#: include/svx/strings.hrc:961
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "Празен ромб"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:962
+#: include/svx/strings.hrc:963
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Ромб"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:964
+#: include/svx/strings.hrc:965
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Празен кръг"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:966
+#: include/svx/strings.hrc:967
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Празен квадрат 45"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:968
+#: include/svx/strings.hrc:969
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "Празен квадрат"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:970
+#: include/svx/strings.hrc:971
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr "Незапълнен полукръг"
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:972
+#: include/svx/strings.hrc:973
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr "Размерна линия със стрелка"
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:974
+#: include/svx/strings.hrc:975
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr "Линия, къса"
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:976
+#: include/svx/strings.hrc:977
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr "Линия"
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:978
+#: include/svx/strings.hrc:979
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr "Половин стрелка наляво"
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:980
+#: include/svx/strings.hrc:981
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr "Половин стрелка надясно"
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:982
+#: include/svx/strings.hrc:983
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr "Обърната стрелка"
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:984
+#: include/svx/strings.hrc:985
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr "Връзка „Един“"
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:986
+#: include/svx/strings.hrc:987
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr "Връзка „Само един“"
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:988
+#: include/svx/strings.hrc:989
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr "Връзка „Много“"
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:990
+#: include/svx/strings.hrc:991
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr "Връзка „Много или един“"
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:992
+#: include/svx/strings.hrc:993
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr "Връзка „Нула или един“"
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:994
+#: include/svx/strings.hrc:995
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr "Връзка „Нула или много“"
#. EXsKo
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Прозрачност"
#. hGytB
-#: include/svx/strings.hrc:996
+#: include/svx/strings.hrc:997
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr "Зелено 1 (основен цвят на %PRODUCTNAME)"
#. Msh88
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "Открояване в зелено"
#. opj2M
-#: include/svx/strings.hrc:998
+#: include/svx/strings.hrc:999
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "Открояване в синьо"
#. tC5jE
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "Открояване в оранжево"
#. 3T9pJ
-#: include/svx/strings.hrc:1000
+#: include/svx/strings.hrc:1001
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Пурпурно"
#. N5FWG
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "Открояване в пурпурно"
#. Nhtbq
-#: include/svx/strings.hrc:1002
+#: include/svx/strings.hrc:1003
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "Открояване в жълто"
#. apBBr
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Тема от галерията"
#. BseGn
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Успешно възстановен"
#. LfjDh
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Оригиналният документ е възстановен"
#. BEAbm
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Неуспешно възстановяване"
#. 5ye7z
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Възстановяването е в ход"
#. tEbUT
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Все още не е възстановен"
#. EaAMF
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION започна да възстановява вашите документи. В зависимост от размера им процесът може да отнеме известно време."
#. AicJe
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "Възстановяването на документите завърши. Натиснете „Готово“, за да ги видите."
#. ZbeCG
-#: include/svx/strings.hrc:1012
+#: include/svx/strings.hrc:1013
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "Готово"
#. BBeKk
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Последна стойност по избор"
#. mENBU
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "пкт"
#. fRyqX
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Експортиране на изображение"
#. xXhtG
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "Записване като изображение"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Вмъкване на обект(и)"
#. Heqmn
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Въртене на триизмерно тяло"
#. AC56T
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Създаване на екструдирано тяло"
#. 4DonY
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Създаване на ротационно тяло"
#. EL9V9
-#: include/svx/strings.hrc:1024
+#: include/svx/strings.hrc:1025
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Разделяне на триизмерно тяло"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1027
+#: include/svx/strings.hrc:1028
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Всички]"
#. RZVDm
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Графичен филтър"
#. YNjeD
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Нова тема"
#. 5uYha
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "Триизмерни ефекти"
#. 78DGx
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Анимации"
#. zGEez
-#: include/svx/strings.hrc:1034
+#: include/svx/strings.hrc:1035
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Водачи"
#. MwX9z
-#: include/svx/strings.hrc:1035
+#: include/svx/strings.hrc:1036
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Служба"
#. dAwiC
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Знамена"
#. Ccn8V
-#: include/svx/strings.hrc:1037
+#: include/svx/strings.hrc:1038
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Блок-схеми"
#. 6ouMS
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Картинки за емоции"
#. 8GPFu
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Изображения"
#. sqh2w
-#: include/svx/strings.hrc:1040
+#: include/svx/strings.hrc:1041
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Фонове"
#. B3KuT
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Домашна страница"
#. WR8JQ
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Интерактивност"
#. EbEZ6
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Карти"
#. GALA8
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Хора"
#. ZMoiA
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Повърхности"
#. hNaiH
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Компютри"
#. mrvvG
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Диаграми"
#. HhrDx
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "Околна среда"
#. 2jVzE
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Финанси"
#. cmF3B
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "Транспорт"
#. as3XM
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Текстови фигури"
#. gGyFP
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Звуци"
#. 5NrPj
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Символи"
#. AiXUK
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "Моята тема"
#. uRxP4
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Стрелки"
#. c3WXh
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Балони"
#. pmiE7
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Клавиатура"
#. LYdAf
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Час"
#. 4UGrY
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Презентация"
#. a46Xm
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Календар"
#. YpuGv
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Навигация"
#. gAJH4
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Връзка"
#. ETEJu
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Финанси"
#. rNez6
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Компютри"
#. ioX7y
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Климат"
#. MmYFp
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Училище и университет"
#. EKFgg
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Разрешаване на проблеми"
#. GgrBp
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Екранни контейнери"
#. E6onK
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Печат на избраното"
#. HzX9m
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "Какво желаете да отпечатате - избраното или целия документ?"
#. 3UyC8
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~Всички"
#. UxfS3
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "~Избор"
#. KTgDd
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Екструдиране на северозапад"
#. N6KLd
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Екструдиране на север"
#. AB6Vj
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Екструдиране на североизток"
#. NBBEB
-#: include/svx/strings.hrc:1078
+#: include/svx/strings.hrc:1079
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Екструдиране на запад"
#. d9n5U
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Екструдиране назад"
#. A2mcf
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Екструдиране на изток"
#. onGib
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Екструдиране на югозапад"
#. XLQFD
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Екструдиране на юг"
#. v5wRm
-#: include/svx/strings.hrc:1083
+#: include/svx/strings.hrc:1084
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Екструдиране на югоизток"
#. 4DGjm
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 см"
#. kRzVE
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 см"
#. CSmTh
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2,5 см"
#. eYrvo
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 см"
#. G4Ckx
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~см"
#. LGHsL
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 инча"
#. HPevm
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0,~5 инча"
#. GvKjC
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 инч"
#. gmzHb
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 инча"
#. DE5kt
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 инча"
#. K5dY9
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "Без запълване"
#. TFBK3
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "Прозрачен"
#. c7adj
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "По подразбиране"
#. djHis
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Кантове"
#. PURr6
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Стил на канта"
#. 9Ckww
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "Още номерации..."
#. cDG4s
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "Още водачи..."
#. uDT6G
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "По автор"
#. q2Le9
-#: include/svx/strings.hrc:1103
+#: include/svx/strings.hrc:1104
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Страници"
#. jfL9n
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Изчистване на форматирането"
#. f6nP8
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Още стилове..."
#. DPbrc
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Още настройки..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Име на шрифт"
#. SKCYy
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "Име на шрифт. Текущият шрифт не е налице и ще бъде заместен."
#. CVvXU
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "по избор"
#. xqzJj
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "Цветове на документа"
#. 6BoWp
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "Цвят на документа"
#. DJGyY
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Екструдиране"
#. TyWTi
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Прилагане на екструдиране - вкл./изкл."
#. DKFYE
-#: include/svx/strings.hrc:1116
+#: include/svx/strings.hrc:1117
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Накланяне надолу"
#. 2Rrxc
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Накланяне нагоре"
#. eDpJK
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Накланяне наляво"
#. CWDSN
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Накланяне надясно"
#. CxYgt
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Промяна на дълбочината на екструдиране"
#. c5JCp
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Промяна на ориентацията"
#. KDSyh
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Промяна на вида проекция"
#. JpzeS
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Промяна на осветлението"
#. j4AR9
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Промяна на яркостта"
#. yA2xm
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Промяна на повърхността на екструдиране"
#. DFEZP
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Промяна на цвета на екструдиране"
#. hXNfG
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXFLOAT3D_FAVORITE"
msgid "Favorite"
msgstr "Предпочитани"
#. uPyWe
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fontwork"
#. 7RVov
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Прилагане на форма на Fontwork"
#. h3CLw
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Прилагане на еднакви височини на букви на Fontwork"
#. 6h2dG
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Прилагане на подравняване на Fontwork"
#. eKHcV
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Прилагане на знакова разредка на Fontwork"
#. oo88Y
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "с"
#. 4sz83
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Стил"
#. fEHXC
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "и"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Избор на връх"
#. CUEEW
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Избор на връх."
#. cQmVp
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Горе вляво"
#. TtnJn
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Горе в средата"
#. UERVC
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Горе вдясно"
#. CznfN
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Отляво в средата"
#. jvzC7
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "В средата"
#. HPtYD
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Отдясно в средата"
#. v4SqB
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Долу вляво"
#. daA8a
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Долу в средата"
#. DGWf8
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Долу вдясно"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Избор на очертание"
#. aMva8
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Тук можете да редактирате очертанието."
#. DXEuF
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Избор на специален знак"
#. JfRzP
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "В тази област можете да изберете специален знак."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Знаков код "
#. HECeC
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Полето \"#\" е задължително. Моля, въведете стойност."
#. w4wm8
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Формуляри"
#. cz8aS
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Не е избрана контрола"
#. JG7Es
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Свойства: "
#. YQvBF
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Свойства на формуляр"
#. qS9Rn
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Навигатор за формуляри"
#. PzEVD
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Формуляр"
#. FWPxF
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "Скрит"
#. DnoDH
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Формуляр"
#. Ba4Gy
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Скрита контрола"
#. wtZqP
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Контрола"
#. HvXRK
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Запис"
#. HmTfB
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "от"
#. NZ68L
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Добавяне на поле:"
#. vGXiw
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Грешка при запис на данни в базата от данни"
#. zzFRi
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Синтактична грешка в израза на заявката"
#. fS8JJ
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "Ще бъде изтрит един запис."
#. Qb4Gk
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "Ще бъдат изтрити # записа."
#. zSJQe
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6553,331 +6559,337 @@ msgstr ""
"Желаете ли все пак да продължите?"
#. Kb7sF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Лента за навигация"
#. pKEQb
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Кол"
#. FXRKA
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Задаване на свойство \"#\""
#. hXjTN
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Вмъкване в контейнер"
#. BWpyC
-#: include/svx/strings.hrc:1185
+#: include/svx/strings.hrc:1186
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Изтриване на #"
#. ZeaDk
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Изтриване на обекти #"
#. VgGrE
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Замяна на контейнерен елемент"
#. FoXgt
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Замяна на контрола"
-#. V4iMu
-#: include/svx/strings.hrc:1189
-msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
-msgid "Push Button"
-msgstr "Бутон"
-
-#. TreFC
-#: include/svx/strings.hrc:1190
-msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
-msgid "Option Button"
-msgstr "Бутон за избор"
+#. ZGDAr
+#: include/svx/strings.hrc:1191
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr "Текстово поле"
#. CBmAL
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Поле за отметка"
-#. NFysA
-#: include/svx/strings.hrc:1192
-msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
-msgid "Label Field"
-msgstr "Поле за надпис"
-
-#. E5mMK
+#. xwuJF
#: include/svx/strings.hrc:1193
-msgctxt "RID_STR_PROPTITLE_GROUPBOX"
-msgid "Group Box"
-msgstr "Групираща рамка"
-
-#. ZGDAr
-#: include/svx/strings.hrc:1194
-msgctxt "RID_STR_PROPTITLE_EDIT"
-msgid "Text Box"
-msgstr "Текстово поле"
-
-#. DEn9D
-#: include/svx/strings.hrc:1195
-msgctxt "RID_STR_PROPTITLE_FORMATTED"
-msgid "Formatted Field"
-msgstr "Форматирано поле"
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr "Комбинирано поле"
#. WiNUf
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Списъчно поле"
-#. xwuJF
-#: include/svx/strings.hrc:1197
-msgctxt "RID_STR_PROPTITLE_COMBOBOX"
-msgid "Combo Box"
-msgstr "Комбинирано поле"
-
-#. 5474w
-#: include/svx/strings.hrc:1198
-msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
-msgid "Image Button"
-msgstr "Бутон с изображение"
-
-#. qT2Ed
-#: include/svx/strings.hrc:1199
-msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
-msgid "Image Control"
-msgstr "Поле за изображение"
-
-#. 6Qvho
-#: include/svx/strings.hrc:1200
-msgctxt "RID_STR_PROPTITLE_FILECONTROL"
-msgid "File Selection"
-msgstr "Избор на файл"
-
#. a7gAj
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Поле за дата"
#. EaBTj
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Поле за час"
#. DWfsm
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Числово поле"
#. TYjnr
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Поле за валута"
#. B6MEP
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Поле с маска"
-#. uEYBR
+#. DEn9D
+#: include/svx/strings.hrc:1200
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr "Форматирано поле"
+
+#. V4iMu
+#: include/svx/strings.hrc:1202
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr "Бутон"
+
+#. TreFC
+#: include/svx/strings.hrc:1203
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr "Бутон за избор"
+
+#. NFysA
+#: include/svx/strings.hrc:1204
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr "Поле за надпис"
+
+#. E5mMK
+#: include/svx/strings.hrc:1205
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr "Групираща рамка"
+
+#. 5474w
#: include/svx/strings.hrc:1206
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr "Бутон с изображение"
+
+#. qT2Ed
+#: include/svx/strings.hrc:1207
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr "Поле за изображение"
+
+#. 6Qvho
+#: include/svx/strings.hrc:1208
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr "Избор на файл"
+
+#. uEYBR
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Таблична контрола "
#. 3SUEn
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Плъзгач"
#. VtEN6
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Бутон - брояч"
#. eGgm4
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Лента за навигация"
#. yME46
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Групов избор"
+#. s94UU
+#: include/svx/strings.hrc:1215
+msgctxt "RID_STR_DATE_AND_TIME"
+msgid "Date and Time Field"
+msgstr "Поле за дата и час"
+
#. PzA5d
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "В текущия формуляр няма контроли, свързани с данни!"
#. ZyBEz
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Дата)"
#. guA5u
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Час)"
#. 2wgdY
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Навигатор на филтър"
#. BUYuD
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Филтър за"
#. AcTBB
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Или"
#. 6RPtu
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "В текущия формуляр няма валидни обвързани контроли, достъпни за използване в табличния изглед."
#. iEoGb
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<Автополе>"
#. Da6gx
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Синтактична грешка в оператора на SQL"
#. ZoEuu
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "Стойността на #1 не може да се използва с \"LIKE\"."
#. 75ECE
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "\"LIKE\" не може да се използва с това поле."
#. tzFv5
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "Въведената дата не е валидна. Моля, въведете дата във валиден формат, например ММ/ДД/ГГ."
#. y6Z26
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Полето не може да бъде сравнявано с цяло число."
#. F8FgA
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Базата от данни не съдържа таблица с име \"#\"."
#. EDcU7
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Базата от данни не съдържа нито таблица нито заявка с име \"#\"."
#. YBFF5
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "Базата от данни вече съдържа таблица или изглед с име \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "Базата от данни вече съдържа заявка с име \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Колоната \"#1\" не е известна в таблицата \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "Полето не може да бъде сравнявано с число с плаваща запетая."
#. CEg85
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Въведеният критерий не може да бъде сравняван с това поле."
#. ZGAAQ
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Навигатор на данни"
#. W4uM2
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (само за четене)"
#. DgfNh
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Файлът вече съществува. Презаписване?"
#. dSYCi
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1240
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object# етикет"
#. JpaM6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -6887,7 +6899,7 @@ msgstr ""
"Наистина ли желаете да изтриете този модел?"
#. y5Dyt
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -6897,7 +6909,7 @@ msgstr ""
"Наистина ли желаете да изтриете този екземпляр?"
#. VEzGF
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -6907,13 +6919,13 @@ msgstr ""
"Наистина ли желаете да изтриете този елемент?"
#. 3hF6H
-#: include/svx/strings.hrc:1239
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Наистина ли желаете да изтриете атрибута \"$ATTRIBUTENAME\"?"
#. AWEbJ
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -6924,7 +6936,7 @@ msgstr ""
"Наистина ли желаете да изтриете това изпращане?"
#. SGiK5
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -6935,1000 +6947,1000 @@ msgstr ""
"Наистина ли желаете да изтриете това обвързване?"
#. 2zzHP
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Името \"%1\" не е валидно в XML. Моля, въведете друго име."
#. 4nAtc
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Префиксът \"%1\" не е валиден в XML. Моля, въведете друг префикс."
#. qrFQD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Името \"%1\" вече съществува. Моля, въведете ново име."
#. DKkaw
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "Изпращането трябва да има име."
#. xcAaD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Нищо"
#. Bjxmg
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Екземпляр"
#. affmF
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Документ"
#. gJLHj
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Обвързване: "
#. AEHco
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Обръщение: "
#. iLaBC
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Действие: "
#. HBV5Q
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Метод: "
#. dAN2F
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Замяна: "
#. QMiqA
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Добавяне на елемент"
#. C9YBB
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Редактиране на елемент"
#. XAh7B
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Изтриване на елемент"
#. CLHER
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Добавяне на атрибут"
#. 6Ycoo
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Редактиране на атрибут"
#. 6dSAd
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Изтриване на атрибут"
#. Ljhja
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Добавяне на обвързване"
#. CHTrw
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Редактиране на обвързване"
#. yYwEG
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Изтриване на обвързване"
#. yVch8
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Ново подаване"
#. AX58u
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Редактиране на подаване"
#. DFxmD
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Изтриване на подаване"
#. qvvD7
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Елемент"
#. U4Btb
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Атрибут"
#. Prceg
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Обвързване"
#. iFARB
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Израз за обвързване"
#. BTmNa
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1280
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "Наистина ли желаете да отстраните данните за възстановяване на документ от %PRODUCTNAME?"
#. 5WjQZ
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1282
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Отляво"
#. JC7pc
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1283
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Отдясно"
#. MhfuC
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1284
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Центрирано"
#. kX7GR
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1285
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Десетични числа"
#. 7vecp
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1287
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "Режим на вмъкване. Щракнете за режим на заместване."
#. ZCWNC
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1288
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "Режим на заместване. Щракнете за режим на вмъкване."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1290
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Заместване"
#. qqCSF
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1291
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Вмъкване"
#. Dh5A2
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Цифров подпис: подписът на документа е правилен."
#. xZprv
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1293
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Цифров подпис: подписът на документа е правилен, но валидността на сертификатите не може да бъде проверена."
#. Yydkh
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1294
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr "Цифров подпис: подписът на документа не съответства на съдържанието му. Силно ви препоръчваме да не се доверявате на този документ."
#. X7CjP
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1295
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Цифров подпис: документът не е подписан."
#. BRmFY
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1296
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Цифров подпис: подписът на документа и сертификата са правилни, но не всички части от документа са подписани."
#. Swq5S
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1297
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Документът е бил променен. Щракнете, за да се запише."
#. tRWKa
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1298
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "Документът не е променян след последното записване."
#. 7C8GH
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1299
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Документът се зарежда..."
#. YbNsP
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1300
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Побиране на кадъра в текущия прозорец."
#. Fpkx2
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1301
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Не бе възможно да се заредят всички обекти SmartArt. Проблемът може да се избегне чрез записване с Microsoft Office 2010 или по-нов."
#. Bc5Sg
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1302
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "Мащаб. Щракнете с десния бутон, за да смените мащаба, или с левия, за да отворите диалога „Мащаб“."
#. HCjAM
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Увеличаване на мащаба"
#. 2YBJE
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Намаляване на мащаба"
#. n9EyG
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1305
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75 %"
#. 2Bufm
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1304
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Цялата страница"
#. 2UBAF
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Ширина на страницата"
#. YBg9X
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Оптимален изглед"
#. Wi5Fy
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Включително стиловете"
#. BJSzf
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Абзацни стилове"
#. ARuQM
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Стилове за клетки"
#. 7ChAu
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "Търсене на формат"
#. K6Ave
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "Замяна с формат"
#. USdBy
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "Достигнат е краят на документа"
#. CVSwo
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "Достигнат е краят на документа, продължава се от началото"
#. yCJzd
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "Достигнат е краят на листа"
#. Diftw
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Търсеният низ не е намерен"
#. xACuY
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Не е намерен елемент за навигация"
#. CGo5w
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "Достигнато е началото на документа"
#. nDCC4
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "Достигнато е началото на документа, продължава се от края"
#. FNdxE
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr "Достигнато е първото напомняне, продължава се от последното."
#. hAzCn
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr "Достигнато е последното напомняне, продължава се от първото."
#. ihDqY
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Цветова палитра"
#. sDL47
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Замяна на цветове"
#. 7FcWA
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "Триизмерни ефекти"
#. j6dA6
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Невалидна парола"
#. JGJ9F
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Паролите не съвпадат"
#. VHTRb
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Водачи - запълнени точки"
#. AiNrB
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Водачи - запълнени кръгове"
#. Vtk8J
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Водачи - запълнени ромбове"
#. bQFBw
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Водачи - запълнени квадрати"
#. 5eJDd
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Водачи - запълнени стрелки надясно"
#. D8zQC
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Водачи - стрелки надясно"
#. QCULV
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "Водачи - хиксове"
#. XuXC7
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "Водачи - отметки"
#. cUEoG
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Номера 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Номера 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Номера (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Римски числа с главни букви I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Главни букви A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Малки букви a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Малки букви (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Римски числа с малки букви i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Числа, числа, малки букви, запълнени точки"
#. m56fN
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Числа, малки букви, запълнени точки"
#. RyTLW
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Числа, малки букви, римски числа с малки букви, главни букви, запълнени точки"
#. GAfTp
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Числа"
#. gjEgN
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Римски числа с главни букви, главни букви, римски числа с малки букви, малки букви, запълнени точки"
#. DZ2kE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Главни букви, римски числа с главни букви, малки букви, римски числа с малки букви, запълнени точки"
#. TV9Mc
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Числа за всички поднива"
#. tiXu5
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Къси стрелки надясно, стрелки надясно, запълнени ромбове, запълнена точки"
#. nEJiF
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Създаването на ZIP файла бе невъзможно."
#. CC6Sw
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Стилове за дизайн на таблица"
#. c69eB
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Действия за отмяна: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Действия за отмяна: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Действия за възстановяване: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Действия за възстановяване: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Търсене"
#. WbEFL
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Зачитане на регистъра"
#. 59ENV
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "Зачитане на формàта"
#. vYw6p
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1376
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) пкс)"
#. JEkzY
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1377
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) на $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1378
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) кБ"
#. Xgeqc
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1379
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr "$(CAPACITY) кБ (с $(REDUCTION) % намаляване)"
#. 8GqWz
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1380
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "GIF изображение"
#. G2q7M
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1381
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "JPEG изображение"
#. oGKBg
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1382
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "PNG изображение"
#. Fkrjs
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "TIFF изображение"
#. VWyEb
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "WMF изображение"
#. pCpoE
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "MET изображение"
#. DELaB
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "PICT изображение"
#. 3AZAG
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "SVG изображение"
#. aCEJW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "BMP изображение"
#. p2L8C
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Непознато"
#. 8LBFX
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1391
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Превключвател"
#. xLF42
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Режим на изображението"
#. fw5hA
-#: include/svx/strings.hrc:1388
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Червено"
#. CiQvY
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Зелено"
#. BhvBe
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Синьо"
#. HSP36
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Яркост"
#. w5BYP
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Контраст"
#. EZUjS
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Гама"
#. ernMB
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Прозрачност"
#. LdkNB
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Подрязване"
#. TJmBu
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Подразбирана ориентация"
#. WQqju
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1404
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "От горе надолу"
#. ipfz6
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "От долу нагоре"
#. MLR44
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "С натрупване"
#. vUDeh
-#: include/svx/strings.hrc:1401
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Ляво поле: "
#. EFBbE
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Горно поле: "
#. 7HeyP
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1409
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Дясно поле: "
#. HCuWQ
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Долно поле: "
#. zD9BB
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Описание на страницата: "
#. a4eSJ
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Главни букви"
#. DuQGP
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1413
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Малки букви"
#. nWQ7R
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1414
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Римски цифри, главни"
#. PxkPZ
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1415
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Римски цифри, малки"
#. B7YEa
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1416
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Арабски"
#. vPbGB
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1417
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Няма"
#. akGGo
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1418
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Пейзаж"
#. bbcaZ
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1419
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Портрет"
#. BQtGg
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1420
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Ляво"
#. JWFLj
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Дясно"
#. bxvGx
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Всички"
#. S3nm4
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Огледално"
#. dcvEJ
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Автор: "
#. 2siC9
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Дата: "
#. pWoLe
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Текст: "
#. pAABc
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Фон на знаците"
#. Deknh
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1429
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Цветова палитра"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1432
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr "Номера на кадрите:"
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -7938,1990 +7950,2093 @@ msgstr ""
"Искате ли вместо това да се запише промененото изображение?"
#. KycVH
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1437
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Основна латиница"
#. bcjRA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1438
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Латиница-1"
#. h6THj
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1439
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Разширена латиница-A"
#. o4EF9
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1440
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Разширена латиница-B"
#. W3CGs
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1441
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "Разширения за IPA"
#. yZjF6
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1442
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Знаци, променящи разредката"
#. EASZR
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1443
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Диакритични знаци"
#. wBjC4
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1444
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Основен гръцки"
#. Dh8Es
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1445
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Гръцки и коптски символи"
#. jGT5E
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1446
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Кирилица"
#. DQgLS
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1447
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Арменски"
#. kXEQY
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1448
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Основен иврит"
#. Cb8g4
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1449
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Разширен иврит"
#. ZmDCd
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1450
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Основен арабски"
#. hZDFV
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1451
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Разширен арабски"
#. c3CqD
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1452
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Деванагари"
#. EfVnG
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1453
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Бенгалски"
#. iWzLc
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1454
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Гурмукхи"
#. omacG
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1455
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Гуджарати"
#. Cdwzw
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1456
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Одия"
#. BhEGN
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1457
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Тамилски"
#. 6YkEo
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1458
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Телугу"
#. J5qn4
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1459
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Каннада"
#. 4UEFU
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1460
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Малаялам"
#. C5yzo
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1461
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Тайски"
#. EvjbD
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1462
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Лаоски"
#. HqFTh
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1463
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Основен грузински"
#. npAc8
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1464
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Разширен грузински"
#. AHAB4
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Хангъл джамо"
#. gMEFL
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Допълнителна разширена латиница"
#. uVYXp
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Разширен гръцки"
#. LEQg6
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Обща пунктуация"
#. D9KFj
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Горни и долни индекси"
#. yaxYV
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Валутни символи"
#. jzA5i
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Комбинирани диакритични символи"
#. CHNBZ
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Буквоподобни символи"
#. cDkEd
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Числови символи"
#. j25Fp
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Стрелки"
#. p5Tbx
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Математически оператори"
#. ckgof
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Разни технически знаци"
#. 8rXdw
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Картини за управление"
#. D4J8A
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Оптично разпознаване на знаци"
#. hXwgf
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Оградени буквено-цифрови"
#. AD9HJ
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Рисуване на рамки"
#. vViaR
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Елементи за запълване"
#. ok7ks
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Геометрични фигури"
#. sKty5
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Разни символи"
#. yDpNT
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Символи Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "КЯК – символи и пунктуация"
#. Bo4iK
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Хирагана"
#. i2Cdr
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Катакана"
#. 9YYLD
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Бопомофо"
#. F9UFG
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Хангъл джамо (съвместимост)"
#. yeRDE
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "КЯК – разни"
#. kPFs9
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "КЯК – оградени букви и месеци"
#. 6tAx6
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "КЯК – съвместимост"
#. VakXP
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Хангъл"
#. XzS6D
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "КЯК – унифицирани идеограми"
#. JVCP5
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "КЯК – унифицирани идеограми, разширение A"
#. Y33VK
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Област за частно използване"
#. 8yYiM
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "КЯК – йероглифи за съвместимост"
#. BEfFQ
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Азбучни форми на представяне"
#. NCsAG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Арабски форми на представяне-A"
#. adi8G
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Половинки знаци за комбиниране"
#. vLBhn
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "КЯК – форми за съвместимост"
#. i6R3B
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Малки варианти на форми"
#. 7EDCh
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Арабски форми на представяне-B"
#. WWoWx
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Форми с половин и пълна ширина"
#. dkDXh
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Специални"
#. GQSEx
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Срички на носу"
#. BL66x
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Радикали на носу"
#. cuQ2k
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Староиталийски"
#. wtKAB
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Готически"
#. GPFqC
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Дезерет"
#. 7AovD
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Византийски музикални символи"
#. G3GQF
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Музикални символи"
#. YzBDD
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Математически буквено-цифрови символи"
#. 3XZRw
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "КЯК – унифицирани идеограми, разширение B"
#. nZnQc
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "КЯК – унифицирани идеограми, разширение C"
#. HBwZE
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "КЯК – унифицирани идеограми, разширение D"
#. TTFkh
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "КЯК – идеограми за съвместимост, допълнение"
#. 2jALB
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Етикети"
#. 2iHJN
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Кирилица – допълнение"
#. ABgr9
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Избор на вариант"
#. a4q6S
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Допълнителна област за частно използване-A"
#. k638K
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Допълнителна област за частно използване-В"
#. pKFTg
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Лимбу"
#. TJHGp
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Тай ле"
#. nujxa
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Кхмерски символи"
#. neD93
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Фонетични разширения"
#. C6LwC
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Разни символи и стрелки"
#. giR4r
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Старокитайски хексаграмни символи"
#. EqFxm
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Линейна сричкова азбука B"
#. VeZNe
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Линейни идеограми B"
#. Tvkgh
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Егейски числа"
#. CuThH
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Угаритски"
#. nBtk5
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Знаци на Бърнард Шоу"
#. vvMNk
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Османия"
#. aiySp
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Синхала"
#. PEGiu
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Тибетски"
#. tRBTP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Мианмар"
#. 8sgGF
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Кхмерски"
#. CdXvH
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Огам"
#. jFWRQ
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Рунически"
#. jhzoc
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Древносирийски"
#. B66QG
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Таана"
#. j8cuG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Етиопски"
#. AE5wq
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Чероки"
#. 9mgNF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Сричков аборигенски канадски"
#. d5JWE
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Монголски"
#. XnzyB
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Разни математически символи-A"
#. R5W9H
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Допълнителни стрелки-A"
#. QYf7A
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Брайлова азбука"
#. 63BBg
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Допълнителни стрелки-B"
#. ykowm
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Разни математически символи-B"
#. GGdze
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "КЯК – допълнителни радикали"
#. WLLAP
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Канджи – радикали"
#. EyZR2
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Идеографски описателни знаци"
#. o3AQ6
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Тагалог"
#. BVieL
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Хануну"
#. DwAEz
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Тагбануа"
#. 3GDP5
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Бухид"
#. BfGBm
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Канбун"
#. cL7Vo
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Разширен бопомофо"
#. MQoBs
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Катакана – фонетична"
#. fCpRM
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "КЯК – щрихи"
#. zyW2q
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Кипърска сричкова азбука"
#. GWxb8
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Символи Тай Сюен Дзин"
#. 8ZJmr
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Избор на вариант – допълнение"
#. RR6Er
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Древногръцки музикални знаци"
#. K3GsF
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Древногръцки числа"
#. y4HCg
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Арабски – допълнение"
#. KUnXb
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Бугиски"
#. zDaXa
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Комбиниращи диакритични знаци – допълнение"
#. 9Z24A
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Коптски"
#. CANHf
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Разширен етиопски"
#. X8DEc
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Етиопски – допълнение"
#. fYpFz
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Грузински – допълнение"
#. 3Gzxx
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Глаголица"
#. zKCVG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Карощи"
#. U8zrU
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Знаци, променящи тоновете"
#. B2yF8
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Нов тай лю"
#. J4KdA
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Староперсийски"
#. eGPjC
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Фонетични разширения – допълнение"
#. XboFE
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Пунктуация – допълнение"
#. tBJi3
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Силоти нагри"
#. Qrowh
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Тифинаг"
#. aZKS5
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Вертикални форми"
#. ihUDF
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Нко"
#. Z3AAi
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Балийски"
#. 428ER
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Разширена латиница-C"
#. SqFfT
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Разширена латиница-D"
#. yMmow
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Фагс па"
#. V6CsB
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Финикийски"
#. GNBwz
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Клинопис"
#. VBPZE
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Клинописни числа и пунктуация"
#. 9msGJ
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Китайски числа на рабош"
#. i6Gx9
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Сундански"
#. WrXXX
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Лепча"
#. FhhAQ
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ол чики – санталски"
#. eHvUh
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Разширена кирилица-A"
#. ZkKwE
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Вай"
#. pBASG
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Разширена кирилица-B"
#. GoQpd
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Саураштра"
#. 6pufg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Кая ли"
#. bmFny
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Режанг"
#. EaXay
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Чам"
#. qYaAV
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Древни символи"
#. At8Tk
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Дискът от Фестос"
#. ryGAF
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Ликийски"
#. EYLa8
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Карийски"
#. TPN6m
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Лидийски"
#. G5GLd
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Плочки за маджонг"
#. EyMaF
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Плочки за домино"
#. r2YQs
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Самаритски"
#. feZ2Q
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Разширени унифицирани срички на канадските аборигени"
#. H4FpF
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Тай тхам"
#. BgKLG
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Ведически разширения"
#. bVNYf
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Лису"
#. riEM3
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Бамум"
#. CQMqK
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Общи индийски числови форми"
#. gDEUp
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Разширена деванагари"
#. UsAq2
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Разширена хангъл джамо-A"
#. g5H7j
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Явански"
#. upBjC
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Разширена мианмар-A"
#. GQ3XX
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Тай виет"
#. HGVSu
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Мейтей майек"
#. ryvor
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Разширена хангъл джамо-B"
#. RTxUc
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Имперски арамейски"
#. 7E6G8
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Стар южноарабски"
#. Ab3wu
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Авестийски"
#. 5gN8e
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Партски"
#. D7rcV
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Пахлави"
#. d44Dq
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Старотюркски"
#. CLuJC
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Цифрови знаци руми"
#. FpFeH
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Кайтхи"
#. Swfzy
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Египетски йероглифи"
#. bMYVC
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Букви и цифри в кръгче – допълнение"
#. Dqcpa
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Заградени идеограми – допълнение"
#. 8eCZn
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Мандайски"
#. 8LVFp
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Батак"
#. 9SrgK
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Разширен етиопски-А"
#. cQEzt
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Брахми"
#. n4oND
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Бамум – допълнение"
#. xibkG
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Кана – допълнение"
#. xyswt
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Карти за игра"
#. TqExt
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Разни знаци и пиктограми"
#. wtMts
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Емотикони"
#. WgGuX
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Транспортни и картографски символи"
#. fBitP
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Алхимически символи"
#. CWvjP
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Разширен арабски-А"
#. D7mEf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Арабски математически азбучни символи"
#. 8ouWH
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Чакма"
#. z3gG4
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Разширения на мейтей майек"
#. mFAeA
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Ръкописен мероитски"
#. b5m8K
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Мероитски йероглифи"
#. Xrkei
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Миао"
#. hG9Na
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Шарада"
#. rTKpL
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Сора сомпенг"
#. CAKEC
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Судански – допълнение"
#. pTsMT
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Такри"
#. HNCk9
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Баса"
#. GWufB
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Кавказки албански"
#. t8Bfn
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Коптски епактични числа"
#. kAeYs
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Разширени комбиниращи диакритични знаци"
#. 8TGuM
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Система на Дюплойе"
#. Yaq3z
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Елбасанска азбука"
#. QmkME
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Разширени геометрични фигури"
#. R9PgF
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Грантха"
#. tpSqU
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Ходжки"
#. 4pjBM
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Худавади"
#. GoPep
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Разширена латиница-E"
#. wNozk
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Линеар А"
#. SjAev
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Махаджани"
#. CA7vw
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Манихейска азбука"
#. UUKC4
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Менде кикакуи"
#. ZhzBz
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Моди"
#. jC4Ue
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Мро"
#. TiWmd
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Разширена мианмар-B"
#. y7tCX
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Набатейска азбука"
#. T29Cw
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Стар северноарабски"
#. EZADa
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Старопермски"
#. 9oFL2
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Орнаменти"
#. TYGv3
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Пахау хмонг"
#. wd8bD
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Палмирска азбука"
#. dkSnn
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Пау чин хау"
#. bts3U
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Псалтирен пахлави"
#. XSwsB
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Форматиране на стенография"
#. rdXCX
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Сидхам"
#. GwT8c
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Синхала – архаични числа"
#. mz3Cs
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Допълнителни стрелки-C"
#. iGUzh
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Тирхута"
#. HRBEN
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Варанг кшити"
#. 9NCBd
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ахам"
#. cPJhp
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Анатолийски йероглифи"
#. GAd7H
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Чероки – допълнение"
#. TDgY4
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "КЯК – унифицирани идеограми, разширение E"
#. ho93C
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Раннодинастичен клинопис"
#. La5yr
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Азбука от Хатра"
#. e3aXA
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Сераики"
#. D6qsK
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Староунгарски"
#. aVhdm
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Допълнителни символи и пиктограми"
#. B6UHz
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Жестово писмо на Сътън"
#. rFgRw
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Адлам"
#. F2AJT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Бхайкшуки"
#. zDLT2
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Разширена кирилица-C"
#. S69GG
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Глаголица – допълнение"
#. QeCxG
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Идеографски символи и пунктуация"
#. 45hVB
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Марчен"
#. Mr7RB
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Монголски – допълнение"
#. RTgGA
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Нева"
#. JJrpR
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Осейдж"
#. o3qMt
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Тангутски"
#. nRMFd
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Тангутски компоненти"
#. uFMWt
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "КЯК – унифицирани идеограми, разширение F"
#. DH39v
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Разширени кана-A"
#. jPSFu
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Масарам гонди"
#. TGJHU
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Нюшу"
#. DHbMR
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Сойомбо"
#. gPnhH
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Сирийска азбука – допълнение"
#. rbMNp
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "Квадратна азбука на Занабазар"
#. i5evF
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "Шахматни символи"
#. BYA5Y
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr "Догра"
#. xDvRL
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr "Гунджала гонди"
#. uzq7e
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr "Ханифи рохингя"
#. FAwvP
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr "Индийски числа сияк"
#. TYjtp
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "Макасар"
#. abFR5
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Числа на маите"
#. aDjHx
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "Медефайдрин"
#. qMf5N
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "Стар согдийски"
#. rUG8e
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "Согдийски"
#. B6UKP
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr "Управление на формат на египетски йероглифи"
#. YBxAE
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr "Елимейски"
#. ibmgu
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr "Нандинагари"
#. 8A7FD
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr "Някенг Пуачуе Хмонг"
#. DajDi
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr "Османски числа сияк"
#. FAb6M
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr "Разширение за малки кана"
#. bmviu
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr "Разширени символи и пиктограми-A"
#. SmFqD
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr "Тамилски – допълнение"
#. qNixg
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr "Уанчо"
#. EDpqy
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr "Хорезмийски"
#. EH9Xf
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr "КЯК – унифицирани идеограми, разширение G"
#. wBzzY
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr "Дивес акуру"
#. CX5R4
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr "Малко киданско писмо"
#. onKAu
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr "Лису – допълнение"
#. yMTF4
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr "Символи от остарели компютри"
#. SZmB5
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr "Тангутски – допълнение"
#. zxpCG
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr "Езидска писменост"
#. BGGvD
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1746
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "От ляво надясно"
#. Ct9UG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1747
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "От дясно наляво"
#. XFhAz
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1748
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "Настройки от родителския обект"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1750
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "От ляво надясно (хоризонтално)"
#. b6Guf
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1751
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "От дясно наляво (хоризонтално)"
#. yQGoC
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1752
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "От дясно наляво (вертикално)"
#. k7B2r
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1753
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "От ляво надясно (вертикално)"
#. DF4B8
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1754
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "От долу нагоре, от ляво надясно (вертикално)"
#. siSmL
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1756
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Fontwork"
#. Eg8QT
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1758
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr "Подписано цифрово от:"
#. NyP2E
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1759
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr "Дата: %1"
#. gsDhD
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1761
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
-msgstr ""
+msgstr "Прозрачност:"
+
+#. zvqUJ
+#. strings related to borders
+#: include/svx/strings.hrc:1765
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr "Премахване на кантовете"
+
+#. ABKEK
+#: include/svx/strings.hrc:1766
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr "Задаване само на външни кантове"
+
+#. ygU8P
+#: include/svx/strings.hrc:1767
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Задаване на външни кантове и хоризонтални линии"
+
+#. q5KJ8
+#: include/svx/strings.hrc:1768
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Задаване на външни кантове и всички вътрешни линии"
+
+#. TFuZb
+#: include/svx/strings.hrc:1769
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
+msgid "Set Outer Border and Vertical Lines"
+msgstr "Задаване на външни кантове и вертикални линии"
+
+#. H5s9X
+#: include/svx/strings.hrc:1770
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Задаване на външни кантове без промяна на вътрешните линии"
+
+#. T5crG
+#: include/svx/strings.hrc:1771
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr "Задаване само на диагонални линии"
+
+#. S6AAA
+#: include/svx/strings.hrc:1772
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr "Задаване на всичките четири канта"
+
+#. tknFJ
+#: include/svx/strings.hrc:1773
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr "Задаване само на ляв и десен кант"
+
+#. hSmnW
+#: include/svx/strings.hrc:1774
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr "Задаване само на горен и долен кант"
+
+#. DsEAB
+#: include/svx/strings.hrc:1775
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
+msgid "Set Top and Bottom Borders, and All Horizontal Lines"
+msgstr "Задаване на горен и долен кант и всички хоризонтални линии"
+
+#. Dy2UG
+#: include/svx/strings.hrc:1776
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr "Задаване само на ляв кант"
+
+#. yF8RP
+#: include/svx/strings.hrc:1777
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
+msgid "Set Right Border Only"
+msgstr "Задаване само на десен кант"
+
+#. E2jZj
+#: include/svx/strings.hrc:1778
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
+msgid "Set Top Border Only"
+msgstr "Задаване само на горен кант"
+
+#. 7ixEC
+#: include/svx/strings.hrc:1779
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
+msgid "Set Bottom Border Only"
+msgstr "Задаване само на долен кант"
+
+#. nCjXG
+#: include/svx/strings.hrc:1780
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Задаване на горен и долен кант и всички вътрешни линии"
+
+#. 46Fq7
+#: include/svx/strings.hrc:1781
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Задаване на ляв и десен кант и всички вътрешни линии"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. oFcMf
#: include/svx/svxitems.hrc:33
@@ -10703,7 +10818,7 @@ msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Диагонален кант от долу вляво до горе вдясно"
-#. RTu5D
+#. Xx2Fj
#. --------------------------------------------------------------------
#. Description: API names for Paragraph, Character
#. and Text cursor values
@@ -10711,14 +10826,32 @@ msgstr "Диагонален кант от долу вляво до горе в
#. Node names
#: svx/inc/inspectorvalues.hrc:21
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Normal"
+msgstr "Обикновен"
+
+#. d2zEw
+#: svx/inc/inspectorvalues.hrc:22
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Bold"
+msgstr "Получер"
+
+#. jjrLz
+#: svx/inc/inspectorvalues.hrc:23
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
+msgid "Italic"
+msgstr "Курсив"
+
+#. RTu5D
+#: svx/inc/inspectorvalues.hrc:25
+msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
-msgstr ""
+msgstr "Не"
#. 67Lpi
-#: svx/inc/inspectorvalues.hrc:22
+#: svx/inc/inspectorvalues.hrc:26
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "True"
-msgstr ""
+msgstr "Да"
#. hPpj7
#. SVX_NUM_NUMBER_NONE
@@ -12500,7 +12633,7 @@ msgstr "Отхвърля всички промени и премахва осв
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:103
msgctxt "acceptrejectchangesdialog|undo"
msgid "_Undo"
-msgstr ""
+msgstr "Отмяна"
#. phEJs
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110
@@ -13606,176 +13739,44 @@ msgctxt "colsmenu|insert"
msgid "Insert _Column"
msgstr "Вмъкване на колона"
-#. FNNwu
-#: svx/uiconfig/ui/colsmenu.ui:22
-msgctxt "colsmenu|TextField"
-msgid "Text Box"
-msgstr "Текстово поле"
-
-#. kNikA
-#: svx/uiconfig/ui/colsmenu.ui:30
-msgctxt "colsmenu|CheckBox"
-msgid "Check Box"
-msgstr "Поле за отметка"
-
-#. Qdrt5
-#: svx/uiconfig/ui/colsmenu.ui:38
-msgctxt "colsmenu|ComboBox"
-msgid "Combo Box"
-msgstr "Комбинирано поле"
-
-#. 53iWp
-#: svx/uiconfig/ui/colsmenu.ui:46
-msgctxt "colsmenu|ListBox"
-msgid "List Box"
-msgstr "Списъчно поле"
-
-#. 4qWsS
-#: svx/uiconfig/ui/colsmenu.ui:54
-msgctxt "colsmenu|DateField"
-msgid "Date Field"
-msgstr "Поле за дата"
-
-#. YKM9S
-#: svx/uiconfig/ui/colsmenu.ui:62
-msgctxt "colsmenu|TimeField"
-msgid "Time Field"
-msgstr "Поле за час"
-
-#. JzSUN
-#: svx/uiconfig/ui/colsmenu.ui:69
-msgctxt "colsmenu|NumericField"
-msgid "Numeric Field"
-msgstr "Числово поле"
-
-#. W6Qy7
-#: svx/uiconfig/ui/colsmenu.ui:76
-msgctxt "colsmenu|CurrencyField"
-msgid "Currency Field"
-msgstr "Поле за валута"
-
-#. 6TGGk
-#: svx/uiconfig/ui/colsmenu.ui:84
-msgctxt "colsmenu|PatternField"
-msgid "Pattern Field"
-msgstr "Поле с маска"
-
-#. YdCYM
-#: svx/uiconfig/ui/colsmenu.ui:92
-msgctxt "colsmenu|FormattedField"
-msgid "Formatted Field"
-msgstr "Форматирано поле"
-
-#. fWsc3
-#: svx/uiconfig/ui/colsmenu.ui:100
-msgctxt "colsmenu|dateandtimefield"
-msgid "Date and Time Field"
-msgstr "Поле за дата и час"
-
#. WmdqY
-#: svx/uiconfig/ui/colsmenu.ui:112
+#: svx/uiconfig/ui/colsmenu.ui:26
msgctxt "colsmenu|change"
msgid "_Replace with"
msgstr "Замяна с"
-#. WPsfG
-#: svx/uiconfig/ui/colsmenu.ui:122
-msgctxt "colsmenu|TextField1"
-msgid "Text Box"
-msgstr "Текстово поле"
-
-#. 5nQrC
-#: svx/uiconfig/ui/colsmenu.ui:130
-msgctxt "colsmenu|CheckBox1"
-msgid "Check Box"
-msgstr "Поле за отметка"
-
-#. qrGhp
-#: svx/uiconfig/ui/colsmenu.ui:138
-msgctxt "colsmenu|ComboBox1"
-msgid "Combo Box"
-msgstr "Комбинирано поле"
-
-#. 5fQ6D
-#: svx/uiconfig/ui/colsmenu.ui:146
-msgctxt "colsmenu|ListBox1"
-msgid "List Box"
-msgstr "Списъчно поле"
-
-#. J9BGA
-#: svx/uiconfig/ui/colsmenu.ui:154
-msgctxt "colsmenu|DateField1"
-msgid "Date Field"
-msgstr "Поле за дата"
-
-#. 2XDSf
-#: svx/uiconfig/ui/colsmenu.ui:162
-msgctxt "colsmenu|TimeField1"
-msgid "Time Field"
-msgstr "Поле за час"
-
-#. wZn2o
-#: svx/uiconfig/ui/colsmenu.ui:170
-msgctxt "colsmenu|NumericField1"
-msgid "Numeric Field"
-msgstr "Числово поле"
-
-#. CtBKi
-#: svx/uiconfig/ui/colsmenu.ui:178
-msgctxt "colsmenu|CurrencyField1"
-msgid "Currency Field"
-msgstr "Поле за валута"
-
-#. cjDMJ
-#: svx/uiconfig/ui/colsmenu.ui:186
-msgctxt "colsmenu|PatternField1"
-msgid "Pattern Field"
-msgstr "Поле с маска"
-
-#. rKVaN
-#: svx/uiconfig/ui/colsmenu.ui:194
-msgctxt "colsmenu|FormattedField1"
-msgid "Formatted Field"
-msgstr "Форматирано поле"
-
-#. EH9hj
-#: svx/uiconfig/ui/colsmenu.ui:202
-msgctxt "colsmenu|dateandtimefield1"
-msgid "Date and Time Field"
-msgstr "Поле за дата и час"
-
#. ubWjL
-#: svx/uiconfig/ui/colsmenu.ui:214
+#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
msgstr "Изтриване на колона"
#. 7CkSW
-#: svx/uiconfig/ui/colsmenu.ui:222
+#: svx/uiconfig/ui/colsmenu.ui:48
msgctxt "colsmenu|hide"
msgid "_Hide Column"
msgstr "Скриване на колона"
#. r24Fu
-#: svx/uiconfig/ui/colsmenu.ui:230
+#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
msgstr "Показване на колони"
#. FGgJL
-#: svx/uiconfig/ui/colsmenu.ui:240
+#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
msgstr "Още..."
#. JtMyQ
-#: svx/uiconfig/ui/colsmenu.ui:254
+#: svx/uiconfig/ui/colsmenu.ui:80
msgctxt "colsmenu|all"
msgid "_All"
msgstr "Всички"
#. frYiv
-#: svx/uiconfig/ui/colsmenu.ui:266
+#: svx/uiconfig/ui/colsmenu.ui:92
msgctxt "colsmenu|column"
msgid "Column..."
msgstr "Колона..."
@@ -13930,126 +13931,6 @@ msgctxt "compressgraphicdialog|label1"
msgid "Image Information"
msgstr "Информация за изображението"
-#. xC6CF
-#: svx/uiconfig/ui/convertmenu.ui:13
-msgctxt "convertmenu|ConvertToEdit"
-msgid "_Text Box"
-msgstr "Текстово поле"
-
-#. dNCdC
-#: svx/uiconfig/ui/convertmenu.ui:22
-msgctxt "convertmenu|ConvertToButton"
-msgid "_Button"
-msgstr "Бутон"
-
-#. erFDb
-#: svx/uiconfig/ui/convertmenu.ui:31
-msgctxt "convertmenu|ConvertToFixed"
-msgid "La_bel field"
-msgstr "Поле за етикет"
-
-#. wbt9B
-#: svx/uiconfig/ui/convertmenu.ui:40
-msgctxt "convertmenu|ConvertToGroup"
-msgid "G_roup Box"
-msgstr "Групираща рамка"
-
-#. azmHW
-#: svx/uiconfig/ui/convertmenu.ui:49
-msgctxt "convertmenu|ConvertToList"
-msgid "L_ist Box"
-msgstr "Списъчно поле"
-
-#. Ze7aC
-#: svx/uiconfig/ui/convertmenu.ui:58
-msgctxt "convertmenu|ConvertToCheckBox"
-msgid "_Check Box"
-msgstr "Поле за отметка"
-
-#. sDyyy
-#: svx/uiconfig/ui/convertmenu.ui:67
-msgctxt "convertmenu|ConvertToRadio"
-msgid "_Radio Button"
-msgstr "Бутон за избор"
-
-#. cESHD
-#: svx/uiconfig/ui/convertmenu.ui:76
-msgctxt "convertmenu|ConvertToCombo"
-msgid "Combo Bo_x"
-msgstr "Комбинирано поле"
-
-#. 39DBz
-#: svx/uiconfig/ui/convertmenu.ui:85
-msgctxt "convertmenu|ConvertToImageBtn"
-msgid "I_mage Button"
-msgstr "Бутон с изображение"
-
-#. 9gMrG
-#: svx/uiconfig/ui/convertmenu.ui:94
-msgctxt "convertmenu|ConvertToFileControl"
-msgid "_File Selection"
-msgstr "Избор на файл"
-
-#. Vi9BD
-#: svx/uiconfig/ui/convertmenu.ui:103
-msgctxt "convertmenu|ConvertToDate"
-msgid "_Date Field"
-msgstr "Поле за дата"
-
-#. Yv4AA
-#: svx/uiconfig/ui/convertmenu.ui:112
-msgctxt "convertmenu|ConvertToTime"
-msgid "Tim_e Field"
-msgstr "Поле за час"
-
-#. 2DXAo
-#: svx/uiconfig/ui/convertmenu.ui:121
-msgctxt "convertmenu|ConvertToNumeric"
-msgid "_Numerical Field"
-msgstr "Числово поле"
-
-#. BagLi
-#: svx/uiconfig/ui/convertmenu.ui:130
-msgctxt "convertmenu|ConvertToCurrency"
-msgid "C_urrency Field"
-msgstr "Поле за валута"
-
-#. LcPgN
-#: svx/uiconfig/ui/convertmenu.ui:139
-msgctxt "convertmenu|ConvertToPattern"
-msgid "_Pattern Field"
-msgstr "Поле с маска"
-
-#. ht7G5
-#: svx/uiconfig/ui/convertmenu.ui:148
-msgctxt "convertmenu|ConvertToImageControl"
-msgid "Ima_ge Control"
-msgstr "Поле за изображение"
-
-#. YXEAz
-#: svx/uiconfig/ui/convertmenu.ui:157
-msgctxt "convertmenu|ConvertToFormatted"
-msgid "Fo_rmatted Field"
-msgstr "Форматирано поле"
-
-#. FtKsQ
-#: svx/uiconfig/ui/convertmenu.ui:166
-msgctxt "convertmenu|ConvertToScrollBar"
-msgid "Scroll bar"
-msgstr "Плъзгач"
-
-#. 9yfd5
-#: svx/uiconfig/ui/convertmenu.ui:175
-msgctxt "convertmenu|ConvertToSpinButton"
-msgid "Spin Button"
-msgstr "Брояч"
-
-#. Ed9fr
-#: svx/uiconfig/ui/convertmenu.ui:184
-msgctxt "convertmenu|ConvertToNavigationBar"
-msgid "Navigation Bar"
-msgstr "Лента за навигация"
-
#. rcSwp
#: svx/uiconfig/ui/crashreportdlg.ui:6
msgctxt "crashreportdlg|ed_post"
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index eb8447cb6c4..17277bf3b82 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: 2021-02-22 17:18+0100\n"
-"PO-Revision-Date: 2020-12-20 12:36+0000\n"
+"POT-Creation-Date: 2021-03-23 11:45+0100\n"
+"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
"Language: bg\n"
@@ -127,67 +127,67 @@ msgstr "Не е зададено заглавие на документа."
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. DdjvG
#: sw/inc/app.hrc:29
@@ -1564,11 +1564,11 @@ msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
msgstr "Номерация – начална стойност"
-#. KYbBB
+#. tBVDF
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
-msgid "Numbering Style Name"
-msgstr "Номерация – име на стил"
+msgid "List Style Name"
+msgstr "Списък – име на стил"
#. zrVDM
#: sw/inc/inspectorproperties.hrc:182
@@ -2268,1504 +2268,1559 @@ msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "Огледални"
+#. qGjWe
+#. Dialog buttons
+#: sw/inc/strings.hrc:27
+msgctxt "STR_STANDARD_LABEL"
+msgid "Reset to ~Parent"
+msgstr "Наследени настройки"
+
+#. FRWsF
+#: sw/inc/strings.hrc:28
+msgctxt "STR_STANDARD_TOOLTIP"
+msgid "Values on this tab specified in “Contains” in Organizer are removed."
+msgstr "Стойностите от този раздел се премахват от областта „Съдържа“ на „Организатор“."
+
+#. zwXmk
+#: sw/inc/strings.hrc:29
+msgctxt "STR_STANDARD_EXTENDEDTIP"
+msgid "Reset the values of this page to the values of the parent style. Values on this tab specified in “Contains” in Organizer are removed."
+msgstr ""
+
+#. x2EUX
+#: sw/inc/strings.hrc:30
+msgctxt "STR_RESET_LABEL"
+msgid "Reset"
+msgstr "Нулиране"
+
+#. o3BC2
+#: sw/inc/strings.hrc:31
+msgctxt "STR_RESET_TOOLTIP"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr "Незаписаните промени в този раздел се отменят."
+
+#. Sju8m
+#: sw/inc/strings.hrc:32
+msgctxt "STR_RESET_EXTENDEDTIP"
+msgid "Revert any changes made on the current tab to the settings that were present when this dialog was opened, or after the last use of “Apply”."
+msgstr "Отмяна на всички промени в текущия раздел и Връщане към настройките от момента на отваряне на диалога или на последното използване на „Прилагане“."
+
+#. Lv4Ua
+#: sw/inc/strings.hrc:33
+msgctxt "STR_APPLY_LABEL"
+msgid "Apply"
+msgstr "Прилагане"
+
+#. yYQPB
+#: sw/inc/strings.hrc:34
+msgctxt "STR_APPLY_TOOLTIP"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr "Записване на всички промени без затваряне на диалога. Не може да се отмени чрез „Нулиране“."
+
+#. zqBhC
+#: sw/inc/strings.hrc:35
+msgctxt "STR_APPLY_EXTENDEDTIP"
+msgid "Values in this tab are set to the corresponding values of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “None”, the values on this tab specified in “Contains” are removed."
+msgstr "На настройките в този раздел се задават съответните им стойности от стила, указан в „Наследяване от“ в „Организатор“. Във всички случаи, включително когато „Наследяване от“ е „Няма“, стойностите в раздела се премахват от полето „Съдържа“."
+
#. MvGmf
#. Format names
-#: sw/inc/strings.hrc:27
+#: sw/inc/strings.hrc:38
msgctxt "STR_POOLCHR_STANDARD"
msgid "Default Character Style"
msgstr "Подразбиран знаков стил"
#. iVg2a
-#: sw/inc/strings.hrc:28
+#: sw/inc/strings.hrc:39
msgctxt "STR_POOLCHR_FOOTNOTE"
msgid "Footnote Characters"
msgstr "Знаци за бележки под линия"
#. EpEPb
-#: sw/inc/strings.hrc:29
+#: sw/inc/strings.hrc:40
msgctxt "STR_POOLCHR_PAGENO"
msgid "Page Number"
msgstr "Номер на страница"
#. qAiQC
-#: sw/inc/strings.hrc:30
+#: sw/inc/strings.hrc:41
msgctxt "STR_POOLCHR_LABEL"
msgid "Caption Characters"
msgstr "Знаци за надпис"
#. x6CVW
-#: sw/inc/strings.hrc:31
+#: sw/inc/strings.hrc:42
msgctxt "STR_POOLCHR_DROPCAPS"
msgid "Drop Caps"
msgstr "Бити букви"
#. 5FFNC
-#: sw/inc/strings.hrc:32
+#: sw/inc/strings.hrc:43
msgctxt "STR_POOLCHR_NUM_LEVEL"
msgid "Numbering Symbols"
msgstr "Символи за номериране"
#. tGgfq
-#: sw/inc/strings.hrc:33
+#: sw/inc/strings.hrc:44
msgctxt "STR_POOLCHR_BULLET_LEVEL"
msgid "Bullets"
msgstr "Водещи знаци"
#. HsfNg
-#: sw/inc/strings.hrc:34
+#: sw/inc/strings.hrc:45
msgctxt "STR_POOLCHR_INET_NORMAL"
msgid "Internet Link"
msgstr "Връзка към Интернет"
#. EUP6L
-#: sw/inc/strings.hrc:35
+#: sw/inc/strings.hrc:46
msgctxt "STR_POOLCHR_INET_VISIT"
msgid "Visited Internet Link"
msgstr "Посетена връзка към Интернет"
#. F9XFz
-#: sw/inc/strings.hrc:36
+#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
msgstr "Запазено място"
#. 3iSvv
-#: sw/inc/strings.hrc:37
+#: sw/inc/strings.hrc:48
msgctxt "STR_POOLCHR_TOXJUMP"
msgid "Index Link"
msgstr "Връзка на указател"
#. 7QyzB
-#: sw/inc/strings.hrc:38
+#: sw/inc/strings.hrc:49
msgctxt "STR_POOLCHR_ENDNOTE"
msgid "Endnote Characters"
msgstr "Знаци за бележки в края"
#. 5ctSF
-#: sw/inc/strings.hrc:39
+#: sw/inc/strings.hrc:50
msgctxt "STR_POOLCHR_LINENUM"
msgid "Line Numbering"
msgstr "Номера на редове"
#. YyCkQ
-#: sw/inc/strings.hrc:40
+#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
msgstr "Запис в главния указател"
#. ALgMD
-#: sw/inc/strings.hrc:41
+#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
msgstr "Котва на бележка под линия"
#. m7FsY
-#: sw/inc/strings.hrc:42
+#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
msgstr "Котва на бележка в края"
#. CorJC
-#: sw/inc/strings.hrc:43
+#: sw/inc/strings.hrc:54
msgctxt "STR_POOLCHR_RUBYTEXT"
msgid "Rubies"
msgstr "Транслитерация"
#. EFsiE
-#: sw/inc/strings.hrc:44
+#: sw/inc/strings.hrc:55
msgctxt "STR_POOLCHR_VERT_NUM"
msgid "Vertical Numbering Symbols"
msgstr "Символи за вертикална номерация"
#. oAfA6
#. Drawing templates for HTML
-#: sw/inc/strings.hrc:46
+#: sw/inc/strings.hrc:57
msgctxt "STR_POOLCHR_HTML_EMPHASIS"
msgid "Emphasis"
msgstr "Акцентиран"
#. rwD6D
-#: sw/inc/strings.hrc:47
+#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
-msgstr ""
+msgstr "Цитат"
#. 6DAii
-#: sw/inc/strings.hrc:48
+#: sw/inc/strings.hrc:59
msgctxt "STR_POOLCHR_HTML_STRONG"
msgid "Strong Emphasis"
msgstr "Силно акцентиран"
#. cTVyQ
-#: sw/inc/strings.hrc:49
+#: sw/inc/strings.hrc:60
msgctxt "STR_POOLCHR_HTML_CODE"
msgid "Source Text"
msgstr "Изходен код"
#. GzU26
-#: sw/inc/strings.hrc:50
+#: sw/inc/strings.hrc:61
msgctxt "STR_POOLCHR_HTML_SAMPLE"
msgid "Example"
msgstr "Пример"
#. jDRjf
-#: sw/inc/strings.hrc:51
+#: sw/inc/strings.hrc:62
msgctxt "STR_POOLCHR_HTML_KEYBOARD"
msgid "User Entry"
msgstr "Потребителски запис"
#. bFDSF
-#: sw/inc/strings.hrc:52
+#: sw/inc/strings.hrc:63
msgctxt "STR_POOLCHR_HTML_VARIABLE"
msgid "Variable"
msgstr "Променлив"
#. VABL5
-#: sw/inc/strings.hrc:53
+#: sw/inc/strings.hrc:64
msgctxt "STR_POOLCHR_HTML_DEFINSTANCE"
msgid "Definition"
msgstr "Определение"
#. eSxaY
-#: sw/inc/strings.hrc:54
+#: sw/inc/strings.hrc:65
msgctxt "STR_POOLCHR_HTML_TELETYPE"
msgid "Teletype"
msgstr "Телетип"
#. QGrL8
#. Border templates
-#: sw/inc/strings.hrc:56
+#: sw/inc/strings.hrc:67
msgctxt "STR_POOLFRM_FRAME"
msgid "Frame"
msgstr "Рамка"
#. SiAK7
-#: sw/inc/strings.hrc:57
+#: sw/inc/strings.hrc:68
msgctxt "STR_POOLFRM_GRAPHIC"
msgid "Graphics"
msgstr "Графика"
#. CHnev
-#: sw/inc/strings.hrc:58
+#: sw/inc/strings.hrc:69
msgctxt "STR_POOLFRM_OLE"
msgid "OLE"
msgstr "OLE"
#. jCEsT
-#: sw/inc/strings.hrc:59
+#: sw/inc/strings.hrc:70
msgctxt "STR_POOLFRM_FORMEL"
msgid "Formula"
msgstr "Формула"
#. xqkkc
-#: sw/inc/strings.hrc:60
+#: sw/inc/strings.hrc:71
msgctxt "STR_POOLFRM_MARGINAL"
msgid "Marginalia"
msgstr "Маргинали"
#. TF4Km
-#: sw/inc/strings.hrc:61
+#: sw/inc/strings.hrc:72
msgctxt "STR_POOLFRM_WATERSIGN"
msgid "Watermark"
msgstr "Воден знак"
#. DpepF
-#: sw/inc/strings.hrc:62
+#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
msgstr "Етикети"
#. JV6pZ
#. Template names
-#: sw/inc/strings.hrc:64
+#: sw/inc/strings.hrc:75
msgctxt "STR_POOLCOLL_STANDARD"
msgid "Default Paragraph Style"
msgstr "Подразбиран абзацен стил"
#. AGD4Q
-#: sw/inc/strings.hrc:65
+#: sw/inc/strings.hrc:76
msgctxt "STR_POOLCOLL_TEXT"
msgid "Text Body"
msgstr "Основен текст"
#. BthAg
-#: sw/inc/strings.hrc:66
+#: sw/inc/strings.hrc:77
msgctxt "STR_POOLCOLL_TEXT_IDENT"
msgid "First Line Indent"
msgstr "Отстъп на първия ред"
#. ReVdk
-#: sw/inc/strings.hrc:67
+#: sw/inc/strings.hrc:78
msgctxt "STR_POOLCOLL_TEXT_NEGIDENT"
msgid "Hanging Indent"
msgstr "Висящ отстъп"
#. nJ6xz
-#: sw/inc/strings.hrc:68
+#: sw/inc/strings.hrc:79
msgctxt "STR_POOLCOLL_TEXT_MOVE"
msgid "Text Body Indent"
msgstr "Основен текст с отстъп"
#. DDwDx
-#: sw/inc/strings.hrc:69
+#: sw/inc/strings.hrc:80
msgctxt "STR_POOLCOLL_GREETING"
msgid "Complimentary Close"
msgstr "Завършек на писмо"
#. u4em4
-#: sw/inc/strings.hrc:70
+#: sw/inc/strings.hrc:81
msgctxt "STR_POOLCOLL_SIGNATURE"
msgid "Signature"
msgstr "Подпис"
#. icTS9
-#: sw/inc/strings.hrc:71
+#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
msgstr "Заглавие"
#. xoDcy
-#: sw/inc/strings.hrc:72
+#: sw/inc/strings.hrc:83
msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE"
msgid "List"
msgstr "Списък"
#. ffDqU
-#: sw/inc/strings.hrc:73
+#: sw/inc/strings.hrc:84
msgctxt "STR_POOLCOLL_REGISTER_BASE"
msgid "Index"
msgstr "Указател"
#. g6gkZ
-#: sw/inc/strings.hrc:74
+#: sw/inc/strings.hrc:85
msgctxt "STR_POOLCOLL_CONFRONTATION"
msgid "List Indent"
msgstr "Списък с отстъп"
#. ELkzH
-#: sw/inc/strings.hrc:75
+#: sw/inc/strings.hrc:86
msgctxt "STR_POOLCOLL_MARGINAL"
msgid "Marginalia"
msgstr "Маргинали"
#. DSgQC
-#: sw/inc/strings.hrc:76
+#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
msgstr "Заглавие 1"
#. 9Qw5C
-#: sw/inc/strings.hrc:77
+#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
msgstr "Заглавие 2"
#. x44Y5
-#: sw/inc/strings.hrc:78
+#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
msgstr "Заглавие 3"
#. Q4MBD
-#: sw/inc/strings.hrc:79
+#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
msgstr "Заглавие 4"
#. aQXm6
-#: sw/inc/strings.hrc:80
+#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
msgstr "Заглавие 5"
#. mSpb6
-#: sw/inc/strings.hrc:81
+#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
msgstr "Заглавие 6"
#. 6w9CD
-#: sw/inc/strings.hrc:82
+#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
msgstr "Заглавие 7"
#. kJGtA
-#: sw/inc/strings.hrc:83
+#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
msgstr "Заглавие 8"
#. 56aJ7
-#: sw/inc/strings.hrc:84
+#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
msgstr "Заглавие 9"
#. Z6AjF
-#: sw/inc/strings.hrc:85
+#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
msgstr "Заглавие 10"
#. 3JoRA
-#: sw/inc/strings.hrc:86
+#: sw/inc/strings.hrc:97
msgctxt "STR_POOLCOLL_NUM_LEVEL1S"
msgid "Numbering 1 Start"
msgstr "Номерация 1 - начало"
#. ZK75h
-#: sw/inc/strings.hrc:87
+#: sw/inc/strings.hrc:98
msgctxt "STR_POOLCOLL_NUM_LEVEL1"
msgid "Numbering 1"
msgstr "Номерация 1"
#. d7ED5
-#: sw/inc/strings.hrc:88
+#: sw/inc/strings.hrc:99
msgctxt "STR_POOLCOLL_NUM_LEVEL1E"
msgid "Numbering 1 End"
msgstr "Номерация 1 - край"
#. EEefE
-#: sw/inc/strings.hrc:89
+#: sw/inc/strings.hrc:100
msgctxt "STR_POOLCOLL_NUM_NONUM1"
msgid "Numbering 1 Cont."
msgstr "Номерация 1 - продълж."
#. oXzhq
-#: sw/inc/strings.hrc:90
+#: sw/inc/strings.hrc:101
msgctxt "STR_POOLCOLL_NUM_LEVEL2S"
msgid "Numbering 2 Start"
msgstr "Номерация 2 - начало"
#. mDFEC
-#: sw/inc/strings.hrc:91
+#: sw/inc/strings.hrc:102
msgctxt "STR_POOLCOLL_NUM_LEVEL2"
msgid "Numbering 2"
msgstr "Номерация 2"
#. srZLb
-#: sw/inc/strings.hrc:92
+#: sw/inc/strings.hrc:103
msgctxt "STR_POOLCOLL_NUM_LEVEL2E"
msgid "Numbering 2 End"
msgstr "Номерация 2 - край"
#. K563Y
-#: sw/inc/strings.hrc:93
+#: sw/inc/strings.hrc:104
msgctxt "STR_POOLCOLL_NUM_NONUM2"
msgid "Numbering 2 Cont."
msgstr "Номерация 2 - продълж."
#. ZY4dn
-#: sw/inc/strings.hrc:94
+#: sw/inc/strings.hrc:105
msgctxt "STR_POOLCOLL_NUM_LEVEL3S"
msgid "Numbering 3 Start"
msgstr "Номерация 3 - начало"
#. zadiT
-#: sw/inc/strings.hrc:95
+#: sw/inc/strings.hrc:106
msgctxt "STR_POOLCOLL_NUM_LEVEL3"
msgid "Numbering 3"
msgstr "Номерация 3"
#. 9XFGM
-#: sw/inc/strings.hrc:96
+#: sw/inc/strings.hrc:107
msgctxt "STR_POOLCOLL_NUM_LEVEL3E"
msgid "Numbering 3 End"
msgstr "Номерация 3 - край"
#. odwZq
-#: sw/inc/strings.hrc:97
+#: sw/inc/strings.hrc:108
msgctxt "STR_POOLCOLL_NUM_NONUM3"
msgid "Numbering 3 Cont."
msgstr "Номерация 3 - продълж."
#. L7LmA
-#: sw/inc/strings.hrc:98
+#: sw/inc/strings.hrc:109
msgctxt "STR_POOLCOLL_NUM_LEVEL4S"
msgid "Numbering 4 Start"
msgstr "Номерация 4 - начало"
#. MZko3
-#: sw/inc/strings.hrc:99
+#: sw/inc/strings.hrc:110
msgctxt "STR_POOLCOLL_NUM_LEVEL4"
msgid "Numbering 4"
msgstr "Номерация 4"
#. NNVFa
-#: sw/inc/strings.hrc:100
+#: sw/inc/strings.hrc:111
msgctxt "STR_POOLCOLL_NUM_LEVEL4E"
msgid "Numbering 4 End"
msgstr "Номерация 4 - край"
#. iN72r
-#: sw/inc/strings.hrc:101
+#: sw/inc/strings.hrc:112
msgctxt "STR_POOLCOLL_NUM_NONUM4"
msgid "Numbering 4 Cont."
msgstr "Номерация 4 - продълж."
#. 96KqD
-#: sw/inc/strings.hrc:102
+#: sw/inc/strings.hrc:113
msgctxt "STR_POOLCOLL_NUM_LEVEL5S"
msgid "Numbering 5 Start"
msgstr "Номерация 5 - начало"
#. a4DBa
-#: sw/inc/strings.hrc:103
+#: sw/inc/strings.hrc:114
msgctxt "STR_POOLCOLL_NUM_LEVEL5"
msgid "Numbering 5"
msgstr "Номерация 5"
#. f2BKL
-#: sw/inc/strings.hrc:104
+#: sw/inc/strings.hrc:115
msgctxt "STR_POOLCOLL_NUM_LEVEL5E"
msgid "Numbering 5 End"
msgstr "Номерация 5 - край"
#. NmxWb
-#: sw/inc/strings.hrc:105
+#: sw/inc/strings.hrc:116
msgctxt "STR_POOLCOLL_NUM_NONUM5"
msgid "Numbering 5 Cont."
msgstr "Номерация 5 - продълж."
#. eBvvD
-#: sw/inc/strings.hrc:106
+#: sw/inc/strings.hrc:117
msgctxt "STR_POOLCOLL_BULLET_LEVEL1S"
msgid "List 1 Start"
msgstr "Списък 1 - начало"
#. baq6K
-#: sw/inc/strings.hrc:107
+#: sw/inc/strings.hrc:118
msgctxt "STR_POOLCOLL_BULLET_LEVEL1"
msgid "List 1"
msgstr "Списък 1"
#. TiBqs
-#: sw/inc/strings.hrc:108
+#: sw/inc/strings.hrc:119
msgctxt "STR_POOLCOLL_BULLET_LEVEL1E"
msgid "List 1 End"
msgstr "Списък 1 - край"
#. VvvEa
-#: sw/inc/strings.hrc:109
+#: sw/inc/strings.hrc:120
msgctxt "STR_POOLCOLL_BULLET_NONUM1"
msgid "List 1 Cont."
msgstr "Списък 1 - продълж."
#. 9ACKm
-#: sw/inc/strings.hrc:110
+#: sw/inc/strings.hrc:121
msgctxt "STR_POOLCOLL_BULLET_LEVEL2S"
msgid "List 2 Start"
msgstr "Списък 2 - начало"
#. ABCWg
-#: sw/inc/strings.hrc:111
+#: sw/inc/strings.hrc:122
msgctxt "STR_POOLCOLL_BULLET_LEVEL2"
msgid "List 2"
msgstr "Списък 2"
#. R9iEV
-#: sw/inc/strings.hrc:112
+#: sw/inc/strings.hrc:123
msgctxt "STR_POOLCOLL_BULLET_LEVEL2E"
msgid "List 2 End"
msgstr "Списък 2 - край"
#. XTGpX
-#: sw/inc/strings.hrc:113
+#: sw/inc/strings.hrc:124
msgctxt "STR_POOLCOLL_BULLET_NONUM2"
msgid "List 2 Cont."
msgstr "Списък 2 - продълж."
#. n97tD
-#: sw/inc/strings.hrc:114
+#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_BULLET_LEVEL3S"
msgid "List 3 Start"
msgstr "Списък 3 - начало"
#. JBTGo
-#: sw/inc/strings.hrc:115
+#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_BULLET_LEVEL3"
msgid "List 3"
msgstr "Списък 3"
#. B9RA4
-#: sw/inc/strings.hrc:116
+#: sw/inc/strings.hrc:127
msgctxt "STR_POOLCOLL_BULLET_LEVEL3E"
msgid "List 3 End"
msgstr "Списък 3 - край"
#. ZB29x
-#: sw/inc/strings.hrc:117
+#: sw/inc/strings.hrc:128
msgctxt "STR_POOLCOLL_BULLET_NONUM3"
msgid "List 3 Cont."
msgstr "Списък 3 - продълж."
#. zFXDk
-#: sw/inc/strings.hrc:118
+#: sw/inc/strings.hrc:129
msgctxt "STR_POOLCOLL_BULLET_LEVEL4S"
msgid "List 4 Start"
msgstr "Списък 4 - начало"
#. 34JZ2
-#: sw/inc/strings.hrc:119
+#: sw/inc/strings.hrc:130
msgctxt "STR_POOLCOLL_BULLET_LEVEL4"
msgid "List 4"
msgstr "Списък 4"
#. 3T3WD
-#: sw/inc/strings.hrc:120
+#: sw/inc/strings.hrc:131
msgctxt "STR_POOLCOLL_BULLET_LEVEL4E"
msgid "List 4 End"
msgstr "Списък 4 - край"
#. buakQ
-#: sw/inc/strings.hrc:121
+#: sw/inc/strings.hrc:132
msgctxt "STR_POOLCOLL_BULLET_NONUM4"
msgid "List 4 Cont."
msgstr "Списък 4 - продълж."
#. vGaiE
-#: sw/inc/strings.hrc:122
+#: sw/inc/strings.hrc:133
msgctxt "STR_POOLCOLL_BULLET_LEVEL5S"
msgid "List 5 Start"
msgstr "Списък 5 - начало"
#. B4dDL
-#: sw/inc/strings.hrc:123
+#: sw/inc/strings.hrc:134
msgctxt "STR_POOLCOLL_BULLET_LEVEL5"
msgid "List 5"
msgstr "Списък 5"
#. HTfse
-#: sw/inc/strings.hrc:124
+#: sw/inc/strings.hrc:135
msgctxt "STR_POOLCOLL_BULLET_LEVEL5E"
msgid "List 5 End"
msgstr "Списък 5 - край"
#. dAYD6
-#: sw/inc/strings.hrc:125
+#: sw/inc/strings.hrc:136
msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Списък 5 - продълж."
#. DB3VN
-#: sw/inc/strings.hrc:126
+#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
msgstr "Колонтитули"
#. qfrao
-#: sw/inc/strings.hrc:127
+#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header"
msgstr "Горен колонтитул"
#. uCLQX
-#: sw/inc/strings.hrc:128
+#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
msgstr "Горен колонтитул (ляво)"
#. uEbyw
-#: sw/inc/strings.hrc:129
+#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
msgstr "Горен колонтитул (дясно)"
#. LVGLN
-#: sw/inc/strings.hrc:130
+#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_FOOTER"
msgid "Footer"
msgstr "Долен колонтитул"
#. NtxCF
-#: sw/inc/strings.hrc:131
+#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_FOOTERL"
msgid "Footer Left"
msgstr "Долен колонтитул (ляво)"
#. WQCxF
-#: sw/inc/strings.hrc:132
+#: sw/inc/strings.hrc:143
msgctxt "STR_POOLCOLL_FOOTERR"
msgid "Footer Right"
msgstr "Долен колонтитул (дясно)"
#. BhcAs
-#: sw/inc/strings.hrc:133
+#: sw/inc/strings.hrc:144
msgctxt "STR_POOLCOLL_TABLE"
msgid "Table Contents"
msgstr "Таблица - съдържание"
#. 5VB54
-#: sw/inc/strings.hrc:134
+#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
msgstr "Таблица - заглавие"
#. R9Q7p
-#: sw/inc/strings.hrc:135
+#: sw/inc/strings.hrc:146
msgctxt "STR_POOLCOLL_FRAME"
msgid "Frame Contents"
msgstr "Рамка - съдържание"
#. SrQGZ
-#: sw/inc/strings.hrc:136
+#: sw/inc/strings.hrc:147
msgctxt "STR_POOLCOLL_FOOTNOTE"
msgid "Footnote"
msgstr "Бележка под линия"
#. xjBuC
-#: sw/inc/strings.hrc:137
+#: sw/inc/strings.hrc:148
msgctxt "STR_POOLCOLL_ENDNOTE"
msgid "Endnote"
msgstr "Бележка в края"
#. CSz7H
-#: sw/inc/strings.hrc:138
+#: sw/inc/strings.hrc:149
msgctxt "STR_POOLCOLL_LABEL"
msgid "Caption"
msgstr "Надпис"
#. GPK5J
-#: sw/inc/strings.hrc:139
+#: sw/inc/strings.hrc:150
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
msgstr "Илюстрация"
#. QECfw
-#: sw/inc/strings.hrc:140
+#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
msgstr "Таблица"
#. QFfEo
-#: sw/inc/strings.hrc:141
+#: sw/inc/strings.hrc:152
msgctxt "STR_POOLCOLL_LABEL_FRAME"
msgid "Text"
msgstr "Текст"
#. 2d3fF
-#: sw/inc/strings.hrc:142
+#: sw/inc/strings.hrc:153
msgctxt "STR_POOLCOLL_LABEL_DRAWING"
msgid "Drawing"
msgstr "Рисунка"
#. M2eg4
-#: sw/inc/strings.hrc:143
+#: sw/inc/strings.hrc:154
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr "Фигура"
#. CxADu
-#: sw/inc/strings.hrc:144
+#: sw/inc/strings.hrc:155
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr "Получател"
#. PvoVz
-#: sw/inc/strings.hrc:145
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr "Подател"
#. AChE4
-#: sw/inc/strings.hrc:146
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "Указател - заглавие"
#. sDGWT
-#: sw/inc/strings.hrc:147
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "Указател 1"
#. Y7A62
-#: sw/inc/strings.hrc:148
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "Указател 2"
#. DoCtT
-#: sw/inc/strings.hrc:149
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "Указател 3"
#. AL9vf
-#: sw/inc/strings.hrc:150
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "Указател - разделител"
#. gGWam
-#: sw/inc/strings.hrc:151
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "Съдържание - заглавие"
#. 2kfKD
-#: sw/inc/strings.hrc:152
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Съдържание 1"
#. Cyovw
-#: sw/inc/strings.hrc:153
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Съдържание 2"
#. CeCEB
-#: sw/inc/strings.hrc:154
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Съдържание 3"
#. xvFCu
-#: sw/inc/strings.hrc:155
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Съдържание 4"
#. ZhkVH
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Съдържание 5"
#. fUc7s
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Съдържание 6"
#. njEgF
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Съдържание 7"
#. EtFWq
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Съдържание 8"
#. EbkDM
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Съдържание 9"
#. Y7Cms
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Съдържание 10"
#. C6qm4
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "Потребителски указател - заглавие"
#. p2GRv
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "Потребителски указател 1"
#. Hi9XK
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "Потребителски указател 2"
#. qq6Zm
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "Потребителски указател 3"
#. EcpEa
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "Потребителски указател 4"
#. nfuG3
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "Потребителски указател 5"
#. FNvoZ
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "Потребителски указател 6"
#. oMjqE
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "Потребителски указател 7"
#. CxdwC
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "Потребителски указател 8"
#. ksYyT
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "Потребителски указател 9"
#. kkbMq
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "Потребителски указател 10"
#. QAWEr
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "Позоваване"
#. ECpGh
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr "Указател на фигури - заглавие"
#. rA84j
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr "Указател на фигури 1"
#. EMAde
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "Указател на обекти - заглавие"
#. AAAot
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "Указател на обекти 1"
#. sbCcn
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "Указател на таблици - заглавие"
#. 5EQKp
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "Указател на таблици 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "Заглавие на библиография"
#. 7aSPU
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "Библиография 1"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:194
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Заглавие на документ"
#. Vm4an
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "Подзаглавие"
#. NBniG
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr "Приложение"
#. xiVb7
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
msgstr "Блоков цитат"
#. FPDvM
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "Предварително форматиран текст"
#. AA9gY
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "Хоризонтална линия"
#. mS2ZP
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "Списък - съдържание"
#. dC66q
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "Списък - заглавие"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:203
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr "Подразбиран стил за страници"
#. JwhRA
-#: sw/inc/strings.hrc:193
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Първа страница"
#. FLUqS
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "Лява страница"
#. AV2ND
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Дясна страница"
#. dKCfD
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr "Плик"
#. jGSGz
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "Указател"
#. AwPSM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "Бележка под линия"
#. nF28D
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "Бележка в края"
#. aGDbN
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "Пейзаж"
#. mGZHb
#. Numbering rules
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "Номерация 123"
#. AW8tm
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "Номерация ABC"
#. k2FEN
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr "Номерация abc"
#. 4Cgku
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "Номерация IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "Номерация ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr "Водещ знак •"
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr "Водещ знак –"
#. hDdJw
#. Bullet \uE4C4
-#: sw/inc/strings.hrc:213
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
msgstr "Водещ знак "
#. uBKzE
#. Bullet \uE49E
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
msgstr "Водещ знак "
#. 54eoC
#. Bullet \uE20B
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
msgstr "Водещ знак "
#. J7DDZ
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:229
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "1 колона"
#. C4TAR
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:230
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "2 колони с равни ширини"
#. 7EtFb
-#: sw/inc/strings.hrc:220
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "3 колони с равни ширини"
#. oqzB2
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "2 колони с различни ширини (лява > дясна)"
#. irDMZ
-#: sw/inc/strings.hrc:222
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "2 колони с различни ширини (лява < дясна)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:224
+#: sw/inc/strings.hrc:235
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr "Подразбиран стил за таблици"
#. fCbrD
-#: sw/inc/strings.hrc:226
+#: sw/inc/strings.hrc:237
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Стилове за абзаци"
#. D9yAi
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:238
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "Знакови стилове"
#. vpotA
-#: sw/inc/strings.hrc:228
+#: sw/inc/strings.hrc:239
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Стилове за рамки"
#. KJ9Ct
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:240
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Стилове за страници"
#. StGfs
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:241
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "Стилове за списъци"
#. uYnHh
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:242
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Стилове за таблици"
#. 6VBtB
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:243
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Плик"
#. GybX9
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:244
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Етикети"
#. 2otxp
-#: sw/inc/strings.hrc:235
+#: sw/inc/strings.hrc:246
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "Текстов документ на %PRODUCTNAME %PRODUCTVERSION"
#. 7q6Uy
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:247
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Документът не може да бъде отворен."
#. 5KkLN
-#: sw/inc/strings.hrc:237
+#: sw/inc/strings.hrc:248
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Документът не може да бъде създаден."
#. rfFYm
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:249
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Филтърът не е намерен."
#. HhLap
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:250
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Име и път на главния документ"
#. SSL5h
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:251
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "Име и път на документ във формат HTML"
#. bb3o8
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:252
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "Редактиране на скрипт"
#. oBFxh
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:253
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "Показалец"
#. QTQk5
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:254
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr "Да"
#. tvmJD
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr "Не"
#. DCJBh
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr "Забранени знаци:"
#. QEGSs
-#: sw/inc/strings.hrc:246
+#: sw/inc/strings.hrc:257
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[Няма]"
#. C4tz3
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:258
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Старт"
#. hFNKj
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:259
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Край"
#. kfeBE
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "Над"
#. aXzbo
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "Под"
#. 8zzCk
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:262
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "само за четене"
#. QRU4j
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:263
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "Директориите за \"автотекст\" са само за четене. Желаете ли да бъде показан диалоговият прозорец за настройка на пътищата?"
#. ErVas
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:264
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Статистика"
#. CfhYF
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:265
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
msgstr "Тази възможност е недостъпна, когато на абзацен стил е приписана номерация на глави."
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Импортира се документ..."
#. F39Cf
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:268
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Експортира се документ..."
#. LCa4C
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Записва се документ..."
#. ff2XN
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Протича страниране..."
#. Afs3H
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Документът се форматира автоматично..."
#. APY2j
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Протича търсене..."
#. nPLt7
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Писмо"
#. LuH5F
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Протича проверка на правописа..."
#. uk874
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Протича сричкопренасяне..."
#. Dku8Y
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Вмъква се азбучен указател..."
#. wvAiH
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Обновяване се азбучен указател..."
#. YBupW
-#: sw/inc/strings.hrc:267
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Създава се резюме..."
#. Nd6Lf
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Приспособяват се обекти..."
#. PSGuv
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:280
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Таблица"
#. J4m7R
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:281
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Изображение"
#. qceuT
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:282
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Обект"
#. UE4Z2
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:283
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Рамка"
#. qHLFq
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:284
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "Фигура"
#. qcwAT
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:285
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Раздел"
#. ZkHpJ
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:286
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Номерация"
#. Vk8M5
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:287
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "празна страница"
#. FBG9v
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:288
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Резюме: "
#. iD2VD
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:289
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "разделяне по: "
#. CV6nr
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:290
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "План: Ниво "
#. oEvac
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Стил: "
#. BZdQA
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:292
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Номер на страница: "
#. u6eev
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:293
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Прекъсване преди нова страница"
#. hDBmF
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:294
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Западен текст: "
#. w3ngS
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:295
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Азиатски текст: "
#. k6G7J
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:296
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr "Сложни писмености: "
#. GC6Rd
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:297
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "Неизвестен автор"
#. XUSDj
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:298
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Изтриване на всички коментари от $1"
#. 3TDWE
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:299
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Скриване на всички коментари от $1"
#. mPqgx
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:300
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Chapter Numbering"
msgstr "Номерация на глави"
@@ -3773,14 +3828,14 @@ msgstr "Номерация на глави"
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:303
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "Избрани: $1, $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:305
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3789,7 +3844,7 @@ msgstr[1] "$1 думи"
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:307
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3799,7 +3854,7 @@ msgstr[1] "$1 знака"
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1, $2"
@@ -3807,7 +3862,7 @@ msgstr "$1, $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3817,7 +3872,7 @@ msgstr[1] "$1 думи"
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3825,91 +3880,91 @@ msgstr[0] "$1 знак"
msgstr[1] "$1 знака"
#. fj6gC
-#: sw/inc/strings.hrc:306
+#: sw/inc/strings.hrc:317
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Преобразуване на текст в таблица"
#. PknB5
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:318
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Добавяне на автоформат"
#. hqtgD
-#: sw/inc/strings.hrc:308
+#: sw/inc/strings.hrc:319
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Име"
#. L9jQU
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:320
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Изтриване на автоформат"
#. EGu2g
-#: sw/inc/strings.hrc:310
+#: sw/inc/strings.hrc:321
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "Следният запис за автоформат ще бъде изтрит:"
#. 7KuSQ
-#: sw/inc/strings.hrc:311
+#: sw/inc/strings.hrc:322
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Преименуване на автоформат"
#. GDdL3
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:323
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Затваряне"
#. DAuNm
-#: sw/inc/strings.hrc:313
+#: sw/inc/strings.hrc:324
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Яну"
#. WWzNg
-#: sw/inc/strings.hrc:314
+#: sw/inc/strings.hrc:325
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Фев"
#. CCC3U
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:326
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Мар"
#. cr7Jq
-#: sw/inc/strings.hrc:316
+#: sw/inc/strings.hrc:327
msgctxt "STR_NORTH"
msgid "North"
msgstr "Север"
#. wHYPw
-#: sw/inc/strings.hrc:317
+#: sw/inc/strings.hrc:328
msgctxt "STR_MID"
msgid "Mid"
msgstr "Център"
#. sxDHC
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:329
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Юг"
#. v65zt
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:330
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Сума"
#. tCZiD
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:331
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -3921,416 +3976,416 @@ msgstr ""
"Опитайте отново с различно име."
#. DAwsE
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:332
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Числов"
#. QmZUu
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:333
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Редове"
#. 5oTjU
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:334
msgctxt "STR_COL"
msgid "Column"
msgstr "Колона"
#. w6733
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:335
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Редактиране на библиографски запис"
#. bvbhG
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:336
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Вмъкване на библиографски запис"
#. U2BNe
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:337
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "Разстояние между %1 и %2"
#. SBmWN
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:338
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Ширина на колона %1"
#. ZLVNB
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:339
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "Таблица на %PRODUCTNAME Writer"
#. FMXrc
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:340
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "Рамка на %PRODUCTNAME Writer"
#. gEGv8
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:341
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "Изображение на %PRODUCTNAME Writer"
#. k8kLw
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:342
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "Други OLE обекти"
#. rP7oC
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:343
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr "Името на таблицата не трябва да съдържа интервали."
#. g9HF2
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:344
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr "Избраните клетки са твърде сложни, за да бъдат слети."
#. VFBKA
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:345
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "Селекцията не може да бъде сортирана"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:348
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "Щракване върху обект"
#. HmK3X
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:349
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Преди вмъкване на автотекст"
#. aEVDN
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:350
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "След вмъкване на автотекст"
#. GVkr6
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:351
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Мишката е върху обекта"
#. MBLgk
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Задействане на хипервръзка"
#. BXpj4
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Мишката напуска обекта"
#. AKGsc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "Изображението е заредено успешно"
#. U4P8F
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "Зареждането на изображението е прекъснато"
#. uLNMH
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "Изображението не може да се зареди"
#. DAGeE
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Въвеждане на знаци (букви и цифри)"
#. ABr9D
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Въвеждане на знаци (не букви и цифри)"
#. eyJj8
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Преоразмеряване на рамка"
#. RUS7J
-#: sw/inc/strings.hrc:349
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Местене на рамка"
#. TF3Q9
-#: sw/inc/strings.hrc:350
+#: sw/inc/strings.hrc:361
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Заглавия"
#. S3JCM
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Таблици"
#. koqyc
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:363
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr "Рамки"
#. YFZFi
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Изображения"
#. bq6DJ
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE обекти"
#. BL4Es
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Показалци"
#. PbsTX
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Раздели"
#. 9QY8E
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Хипервръзки"
#. wMqRF
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Препратки"
#. D7Etx
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Указатели"
#. xDXB4
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Графични обекти"
#. KRE4o
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Коментари"
#. zpcTg
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:373
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Заглавие 1"
#. kbfiB
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:374
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "Това е текстът на първата глава. Това е запис за потребителски указател."
#. wcSRn
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:375
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Заглавие 1.1"
#. BqQGK
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
msgstr "Това е текстът на глава 1.1. Това е записът за таблицата на съдържанието."
#. bymGA
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Заглавие 1.2"
#. 6MLmL
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from chapter 1.2. This keyword is a main entry."
msgstr "Това е текстът на глава 1.2. Тази ключова дума е главен запис."
#. mFDqo
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "Таблица 1: Това е таблица 1"
#. VyQfs
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "Фигура 1: Това е фигура 1"
#. EiPU5
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr "Глава"
#. s9w3k
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr "Ключова дума"
#. 8bbUo
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr "Елемент от потребителски указател"
#. SoBBB
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr "Елемент"
#. cT6YY
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr "това"
#. KNkfh
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr "Първичен ключ"
#. 2J7Ut
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr "Вторичен ключ"
#. beBJ6
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:388
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Заглавие"
#. dGJ5Q
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:389
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Таблица"
#. thWKC
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:390
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
-msgstr ""
+msgstr "Рамка"
#. o2wx8
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Изображение"
#. 2duFT
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:392
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLE обект"
#. qNk5D
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Показалец"
#. jdW3y
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:394
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Раздел"
#. xsFen
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Хипервръзка"
#. BafFj
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Препратка"
#. 3s3yG
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "Указател"
#. Qv3eV
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Коментар"
#. W3sED
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Графичен обект"
#. jThGW
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:400
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
msgstr "Допълнителни формати..."
#. Cfiyt
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:401
msgctxt "RID_STR_SYSTEM"
msgid "[System]"
msgstr "[Системен]"
#. iD3WQ
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:402
msgctxt "STR_MULT_INTERACT_HYPH_WARN"
msgid ""
"The interactive hyphenation is already active\n"
@@ -4340,626 +4395,626 @@ msgstr ""
"в друг документ"
#. 68AYK
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:403
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
msgstr "Сричкопренасяне"
#. EDxsk
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:404
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
msgstr "Липсват данни за сричкопренасяне"
#. TEP66
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:405
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
msgstr "Моля, инсталирайте пакета за сричкопренасяне за локала „%1“."
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:408
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "не е възможно"
#. 5GdxN
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:409
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Изтриване на $1"
#. i6vB4
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:410
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Вмъкване на $1"
#. JESFv
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:411
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Презаписване: $1"
#. FVqpL
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:412
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Нов абзац"
#. r3iVE
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:413
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Местене"
#. Z2Ft8
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:414
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Прилагане на атрибути"
#. hetuZ
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:415
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Прилагане на стилове: $1"
#. GokWu
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:416
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Анулиране на атрибути"
#. mDgEJ
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:417
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Промяна на стил: $1"
#. onBFE
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:418
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Вмъкване на файл"
#. WCCkF
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:419
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Вмъкване на автотекст"
#. CyNXC
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:420
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Изтриване на показалец: $1"
#. 54y8f
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:421
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Вмъкване на показалец: $1"
#. XHkEY
-#: sw/inc/strings.hrc:411
+#: sw/inc/strings.hrc:422
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Сортиране на таблица"
#. gui6q
-#: sw/inc/strings.hrc:412
+#: sw/inc/strings.hrc:423
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Сортиране на текст"
#. APAMG
-#: sw/inc/strings.hrc:413
+#: sw/inc/strings.hrc:424
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Вмъкване на таблица: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:414
+#: sw/inc/strings.hrc:425
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Преобразуване текст -> таблица"
#. h3EH7
-#: sw/inc/strings.hrc:415
+#: sw/inc/strings.hrc:426
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Преобразуване таблица -> текст"
#. uKreq
-#: sw/inc/strings.hrc:416
+#: sw/inc/strings.hrc:427
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Копиране: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:417
+#: sw/inc/strings.hrc:428
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Заместване на $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:418
+#: sw/inc/strings.hrc:429
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Вмъкване на разделител на страници"
#. mrWg2
-#: sw/inc/strings.hrc:419
+#: sw/inc/strings.hrc:430
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Вмъкване на разделител на колони"
#. MGqRt
-#: sw/inc/strings.hrc:420
+#: sw/inc/strings.hrc:431
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Вмъкване на плик"
#. g8ALR
-#: sw/inc/strings.hrc:421
+#: sw/inc/strings.hrc:432
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Копиране: $1"
#. qHdLG
-#: sw/inc/strings.hrc:422
+#: sw/inc/strings.hrc:433
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Местене: $1"
#. xqxPn
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:434
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Вмъкване на диаграма на %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Вмъкване на рамка"
#. GmqXE
-#: sw/inc/strings.hrc:425
+#: sw/inc/strings.hrc:436
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Изтриване на рамка"
#. z9Eai
-#: sw/inc/strings.hrc:426
+#: sw/inc/strings.hrc:437
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Автоформат"
#. E6uaH
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:438
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Заглавие на таблица"
#. gnndv
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:439
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Заместване: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Вмъкване на раздел"
#. 7pzWX
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:441
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Изтриване на раздел"
#. AFkoM
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:442
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Промяна на раздел"
#. BY9gB
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:443
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Промяна на подразбираните стойности"
#. X7eMx
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:444
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Заместване на стил: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Изтриване разделител на страница"
#. kHVr9
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:446
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Коригиране на текст"
#. ZPCQf
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:447
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline"
msgstr "Повишаване/понижаване на план"
#. WQJz2
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:448
msgctxt "STR_OUTLINE_UD"
msgid "Move outline"
msgstr "Местене на план"
#. RjcRH
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:449
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Вмъкване на номерация"
#. hbCQa
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:450
msgctxt "STR_NUMUP"
msgid "Promote level"
msgstr "Повишаване на ниво"
#. 63Ec4
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:451
msgctxt "STR_NUMDOWN"
msgid "Demote level"
msgstr "Понижаване на ниво"
#. FGciC
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:452
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Местене на абзаци"
#. WdMCK
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:453
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Вмъкване на графичен обект: $1"
#. ErB3W
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:454
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Номера - вкл./изкл."
#. rEZvN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:455
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Увеличаване на отстъпа"
#. aJxcG
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:456
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Намаляване на отстъпа"
#. 4GP7c
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Вмъкване на надпис: $1"
#. GGFM8
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:458
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Започване на номерирането отначало"
#. pHfp7
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:459
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Промяна на бележката под линия"
#. Knr9y
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:460
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Приемане на промяната: $1"
#. jAvjr
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:461
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Отхвърляне на промяната: $1"
#. uCGqy
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:462
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Разделяне на таблица"
#. TJCZ8
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:463
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Стоп атрибут"
#. qyCiy
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:464
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Автокорекция"
#. f4Jfr
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:465
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Сливане на таблици"
#. BLcCC
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:466
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Смяна на регистъра"
#. BTGyD
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Изтриване на номерацията"
#. TMvTD
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:468
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Графични обекти: $1"
#. FG7rN
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:469
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Групиране на графични обекти"
#. xZqoJ
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:470
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Разгрупиране на графични обекти"
#. FA3Vo
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:471
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Изтриване на графични обекти"
#. MbJSs
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:472
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Замяна на изображение"
#. 6GmVr
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:473
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Изтриване на изображение"
#. PAmBF
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:474
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Прилагане на свойства за таблицата"
#. GA8gF
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:475
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Автоформат на таблица"
#. AAPTL
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:476
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Вмъкване на колона"
#. tA7ss
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:477
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Вмъкване на ред"
#. LAzxr
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:478
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Изтриване на ред/колона"
#. yFDYp
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:479
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Изтриване на колона"
#. 9SF9L
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:480
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Изтриване на ред"
#. FnLC7
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:481
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Разделяне на клетки"
#. 3Em7B
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:482
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Сливане на клетки"
#. 3VVmF
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:483
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Форматиране на клетка"
#. UbSKw
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Вмъкване на указател/таблица"
#. szpbj
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:485
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Премахване на указател/таблица"
#. cN5DN
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:486
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Копиране на таблица"
#. eUFgx
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:487
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Копиране на таблица"
#. TC6mz
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:488
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Задаване на курсор"
#. 4GStA
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:489
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
-msgstr ""
+msgstr "Свързване на рамки"
#. XV4Ap
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
-msgstr ""
+msgstr "Разделяне на свързани рамки"
#. vUJG9
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:491
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Промяна на настройките на бележка под линия"
#. AgREs
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:492
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Сравняване на документ"
#. kZATW
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Прилагане на стил за рамка: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:494
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Настройка на транслитерация"
#. J4AUR
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:495
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Вмъкване на бележка под линия"
#. RMgFD
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:496
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "вмъкване на бутон с URL"
#. UKN7k
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:497
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Вмъкване на хипервръзка"
#. 9odT8
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:498
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "премахване на невидимото съдържание"
#. e6U2R
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:499
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Променен указател/таблица"
#. JpGh6
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:500
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "„"
#. kZoAG
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:501
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "“"
#. wNZDq
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:502
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:503
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "групов избор"
#. qFESB
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:504
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Набиране: $1"
#. A6HSG
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:505
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Поставяне от клипборда"
#. mfDMF
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:506
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:507
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "срещания на"
#. hHUZi
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -4967,7 +5022,7 @@ msgstr[0] "Един знак за табулация"
msgstr[1] "$1 знака за табулация"
#. eP6mC
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -4975,308 +5030,308 @@ msgstr[0] "Един знак за нов ред"
msgstr[1] "$1 знака за нов ред"
#. yS3nP
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:510
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "нова страница"
#. Q4YVg
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:511
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "разделител на колони"
#. L6qva
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:512
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Вмъкване на $1"
#. i8ZQo
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:513
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Изтриване на $1"
#. 5KECk
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:514
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Променени атрибути"
#. N7CUk
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:515
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Променена таблица"
#. DCGPF
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Променен стил"
#. p77WZ
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Променен формат на абзац"
#. nehrq
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Вмъкване на ред"
#. Ud4qT
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Изтриване на ред"
#. GvxsC
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Вмъкване на клетка"
#. ZMrVY
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Изтриване на клетка"
#. DqprY
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:522
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 промени"
#. ve5ZA
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:523
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Промяна на стил на страница: $1"
#. RDkdy
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:524
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Създаване на стил на страница: $1"
#. tBVzV
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:525
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Изтриване на стил на страница: $1"
#. wzjRB
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:526
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Преименуване на стил на страница: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:527
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Променен горен/долен колонтитул"
#. tGyeC
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Променено поле"
#. xh3dq
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:529
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Създаване на стил на абзац: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Изтриване на стил на абзац: $1"
#. DtD6w
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:531
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Преименуване на стил на абзац: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:532
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Създаване на стил на знак: $1"
#. FjT56
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:533
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Изтриване на стил на знак: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:534
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Преименуване на стил на знак: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Създаване на стил на рамка: $1"
#. zHLcd
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Изтриване на стил на рамка: $1"
#. BUdbD
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Преименуване на стил на рамка: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Създаване на стил за номериране: $1"
#. zYZW8
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Изтриване на стил за номериране: $1"
#. QhDFe
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Преименуване на стил за номериране: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Преименуване на показалец: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Вмъкване на елемент от указател"
#. fbidx
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Изтриване на елемент от указател"
#. WCDy7
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:544
msgctxt "STR_FIELD"
msgid "field"
msgstr "поле"
#. aC9iU
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr "текстово поле"
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:547
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Абзаци"
#. 9fb4z
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:548
msgctxt "STR_FRAME"
msgid "frame"
msgstr "рамка"
#. gcZ3a
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:549
msgctxt "STR_OLE"
msgid "OLE-object"
msgstr "OLE обект"
#. db5Tg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:550
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "формула"
#. BirkF
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:551
msgctxt "STR_CHART"
msgid "chart"
msgstr "диаграма"
#. YxCuu
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:552
msgctxt "STR_NOTE"
msgid "comment"
msgstr "коментар"
#. CKqsU
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:553
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "препратка"
#. q9BGR
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:554
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "скрипт"
#. o6FWi
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:555
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "библиографски запис"
#. qbRLG
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:556
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "специален знак"
#. qJd8G
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:557
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "бележка под линия"
#. bKvaD
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:558
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "изображение"
#. J7CgG
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:559
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "графичен обект(и)"
#. rYPFG
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:560
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "таблица: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:561
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5284,1665 +5339,1665 @@ msgstr[0] "глава"
msgstr[1] "глави"
#. 2JCL2
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:562
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "абзац"
#. DvnGA
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:563
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Знак за абзац"
#. oL9GG
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Промяна на заглавието на обекта $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Промяна на описанието на обекта $1"
#. rWw8U
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Създаване на стил на таблица: $1"
#. jGxgy
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Изтриване на стил на таблица: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Обновяване на стил на таблица: $1"
#. JegfU
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Изтриване на таблица"
#. KSMpJ
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr "Вмъкване на формулярно поле"
#. 2zJmG
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:571
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr "Можете да зададете до 25 елемента за формулярно поле с падащ списък."
#. CUXeF
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:573
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Изглед на документа"
#. FrBrC
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:574
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Изглед на документа"
#. BCEgS
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:575
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Горен колонтитул $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:576
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Горен колонтитул на страница $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:577
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Долен колонтитул $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:578
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Долен колонтитул на страница $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:579
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Бележка под линия $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:580
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Бележка под линия $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:581
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Бележка в края $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:582
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Бележка в края $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:583
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) на страница $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:584
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Страница $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:574
+#: sw/inc/strings.hrc:585
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Страница: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:586
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Автор"
#. sff9t
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:587
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Дата"
#. VScXC
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:588
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr "Разрешено"
#. JtzA4
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Действия"
#. cHWqM
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "Натиснете този бутон, за да отворите списък с действия, които могат да бъдат изпълнени върху този коментар и други коментари"
#. 9YxaB
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:591
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Мостра на документа"
#. eYFFo
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:592
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Режим на мостра)"
#. Fp7Hn
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:593
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "Документ на %PRODUCTNAME"
#. CsQKH
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:595
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Грешка при четене"
#. ztbVu
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:596
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Изображението не може да бъде показано."
#. iJsFt
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:597
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Грешка при четене от клипборда."
#. bXZQD
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:599
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Ръчен разделител на колони"
#. 7DzNG
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:601
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ред %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:602
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Колона %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:603
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Знак"
#. KBw5e
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:604
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. ERH8o
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:605
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Рамка"
#. Cqjn8
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:606
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Страници"
-#. ncffA
-#: sw/inc/strings.hrc:596
+#. FFZEr
+#: sw/inc/strings.hrc:607
msgctxt "STR_STYLE_FAMILY_NUMBERING"
-msgid "Numbering"
-msgstr "Номерация"
+msgid "List"
+msgstr "Списък"
#. NydLs
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Таблица"
#. XUhuM
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:609
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Клетка"
#. DRqDZ
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:611
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Азиатски"
#. owFtq
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:612
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "Сложни писмености (CTL)"
#. ap5iF
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:613
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Западни"
#. HD64i
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Съдържание"
#. Ka4fM
-#: sw/inc/strings.hrc:605
+#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "~Фон на страници"
#. YPEEH
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:617
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "Изображения и други графични обекти"
#. L6GSj
-#: sw/inc/strings.hrc:607
+#: sw/inc/strings.hrc:618
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Скрит те~кст"
#. pXiRN
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:619
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "~Запазени места за текст"
#. JBWVd
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:620
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Контроли във формуляри"
#. X8Bfu
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:621
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Цвят"
#. kQDcq
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:622
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Печат на текста в ~черно"
#. DEELn
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:623
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Страници:"
#. uddbB
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:624
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Отпечатване на автоматичните празни страници"
#. MTJt2
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:625
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Използване само на касетата от настройките на принтера"
#. 4uBam
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Нищо (само документа)"
#. pbQtA
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:627
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Само коментари"
#. sVnbD
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:628
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "В края на документа"
#. D4BXH
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:629
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "В края на страницата"
#. 6rzab
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:630
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Коментари"
#. cnqLU
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "~Брошура"
#. t6drz
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "От ляво надясно"
#. QgmxB
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:633
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "От дясно наляво"
#. t4Cm7
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:634
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr "Всички страници"
#. ZDRM2
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:635
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Страници:"
#. F862f
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:636
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
msgstr "Четни страници"
#. ttxxB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:637
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
msgstr "Нечетни страници"
#. rajyx
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:638
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "Селекция"
#. 9EXcV
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:639
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Разполагане в полетата"
#. NGQw3
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:641
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Функции"
#. D3RCG
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:642
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Отказ"
#. 3Tg3C
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:643
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Прилагане"
#. UDkFb
-#: sw/inc/strings.hrc:633
+#: sw/inc/strings.hrc:644
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Лента с инструменти Формула"
#. Z3CB5
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:645
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Тип на формула"
#. 3CCa7
-#: sw/inc/strings.hrc:635
+#: sw/inc/strings.hrc:646
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Текст на формула"
#. FXNer
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:648
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "Глобален изглед"
#. aeeRP
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:649
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Изглед за навигация в съдържанието"
#. UAExA
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:650
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Ниво в плана"
#. yERK6
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:651
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Режим при плъзгане"
#. PAB4k
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:652
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Изпращане на плана към клипборда"
#. b5tPU
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:653
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Проследяване в плана"
#. qzXwn
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:654
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr "По подразбиране"
#. HGDgJ
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:655
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr "Фокус"
#. BYRpF
-#: sw/inc/strings.hrc:645
+#: sw/inc/strings.hrc:656
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr "Изключено"
#. 4ASQ7
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:657
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr "Щракнете, за да превключите видимостта на съдържанието."
#. 44jEc
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "Щракнете с десния бутон за включване на поднивата."
#. kDbnu
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:659
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle content visibility"
msgstr "Щракнете, за да превключите видимостта на съдържанието."
#. rkD8H
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "Щракнете с десния бутон за включване на поднивата."
#. JZgRD
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:661
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Content Visibility"
msgstr "Видимост на съдържанието в плана"
#. oBH6y
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr "Превключване"
#. 7UQPv
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:663
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Show All"
msgstr "Показване на всичко"
#. ZUuCQ
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Hide All"
msgstr "Скриване на всичко"
#. 9Fipd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:666
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr "Разгъване на всички"
#. FxGVt
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:667
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr "Свиване на всички"
#. xvSRm
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:668
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Вмъкване като хипервръзка"
#. sdfGe
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:669
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Вмъкване като връзка"
#. Suaiz
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:670
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Вмъкване като копие"
#. VgdhT
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:671
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Показване"
#. 3VXp5
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:672
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Активен прозорец"
#. fAAUc
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:673
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "скрит"
#. 3VWjq
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:674
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "активен"
#. YjPvg
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:675
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "неактивен"
#. tBPKU
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:676
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Редактиране..."
#. ppC87
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:677
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Обновяване"
#. 44Esc
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:678
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Редактиране"
#. w3ZrD
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:679
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Редактиране на връзка"
#. xyPWE
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:680
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Вмъкване"
#. AT9SS
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:681
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Указател"
#. MnBLc
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:682
msgctxt "STR_FILE"
msgid "File"
msgstr "Файл"
#. DdBgh
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:683
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Нов документ"
#. aV9Uy
-#: sw/inc/strings.hrc:673
+#: sw/inc/strings.hrc:684
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Текст"
#. 5rD3D
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:685
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Изтриване"
#. 9MrsU
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:686
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Изтриване"
#. A28Rb
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:687
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Селекция"
#. gRBxA
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:688
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Указатели"
#. WKwLS
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:689
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Връзки"
#. TaaJK
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:690
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Всичко"
#. HpMeb
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:692
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "скрит"
#. XcCnB
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:693
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Не е намерен файл: "
#. UC53U
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:695
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr "РАЗРЕШЕНО"
#. 3ceMF
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:697
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Отляво: "
#. EiXF2
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:698
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Отдясно: "
#. UFpVa
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:699
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Отвътре: "
#. XE7Wb
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:700
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Отвън: "
#. 3A8Vg
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:701
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Отгоре: "
#. dRhyZ
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:702
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". Отдолу: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:705
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Страница"
#. AeDYh
-#: sw/inc/strings.hrc:695
+#: sw/inc/strings.hrc:706
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Ред"
#. kfJG6
-#: sw/inc/strings.hrc:696
+#: sw/inc/strings.hrc:707
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Автор"
#. gejqG
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:708
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Синтактична грешка **"
#. q6dUT
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:709
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Деление на нула **"
#. HSo6d
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:710
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Погрешно използвани скоби **"
#. jcNfg
-#: sw/inc/strings.hrc:700
+#: sw/inc/strings.hrc:711
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Препълване при повдигане на квадрат **"
#. C453V
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:712
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Препълване **"
#. KEQfz
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:713
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Грешка **"
#. hxrg9
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:714
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Изразът е неправилен **"
#. 2yBhF
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:715
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Грешка: не е намерен източникът на обръщение"
#. jgRW7
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:716
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Няма"
#. KRD6s
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:717
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(фиксирано)"
#. FCRUB
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:718
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Д: %3 Ч: %4 М: %5 С: %6"
#. ocA84
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:719
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Азбучен указател"
#. GDCRF
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:720
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Потребителски"
#. vnaNc
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:721
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Таблица на съдържанието"
#. BESjb
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:722
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Библиография"
#. ZFBUD
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:723
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Позоваване"
#. WAs8q
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:724
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Указател на таблиците"
#. NFzTx
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:725
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Таблица на обектите"
#. mSyms
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:726
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Таблица на фигурите"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:728
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Заглавие"
#. ziEpC
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:729
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Тема"
#. FCVZS
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:730
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Ключови думи"
#. kHC7q
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:731
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Коментари"
#. i6psX
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:732
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Създаден"
#. L2Bxp
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:733
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Променен"
#. D2YKS
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:734
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Последно отпечатан"
#. QtuZM
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:735
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Номер на редакция"
#. YDFbi
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:736
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Общо време на редактиране"
#. EpZ9C
-#: sw/inc/strings.hrc:726
+#: sw/inc/strings.hrc:737
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Преобразуване $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:738
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Първо преобразуване $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:739
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Следващо преобразуване $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:729
+#: sw/inc/strings.hrc:740
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Статия"
#. di8ud
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:741
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Книга"
#. GD5KJ
-#: sw/inc/strings.hrc:731
+#: sw/inc/strings.hrc:742
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Брошури"
#. mfFSf
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:743
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Протокол от конференция"
#. Et2Px
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:744
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Извадка от книга"
#. ys2B8
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:745
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Озаглавена извадка от книга"
#. mdEqj
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:746
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Протокол от конференция"
#. jNmVD
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:747
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Списание"
#. M3xkM
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:748
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Техн. документация"
#. EJAj4
-#: sw/inc/strings.hrc:738
+#: sw/inc/strings.hrc:749
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Дипломна работа"
#. NoUCv
-#: sw/inc/strings.hrc:739
+#: sw/inc/strings.hrc:750
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Разни"
#. qNGGE
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:751
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Дисертация"
#. L7W7R
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:752
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Протокол от конференция"
#. X8bGG
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:753
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Доклад за изследване"
#. 4dDC9
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:754
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Непубликувано"
#. Gb38d
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:755
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "Е-поща"
#. 9HKD6
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:756
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Документ в Уеб"
#. qA449
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:757
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Потребителски1"
#. nyzxz
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:758
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Потребителски2"
#. cCFTF
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:759
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Потребителски3"
#. mrqJC
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:760
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Потребителски4"
#. fFs86
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:761
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Потребителски5"
#. nsCwi
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:762
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Кратко име"
#. CpKgc
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Тип"
#. kUGDr
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:764
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Адрес"
#. DquVQ
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:765
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Анотация"
#. sduuV
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:766
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Автор(и)"
#. fXvz6
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:767
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Заглавие на книга"
#. c8PFE
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:768
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Глава"
#. GXqxF
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:769
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Издание"
#. p7A3p
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:770
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Редактор"
#. aAFEz
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:771
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Тип на публикацията"
#. 8DwdJ
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:772
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Институция"
#. VWNxy
-#: sw/inc/strings.hrc:762
+#: sw/inc/strings.hrc:773
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Списание"
#. Da4fW
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Месец"
#. SdSBt
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Бележка"
#. MZYpD
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Брой"
#. ZB7Go
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Организация"
#. C4CdP
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Страница(и)"
#. yFPFa
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Издател"
#. d9u3p
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Университет"
#. Qxsdb
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Поредица"
#. YhXPg
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Заглавие"
#. qEBhL
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Тип на доклада"
#. Sij9w
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Том"
#. K8miv
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Година"
#. pFMSV
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Потребителско1"
#. wtDyU
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Потребителско2"
#. VH3Se
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Потребителско3"
#. twuKb
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Потребителско4"
#. WAo7Z
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Потребителско5"
#. 3r6Wg
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. eFnnx
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:794
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Редактиране на запис за указател"
#. EHTHH
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:795
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Вмъкване на запис за указател"
#. D2gkA
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:796
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "Документът вече съдържа този елемент от библиография, но с различни данни. Желаете ли да бъдат поправени съществуващите елементи?"
#. mK84T
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:798
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Коментари"
#. fwecS
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:799
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Показване на коментарите"
#. HkUvy
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:800
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Скриване на коментарите"
#. FcmEy
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:802
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Съкращението вече съществува. Моля, изберете друго име."
#. VhMST
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:803
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Изтриване на автотекста?"
#. E5MLr
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:804
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Изтриване на категорията "
#. qndNh
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:805
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:806
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Автотекст :"
#. ChetY
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:807
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Записване на автотекст"
#. QxAiF
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:808
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "В този файл няма автотекст."
#. sG8Xt
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:809
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "Моят автотекст"
#. GaoqR
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:811
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Не бе намерен автотекст за комбинацията \"%1\""
#. MwUEP
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:812
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Не може да се вмъкне таблица без редове или без клетки"
#. AawM4
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:813
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Таблицата не може да бъде вмъкната, защото е твърде голяма"
#. GGo8i
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:814
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Автотекстът не може да бъде създаден."
#. DCPSB
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:815
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "Исканият формат на клипборда не е достъпен."
#. YxCCF
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:816
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "Текстов документ на %PRODUCTNAME %PRODUCTVERSION"
#. 8ygN3
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:817
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Изображение (текстов документ на %PRODUCTNAME %PRODUCTVERSION)"
#. ewPPB
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:818
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Обект (текстов документ на %PRODUCTNAME %PRODUCTVERSION)"
#. 9VEc3
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:819
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE връзка)"
#. svrE7
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:821
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Всички коментари"
#. YGNN4
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:822
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Всички коментари"
#. GDH49
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:823
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Коментари от "
#. RwAcm
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:824
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(няма дата)"
#. ytxKG
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:825
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(няма автор)"
#. nAwMG
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:826
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Отговор до $1"
#. CVVa6
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:828
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Редактиране на адресен блок"
#. njGGA
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:829
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Поздрав по избор (получател - мъж)"
#. ZVuKY
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:830
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Поздрав по избор (получател - жена)"
#. h4yuq
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:831
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Елементи на ~поздрава"
#. kWhqT
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:832
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Добавяне към поздрава"
#. hvF3V
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:833
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Премахване от поздрава"
#. A6XaR
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:834
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~Плъзнете елементите на поздрава в долното поле"
#. 4VJWL
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:835
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Поздрав"
#. Vj6XT
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:836
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Препинателен знак"
#. bafeG
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:837
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Текст"
#. tt6sA
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:838
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Припишете полета от източника на данни на елементите на поздрава."
#. zrUsN
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:839
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Мостра на поздрав"
#. 2UVE6
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:840
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Елементи на адреса"
#. Bd6pd
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:841
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Елементи на поздрава"
#. 9krzf
-#: sw/inc/strings.hrc:831
+#: sw/inc/strings.hrc:842
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Съответства на поле:"
#. oahCQ
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:843
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Мостра"
#. ijdxe
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:844
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr "Искате ли да изтриете този регистриран източник на данни?"
#. kE5C3
-#: sw/inc/strings.hrc:835
+#: sw/inc/strings.hrc:846
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " още няма съответствие "
#. Y6FhG
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:847
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Всички файлове"
#. 7cNjh
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:848
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists(*.*)"
msgstr "Списъци с адреси (*.*)"
#. Ef8TY
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:849
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base (*.odb)"
msgstr "%PRODUCTNAME Base (*.odb)"
#. 24opW
-#: sw/inc/strings.hrc:839
+#: sw/inc/strings.hrc:850
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc (*.ods;*.sxc)"
msgstr "%PRODUCTNAME Calc (*.ods;*.sxc)"
#. sq73T
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:851
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer (*.odt;*.sxw)"
msgstr "%PRODUCTNAME Writer (*.odt;*.sxw)"
#. QupGC
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:852
msgctxt "STR_FILTER_DBF"
msgid "dBase (*.dbf)"
msgstr "dBase (*.dbf)"
#. SzqRv
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:853
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
msgstr "Microsoft Excel (*.xls;*.xlsx)"
#. zAUu8
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:854
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word (*.doc;*.docx)"
msgstr "Microsoft Word (*.doc;*.docx)"
#. JBZFc
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:855
msgctxt "STR_FILTER_TXT"
msgid "Plain text (*.txt)"
msgstr "Обикновен текст (*.txt)"
#. CRJb6
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:856
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated (*.csv)"
msgstr "Текст с разделител запетая (*.csv)"
#. U4H2j
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:857
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access (*.mdb;*.mde)"
msgstr "Microsoft Access (*.mdb,*.mde)"
#. DwxF8
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:858
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007 (*.accdb,*.accde)"
msgstr "Microsoft Access 2007 (*.accdb,*.accde)"
#. uDNRt
-#: sw/inc/strings.hrc:848
+#: sw/inc/strings.hrc:859
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -6954,91 +7009,91 @@ msgstr ""
"Желаете ли да въведете информация за регистрация за е-поща?"
#. r9BVg
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:860
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "Списък с адреси на %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:862
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Избор на начален документ"
#. FiUyK
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:863
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Избор на тип документи"
#. QwrpS
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:864
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Вмъкване на адресен блок"
#. omRZF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:865
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Избор на списък с адреси"
#. YrDuD
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:866
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Създаване на поздрав"
#. tTr4B
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:867
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Настройка на оформлението"
#. S4p5M
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:868
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "Изключване на получателя"
#. N5YUH
-#: sw/inc/strings.hrc:858
+#: sw/inc/strings.hrc:869
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Готово"
#. L5FEG
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:870
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Помощник за циркулярни писма"
#. CEhZj
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:872
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Таблица"
#. v9hEB
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:873
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Заявка"
#. HxGAu
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:875
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Желаете ли проверката да продължи от началото на документа?"
#. gE7CA
-#: sw/inc/strings.hrc:865
+#: sw/inc/strings.hrc:876
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Проверката на правописа завърши."
#. 2SuqF
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:877
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "Не е наличен речник"
@@ -7048,252 +7103,252 @@ msgstr "Не е наличен речник"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:883
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Дата"
#. V9cQp
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:884
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Час"
#. 2zgWi
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Име на файл"
#. FdSaU
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:886
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Име на БД"
#. XZADh
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:887
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
msgstr "Глава"
#. wYWy2
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:888
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Номер на страница"
#. EXC6N
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:889
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Статистика"
#. EW86G
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:890
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Автор"
#. 5aFak
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:891
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Шаблони"
#. 3wdud
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:892
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Подател"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:883
+#: sw/inc/strings.hrc:894
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Задаване стойност на променлива"
#. ckA26
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:895
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Показване на променлива"
#. Fjzgu
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:896
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Вмъкване на формула"
#. AXoAT
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:897
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Входно поле"
#. VfqNE
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:898
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Входно поле (променлива)"
#. E8JAd
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:899
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Входно поле (потребител)"
#. 8LGEQ
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:900
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Условен текст"
#. jrZ7i
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:901
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE поле"
#. 9WAT9
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:902
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Изпълняване на макрос"
#. qEBxa
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:903
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Числов диапазон"
#. ACE5s
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:904
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Задаване стойност на променлива за страницата"
#. ayB3N
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:905
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Показване на променлива за страницата"
#. DBM4P
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:906
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Зареждане на URL"
#. LJFF5
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:907
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Запазено място"
#. zZCg6
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:908
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Комбиниране на знаци"
#. 9MGU6
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:909
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Входен списък"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:911
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Задаване на препратка"
#. FJ2X8
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:912
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Вмъкване на препратка"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:914
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Полета за циркулярно писмо"
#. JP2DU
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:915
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Следващ запис"
#. GizhA
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:916
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Произволен запис"
#. aMGxm
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:917
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Номер на запис"
#. DtYzi
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:918
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Предишна страница"
#. UCSej
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:919
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Следваща страница"
#. M8Fac
-#: sw/inc/strings.hrc:909
+#: sw/inc/strings.hrc:920
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Скрит текст"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:922
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Потребителско поле"
#. XELYN
-#: sw/inc/strings.hrc:912
+#: sw/inc/strings.hrc:923
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Бележка"
#. MB6kt
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:924
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Скрипт"
#. BWU6A
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:925
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Библиографски запис"
#. 7EGCR
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:926
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Скрит абзац"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:917
+#: sw/inc/strings.hrc:928
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Информация за документа"
@@ -7302,87 +7357,87 @@ msgstr "Информация за документа"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:932
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Дата"
#. qMCEh
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:933
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Дата (фиксирана)"
#. AXmyw
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:934
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Час"
#. 6dxVs
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:935
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Час (фиксиран)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:937
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Таблици"
#. 7qW4K
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:938
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Знаци"
#. zDRCp
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:939
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Думи"
#. 2wgLC
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:940
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Абзаци"
#. JPGG7
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:941
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Изображение"
#. CzoFh
-#: sw/inc/strings.hrc:931
+#: sw/inc/strings.hrc:942
msgctxt "FLD_STAT_OBJ"
msgid "Objects"
msgstr "Обекти"
#. bDG6R
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:943
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Страници"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:945
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE автоматично"
#. xPP2E
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:946
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE ръчно"
#. spdXd
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:947
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Текст]"
@@ -7391,103 +7446,103 @@ msgstr "[Текст]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:952
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Фирма"
#. WWxTK
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:953
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Собствено име"
#. 4tdAc
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:954
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Фамилно име"
#. xTV7n
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:955
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Инициали"
#. AKD3k
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:956
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Улица"
#. ErMju
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:957
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Държава"
#. ESbkx
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:958
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Пощенски код"
#. WDAc2
-#: sw/inc/strings.hrc:948
+#: sw/inc/strings.hrc:959
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Град"
#. pg7MV
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:960
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Заглавие"
#. DwLhZ
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:961
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Позиция"
#. LDTdu
-#: sw/inc/strings.hrc:951
+#: sw/inc/strings.hrc:962
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Тел. (домашен)"
#. JBZyj
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:963
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Тел. (служебен)"
#. 5EmGH
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:964
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Факс"
#. AtN9J
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:965
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "Е-поща"
#. 6GBRm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:966
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Щат/област"
#. pbrdQ
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:967
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "изкл."
#. wC8SE
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:968
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "вкл."
@@ -7497,37 +7552,37 @@ msgstr "вкл."
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:973
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Име на файл"
#. RBpz3
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:974
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Име на файл без разширението"
#. BCzy8
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:975
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Път/име на файл"
#. ChFwM
-#: sw/inc/strings.hrc:965
+#: sw/inc/strings.hrc:976
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Път"
#. R6KrL
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:977
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
-msgstr ""
+msgstr "Име на шаблона"
#. ANM2H
-#: sw/inc/strings.hrc:967
+#: sw/inc/strings.hrc:978
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Категория"
@@ -7536,25 +7591,25 @@ msgstr "Категория"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:982
msgctxt "FMT_CHAPTER_NAME"
msgid "Chapter name"
msgstr "Заглавие на глава"
#. tnLqE
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:983
msgctxt "FMT_CHAPTER_NO"
msgid "Chapter number"
msgstr "Номер на глава"
#. qGEAs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:984
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Chapter number without separator"
msgstr "Номер на глава (без разделител)"
#. WFA5R
-#: sw/inc/strings.hrc:974
+#: sw/inc/strings.hrc:985
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Chapter number and name"
msgstr "Заглавие и номер на глава"
@@ -7563,55 +7618,55 @@ msgstr "Заглавие и номер на глава"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:989
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:990
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:991
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:992
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:982
+#: sw/inc/strings.hrc:993
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Римски (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:994
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Римски (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:995
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Арабски (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:996
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Като стила на страница"
#. xBKwZ
-#: sw/inc/strings.hrc:986
+#: sw/inc/strings.hrc:997
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Текст"
@@ -7620,13 +7675,13 @@ msgstr "Текст"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:1001
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Име"
#. RCnZb
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:1002
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Инициали"
@@ -7635,49 +7690,49 @@ msgstr "Инициали"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:1006
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Системен"
#. qKXLW
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:1007
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Текст"
#. E86ZD
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:1008
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Име"
#. FB3Rp
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:1009
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Текст"
#. KiBai
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Формула"
#. 9AsdS
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Текст"
#. GokUf
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "База от данни"
#. UBADL
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Системен"
@@ -7686,19 +7741,19 @@ msgstr "Системен"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1017
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Автор"
#. aqFVp
-#: sw/inc/strings.hrc:1007
+#: sw/inc/strings.hrc:1018
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Час"
#. FaZKx
-#: sw/inc/strings.hrc:1008
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Дата"
@@ -7707,79 +7762,79 @@ msgstr "Дата"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1023
msgctxt "FMT_REF_TEXT"
msgid "Reference"
msgstr "Обръщение"
#. L7dK7
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1024
msgctxt "FMT_REF_PAGE"
msgid "Page"
msgstr "Страница"
#. MaB3q
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1025
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Глава"
#. 8FciB
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_REF_UPDOWN"
msgid "Above/Below"
msgstr "По-горе/по-долу"
#. Vq8mj
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "As Page Style"
msgstr "Като стила на страница"
#. CQitd
-#: sw/inc/strings.hrc:1017
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Категория и номер"
#. BsvCn
-#: sw/inc/strings.hrc:1018
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Текст на надписа"
#. P7wiX
-#: sw/inc/strings.hrc:1019
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
msgstr "Номерация"
#. QBGit
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Номер"
#. CGkV7
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Номер (без контекст)"
#. XgSb3
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Номер (пълен контекст)"
#. zQTNF
-#: sw/inc/strings.hrc:1024
+#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Опр. член a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1025
+#: sw/inc/strings.hrc:1036
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Опр. член A/Az + "
@@ -7788,31 +7843,31 @@ msgstr "Опр. член A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1040
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Текст"
#. rAQoE
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1041
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Таблица"
#. biUa2
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1042
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Рамка"
#. 7mkZb
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Изображение"
#. GgbFY
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Обект"
@@ -7821,1499 +7876,1499 @@ msgstr "Обект"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1037
+#: sw/inc/strings.hrc:1048
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Условие"
#. X9cqJ
-#: sw/inc/strings.hrc:1038
+#: sw/inc/strings.hrc:1049
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Тогава, Иначе"
#. bo8yF
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1050
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE инструкция"
#. LixXA
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1051
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Скрит т~екст"
#. EX3bJ
-#: sw/inc/strings.hrc:1041
+#: sw/inc/strings.hrc:1052
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "~Име на макрос"
#. dNZtd
-#: sw/inc/strings.hrc:1042
+#: sw/inc/strings.hrc:1053
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Препратка"
#. bfRPa
-#: sw/inc/strings.hrc:1043
+#: sw/inc/strings.hrc:1054
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Зн~аци"
#. j2G5G
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1055
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "От~местване"
#. vEgGo
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1056
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Стойност"
#. YQesU
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1057
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Формула"
#. Eq5xq
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1058
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "По избор"
#. 32NzA
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1060
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[По избор]"
#. dYQTU
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1062
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "Хор. стъпка"
#. xELZY
-#: sw/inc/strings.hrc:1052
+#: sw/inc/strings.hrc:1063
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "Вер. стъпка"
#. F9Ldz
-#: sw/inc/strings.hrc:1053
+#: sw/inc/strings.hrc:1064
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Ширина"
#. rdxcb
-#: sw/inc/strings.hrc:1054
+#: sw/inc/strings.hrc:1065
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Височина"
#. DQm2h
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1066
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Ляво поле"
#. imDMU
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1067
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Горно поле"
#. ayQss
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1068
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Колони"
#. 3moLd
-#: sw/inc/strings.hrc:1058
+#: sw/inc/strings.hrc:1069
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Редове"
#. XWMSH
-#: sw/inc/strings.hrc:1060
+#: sw/inc/strings.hrc:1071
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Брой на думите и знаците. Щракнете, за да отворите диалога „Брой думи“."
#. nxGNq
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1072
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Изглед с една страница"
#. 57ju6
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1073
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Многостраничен изглед"
#. tbig8
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1074
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Изглед като книга"
#. xBHUG
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1075
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Номер на страница в документа. Щракнете, за да отворите диалога „Преминаване към страница“, или с десния бутон за списък с показалци."
#. XaF3v
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1076
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Номер на страницата в документа (номер на страницата при печатане). Щракнете, за да отворите диалога „Преминаване към страница“."
#. EWtd2
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1077
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Стил на страницата. Щракнете с десния бутон за смяна на стила или с левия – за диалога „Стил“."
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1080
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Бити букви над"
#. PLAVt
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1081
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "реда"
#. sg6Za
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1082
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Без бити букви"
#. gueRC
-#: sw/inc/strings.hrc:1072
+#: sw/inc/strings.hrc:1083
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Без знак за нова страница"
#. G3CQN
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1084
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Без огледално обръщане"
#. MVEk8
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1085
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Вертикално обръщане"
#. Dns6t
-#: sw/inc/strings.hrc:1075
+#: sw/inc/strings.hrc:1086
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Хоризонтално обръщане"
#. ZUKCy
-#: sw/inc/strings.hrc:1076
+#: sw/inc/strings.hrc:1087
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Хоризонтално и вертикално обръщане"
#. LoQic
-#: sw/inc/strings.hrc:1077
+#: sw/inc/strings.hrc:1088
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ обръщане на обекта на четните страници"
#. kbnTf
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1089
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Знаков стил"
#. D99ZJ
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1090
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Без знаков стил"
#. fzG3P
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1091
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Долен колонтитул"
#. 9RCsQ
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1092
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Без долен колонтитул"
#. zFTin
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1093
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Горен колонтитул"
#. PcYEB
-#: sw/inc/strings.hrc:1083
+#: sw/inc/strings.hrc:1094
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Без горен колонтитул"
#. 8Jgfg
-#: sw/inc/strings.hrc:1084
+#: sw/inc/strings.hrc:1095
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr "Оптимално"
#. HEuGy
-#: sw/inc/strings.hrc:1085
+#: sw/inc/strings.hrc:1096
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Няма"
#. 4tA4q
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1097
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "През"
#. ypvD6
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1098
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr "Успоредно"
#. hyEQ5
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1099
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr "Преди"
#. bGBtQ
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1100
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr "След"
#. SrG3D
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1101
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Само котва)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1102
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Ширина:"
#. 2GYT7
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1103
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Фиксирана височина:"
#. QrFMi
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1104
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Мин. височина:"
#. kLiYd
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1105
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "към абзац"
#. bEavs
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1106
msgctxt "STR_FLY_AS_CHAR"
msgid "to character"
msgstr "към знак"
#. hDUSa
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1107
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "към страница"
#. JMHRz
-#: sw/inc/strings.hrc:1097
+#: sw/inc/strings.hrc:1108
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Координата X:"
#. oCZWW
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1109
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Координата Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1099
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "в началото"
#. GPTAu
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Вертикално центриране"
#. fcpTS
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1112
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "в края"
#. 37hos
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1113
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Над реда"
#. MU7hC
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1114
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Центриране в реда"
#. ZvEq7
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1115
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Под реда"
#. jypsG
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1116
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "Редова разредка на сраницата"
#. Cui3U
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1117
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "Без редова разредка на страницата"
#. 4RL9X
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1118
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "отдясно"
#. wzGK7
-#: sw/inc/strings.hrc:1108
+#: sw/inc/strings.hrc:1119
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Хоризонтално центриране"
#. ngRmB
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1120
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "отляво"
#. JyHkM
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1121
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "отвътре"
#. iXSZZ
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1122
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "отвън"
#. kDY9Z
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1123
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Пълна ширина"
#. Hvn8D
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1124
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Колони"
#. 6j6TA
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1125
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Ширина на разделител:"
#. dvdDt
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Макс. област на бележките под линия:"
#. BWqF3
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1127
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Може да се редактира в документ само за четене"
#. SCL5F
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1128
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Разделяне"
-#. AETHf
-#: sw/inc/strings.hrc:1118
+#. CFmBk
+#: sw/inc/strings.hrc:1129
msgctxt "STR_NUMRULE_ON"
-msgid "Numbering"
-msgstr "Номерация"
+msgid "List Style: (%LISTSTYLENAME)"
+msgstr "Стил за списъци: (%LISTSTYLENAME)"
-#. 7HmsY
-#: sw/inc/strings.hrc:1119
+#. HvZBm
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NUMRULE_OFF"
-msgid "no numbering"
-msgstr "без номерация"
+msgid "List Style: (None)"
+msgstr "Стил за списъци: (няма)"
#. QDaFk
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1131
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "свързано към "
#. rWmT8
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1132
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "и "
#. H2Kwq
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1133
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Преброяване на редове"
#. yjSiJ
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1134
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "да не се броят редовете"
#. HE4BV
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1135
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "ново броене на редове от: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1136
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Яркост: "
#. sNxPE
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1137
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Червено: "
#. u73NC
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1138
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Зелено: "
#. qQsPp
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1139
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Синьо: "
#. BS4nZ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Контраст: "
#. avJBK
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1141
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Гама: "
#. HQCJZ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1142
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Прозрачност: "
#. 5jDK3
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1143
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Инвертиране"
#. DVSAx
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1144
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "да не се инвертира"
#. Z7tXB
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1145
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Режим на графиката: "
#. RXuUF
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1146
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Стандартно"
#. kbALJ
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1147
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Степени на сивото"
#. eSHEj
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1148
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Черно-бяло"
#. tABTr
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1149
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Воден знак"
#. 8SwC3
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1150
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Завъртане"
#. hWEeF
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1151
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Без мрежа"
#. HEuEv
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1152
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Мрежа (само редове)"
#. VFgMq
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1153
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Мрежа (редове и знаци)"
#. VRJrB
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1154
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Следване изливането на текста"
#. Sb3Je
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Без следване изливането на текста"
#. yXFKP
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1156
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Обединяване на кантове"
#. vwHbS
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1157
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Без обединяване на кантове"
#. 3874B
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1159
msgctxt "ST_TBL"
msgid "Table"
msgstr "Таблица"
#. T9JAj
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1160
msgctxt "ST_FRM"
msgid "Frame"
-msgstr ""
+msgstr "Рамка"
#. Fsnm6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1161
msgctxt "ST_PGE"
msgid "Page"
msgstr "Страница"
#. pKFCz
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1162
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Рисунка"
#. amiSY
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1163
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Контрола"
#. GEw9u
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1164
msgctxt "ST_REG"
msgid "Section"
msgstr "Раздел"
#. bEiyL
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1165
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Показалец"
#. 6gXCo
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1166
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Графика"
#. d5eSc
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1167
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE обект"
#. h5QQ8
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1168
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Заглавия"
#. Cbktp
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1169
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Селекция"
#. nquvS
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1170
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Бележка под линия"
#. GpAUo
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1171
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Напомняне"
#. nDFKa
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1172
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Коментар"
#. qpbDE
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1173
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Повторно търсене"
#. ipxfH
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1174
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Запис за указател"
#. sfmff
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1175
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Таблична формула"
#. DtkuT
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1176
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Неправилна таблична формула"
#. A6Vgk
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1177
msgctxt "ST_RECENCY"
msgid "Recency"
-msgstr ""
+msgstr "Скорошност"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1179
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Следваща таблица"
#. yhnpi
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1180
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
-msgstr ""
+msgstr "Следваща рамка"
#. M4BCA
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1181
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Следваща страница"
#. UWeq4
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1182
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Следваща рисунка"
#. ZVCrD
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1183
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Следваща контрола"
#. NGAqr
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1184
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Следващ раздел"
#. Mwcvm
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1185
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Следващ показалец"
#. xbxDs
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1186
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Следваща графика"
#. 4ovAF
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1187
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Следващ OLE обект"
#. YzK6w
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1188
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Следващо заглавие"
#. skdRc
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1189
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Следваща селекция"
#. RBFga
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Следваща бележка под линия"
#. GNLrx
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Следващо напомняне"
#. mFCfp
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Следващ коментар"
#. gbnwp
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Продължаване търсенето напред"
#. TXYkA
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Следващ елемент от указател"
#. EyvbV
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Предишна таблица"
#. cC5vJ
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
-msgstr ""
+msgstr "Предишна рамка"
#. eQPFD
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Предишна страница"
#. p5jbU
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Предишна рисунка"
#. 2WMmZ
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Предишна контрола"
#. 6uGDP
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Предишен раздел"
#. YYCtk
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Предишен показалец"
#. nFLdX
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Предишна графика"
#. VuxvB
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Предишен OLE обект"
#. QSuct
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Предишно заглавие"
#. CzLBr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Предишна селекция"
#. B7PoL
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Предишна бележка под линия"
#. AgtLD
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Предишно напомняне"
#. GJQ6F
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Предишен коментар"
#. GWnfD
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Продължаване търсенето назад"
#. uDtcG
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Предишен елемент от указател"
#. VR6DX
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Предишна таблична формула"
#. GqESF
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Следваща таблична формула"
#. gBgxo
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Предишна неправилна таблична формула"
#. UAon9
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Следваща неправилна таблична формула"
#. L2Apv
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
-msgstr ""
+msgstr "Назад"
#. jCsGs
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
-msgstr ""
+msgstr "Напред"
#. hSYa3
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1218
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Вмъкнато"
#. LnFkq
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1219
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Изтрито"
#. cTNEn
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1220
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Форматирано"
#. YWr7C
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1221
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Променена таблица"
#. 6xVDN
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1222
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Приложени абзацни стилове"
#. 32AND
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Променен формат на абзац"
#. wLDkj
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Вмъкнат ред"
#. Eb5Gb
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1225
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Изтрит ред"
#. i5ZJt
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1226
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Вмъкната клетка"
#. 4gE3z
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1227
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Изтрита клетка"
#. DRCyp
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1228
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Бележка в края: "
#. qpW2q
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1229
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Бележка под линия: "
#. 3RFUd
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1230
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "Щракнете с %s, за да отворите менюто на умното етикетче"
#. QCD36
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1231
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Горен колонтитул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1232
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Горен колонтитул на първата страница (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1233
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Горен колонтитул на лява страница (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1234
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Горен колонтитул на дясна страница (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1235
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Долен колонтитул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1236
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Долен колонтитул на първата страница (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1237
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Долен колонтитул на лява страница (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1238
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Долен колонтитул на дясна страница (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1239
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Изтриване на горния колонтитул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1240
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Форматиране на горния колонтитул..."
#. DrAUe
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1241
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Изтриване на долния колонтитул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1242
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Форматиране на долния колонтитул..."
#. ApT5B
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1244
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Фиксиране на плаваща таблица"
#. wVAZJ
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1246
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
-msgstr ""
+msgstr "Редактиране на знак за нова страница"
#. uvDKE
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1248
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Файлът с изображението не може да бъде отворен"
#. iJuAv
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1249
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Файлът с изображението не може да бъде прочетен"
#. Bwwho
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1250
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Неизвестен формат на изображение"
#. bfog5
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1251
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Версията на файла с изображението не се поддържа"
#. xy4Vm
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1252
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Не е намерен филтър за изображението"
#. tEqyq
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1253
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Няма достатъчно памет за вмъкване на изображението."
#. 5ihue
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1254
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Вмъкване на изображение"
#. GWzLN
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Коментар: "
#. CoJc8
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Вмъкване"
#. dfMEF
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Изтриване"
#. NytQQ
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Автокорекция"
#. YRAQL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Формати"
#. ELCVU
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Промени в таблицата"
#. PzfQF
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Приложени типове абзаци"
#. sgEbW
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1262
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Страница "
#. 3DpEx
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1263
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Страница %1 от %2"
#. HSbzS
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1264
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Страница %1 от %2 (страница %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1265
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Страница %1 от %2 (страница %3 от %4 за печат)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1268
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Изображение"
#. UBDMK
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1269
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE обект"
#. xEWbo
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1270
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Рамка"
#. hfJns
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1271
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Таблица"
#. GRqNY
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1272
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Ред на таблица"
#. CDQY4
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1273
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Клетка на таблица"
#. 2Db9T
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1274
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Страница"
#. 63FuG
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1275
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Горен колонтитул"
#. aDuAY
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1276
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Долен колонтитул"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1279
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Документ на HTML на %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1281
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Заглавие"
#. AipGR
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1282
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Разделител"
#. CoSEf
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1283
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Ниво "
#. JdTF4
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1284
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Файлът \"%1\" в директорията \"%2\" не може да бъде открит."
#. zRWDZ
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1285
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Потребителски указател"
#. t5uWs
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1286
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Няма>"
#. vSSnJ
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1287
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Няма>"
#. NSx98
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1288
msgctxt "STR_DELIM"
msgid "S"
msgstr "Р"
#. hK8CX
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1289
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "Е#"
#. 8EgTx
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1290
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "Е"
#. gxt8B
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1291
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "Т"
#. pGAb4
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1292
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1293
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "ИГ"
#. XWaFn
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1294
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "НХ"
#. xp6D6
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1295
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "КХ"
#. AogDK
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "И"
#. 5A4jw
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1297
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Номер на глава"
#. FH365
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1298
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Елемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1299
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Табулатор"
#. aXW8y
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1300
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Текст"
#. MCUd2
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1301
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Номер на страница"
#. pXqw3
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1302
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Информация за главата"
#. DRBSD
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1303
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Начало на хипервръзка"
#. Ytn5g
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Край на хипервръзка"
#. hRo3J
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Библиографски запис: "
#. ZKG5v
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1306
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Знаков стил: "
#. d9BES
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1307
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Текст на структурата"
#. kwoGP
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1308
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Ctrl+Alt+A премества фокуса за допълнителни операции"
#. Avm9y
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1309
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Стрелките наляво и надясно избират контролите на структурата"
#. 59eRi
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1310
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Ctrl+Alt+B фокусира отново текущата контрола на структурата"
#. 8AagG
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1311
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Файл за избор за азбучния указател (*.sdi)"
@@ -9322,259 +9377,259 @@ msgstr "Файл за избор за азбучния указател (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1316
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Базова линия отгоре"
#. 5GiEA
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1317
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Базова линия отдолу"
#. sdyVF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1318
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Центрирана базова линия"
#. NAXyZ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1319
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Вмъкване на обект"
#. 5C6Rc
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1320
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Редактиране на обект"
#. 3QFYB
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1321
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Шаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1322
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Кантове"
#. T2SH2
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1323
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Фон"
#. K6Yvs
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Стил на абзац: "
#. Fsanh
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1326
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Не е възможно да се постави номер на текущата страница. Четни номера могат да се използват само на леви страници, а нечетни – само на десни страници."
#. VZnJf
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1328
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "Главен документ на %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1330
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "Свързването с файл ще изтрие съдържанието на текущия раздел. Желаете ли свързване въпреки това?"
#. dLuAF
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1331
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Въведената парола е невалидна."
#. oUR7Y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1332
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Не е зададена парола."
#. GBVqD
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1334
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Сричкопренасянето завърши"
#. rZBXF
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1335
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "(без проверка на правописа)"
#. Z8EjG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1336
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Връщане на подразбирания език"
#. YEXdS
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1337
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Повече..."
#. QecQ3
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1338
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Игнориране"
#. aaiBM
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1339
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Пояснения..."
#. kSDGu
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1341
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Проверката в специалните области е изключена. Желаете ли проверка все пак?"
#. KiAdJ
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1342
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Документите не могат да бъдат обединени."
#. FqsCt
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1343
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "Компонентът %PRODUCTNAME Base отсъства, а е необходим за работата с циркулярни писма."
#. wcuf4
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1344
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Изходният код не може да бъде зареден."
#. K9qMS
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1345
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Не е посочен факс в Инструменти/Настройки/%1/Печат."
#. XWQ8w
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Документ на HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Текстов документ"
#. qmmPU
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1348
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Не е указан източник."
#. 2LgDJ
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1349
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Ниво "
#. AcAD8
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1350
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "План "
#. DE9FZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1351
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Редактиране на бележката под линия/в края"
#. EzBCZ
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1352
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Търсеният низ е заменен XX пъти."
#. fgywB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1353
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ред "
#. GUc4a
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1354
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Колона "
#. yMyuo
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1355
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Експортиране на изходен код..."
#. ywFCb
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1356
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Експортиране копие на изходния код..."
#. BT3M3
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1358
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Продължаване"
#. ZR9aw
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1359
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Получател: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1360
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Успешно изпращане"
#. fmHmE
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1361
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Неуспешно изпращане"
#. yAAPM
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1365
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Текстова формула"
#. RmBFW
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1367
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Не е указан елемент"
@@ -9583,7 +9638,7 @@ msgstr "Не е указан елемент"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1373
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Класификацията на документа бе променена, защото нивото на класификация на някой абзац е по-високо."
@@ -9592,121 +9647,121 @@ msgstr "Класификацията на документа бе промене
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1378
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Валиден "
#. xAKRC
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1379
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Невалиден"
#. pDAHz
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1380
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Невалиден подпис"
#. etEEx
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1381
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Подписано от"
#. BK7ub
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1382
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Подпис на абзаца"
#. kZKCf
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1384
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Визитни картички"
#. ECFij
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1386
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "Настройки за е-поща"
#. PwrB9
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1388
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Вмъкване"
#. NL48o
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1389
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Изтриване"
#. PW4Bz
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1390
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрибути"
#. yfgiq
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1392
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Термин за търсене"
#. fhLzk
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1393
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Алтернативен запис"
#. gD4D3
-#: sw/inc/strings.hrc:1383
+#: sw/inc/strings.hrc:1394
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-ви ключ"
#. BFszo
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1395
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-ри ключ"
#. EoAB8
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1396
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Коментар"
#. Shstx
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1397
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Зачитане на регистъра"
#. 8Cjvb
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1398
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Само дума"
#. zD8rb
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1399
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Да"
#. 4tTop
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1400
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Не"
#. KhKwa
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1402
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "По избор"
@@ -9837,6 +9892,12 @@ msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "Добавяне на непрекъсваем интервал"
+#. FHPwi
+#: sw/inc/utlui.hrc:49
+msgctxt "RID_SHELLRES_AUTOFMTSTRS"
+msgid "Transliterates RTL Hungarian text to Old Hungarian script"
+msgstr "Транслитерира текст на унгарски с посока от дясно наляво към староунгарска писменост."
+
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
msgctxt "abstractdialog|AbstractDialog"
@@ -10999,25 +11060,25 @@ msgstr "Нулиране"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:162
msgctxt "bulletsandnumbering|bullets"
msgid "Unordered"
-msgstr ""
+msgstr "Неподреден"
#. qqAgU
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:163
msgctxt "bulletsandnumbering|bullets"
msgid "Select a bullet type for an unordered list."
-msgstr ""
+msgstr "Изберете тип водещ символ за неподреден списък."
#. pHHPT
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:210
msgctxt "bulletsandnumbering|singlenum"
msgid "Ordered"
-msgstr ""
+msgstr "Подреден"
#. aELAv
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:211
msgctxt "bulletsandnumbering|singlenum"
msgid "Select a numbering scheme for an ordered list."
-msgstr ""
+msgstr "Изберете схема за номерация на подреден списък."
#. 8AADg
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:259
@@ -11029,7 +11090,7 @@ msgstr "План"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:260
msgctxt "bulletsandnumbering|outlinenum"
msgid "Select an outline format for an ordered list."
-msgstr ""
+msgstr "Изберете формат с подточки за подреден списък."
#. hW6yn
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:308
@@ -11041,7 +11102,7 @@ msgstr "Изображение"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:309
msgctxt "bulletsandnumbering|graphics"
msgid "Select a graphic bullet symbol for an unordered list."
-msgstr ""
+msgstr "Изберете графичен водещ символ за неподреден списък."
#. zVTFe
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:357
@@ -11053,7 +11114,7 @@ msgstr "Позиция"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:358
msgctxt "bulletsandnumbering|position"
msgid "Modify indent, spacing, and alignment options for ordered and unordered lists."
-msgstr ""
+msgstr "Настройки за отстъп, разстояния и подравняване на подредени и неподредени списъци."
#. nFfDs
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:406
@@ -11065,7 +11126,7 @@ msgstr "Настройки"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:407
msgctxt "bulletsandnumbering|customize"
msgid "Design your own bullet or numbering scheme."
-msgstr ""
+msgstr "Задайте своя собствена схема за водещи знаци или номериране."
#. rK9Jk
#: sw/uiconfig/swriter/ui/businessdatapage.ui:26
@@ -11593,13 +11654,13 @@ msgstr "Знак"
#: sw/uiconfig/swriter/ui/characterproperties.ui:32
msgctxt "characterproperties|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "Незаписаните промени в този раздел се отменят."
#. tLVfC
#: sw/uiconfig/swriter/ui/characterproperties.ui:35
msgctxt "characterproperties|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
-msgstr ""
+msgstr "Отмяна на всички промени в показания тук раздел, в настройките, които са присъствали при отваряне на диалога."
#. GJNuu
#: sw/uiconfig/swriter/ui/characterproperties.ui:159
@@ -12061,7 +12122,7 @@ msgstr "Приложени стилове"
#: sw/uiconfig/swriter/ui/conditionpage.ui:99
msgctxt "conditionpage|extended_tip|links"
msgid "Here you can see the %PRODUCTNAME predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer."
-msgstr ""
+msgstr "Тук можете да видите предварително дефинираните контексти на %PRODUCTNAME, включително нива в плана от 1 до 10, заглавка и съдържание на таблица, раздел, кант, бележка под линия и колонтитули"
#. nDZqL
#: sw/uiconfig/swriter/ui/conditionpage.ui:128
@@ -12199,61 +12260,61 @@ msgstr "10-то ниво на плана"
#: sw/uiconfig/swriter/ui/conditionpage.ui:243
msgctxt "conditionpage|filter"
msgid " 1st List Level"
-msgstr ""
+msgstr " 1-во ниво в списък"
#. sGSZA
#: sw/uiconfig/swriter/ui/conditionpage.ui:244
msgctxt "conditionpage|filter"
msgid " 2nd List Level"
-msgstr ""
+msgstr " 2-ро ниво в списък"
#. FGGC4
#: sw/uiconfig/swriter/ui/conditionpage.ui:245
msgctxt "conditionpage|filter"
msgid " 3rd List Level"
-msgstr ""
+msgstr " 3-то ниво в списък"
#. kne44
#: sw/uiconfig/swriter/ui/conditionpage.ui:246
msgctxt "conditionpage|filter"
msgid " 4th List Level"
-msgstr ""
+msgstr " 4-то ниво в списък"
#. Wjkzx
#: sw/uiconfig/swriter/ui/conditionpage.ui:247
msgctxt "conditionpage|filter"
msgid " 5th List Level"
-msgstr ""
+msgstr " 5-то ниво в списък"
#. R7zrU
#: sw/uiconfig/swriter/ui/conditionpage.ui:248
msgctxt "conditionpage|filter"
msgid " 6th List Level"
-msgstr ""
+msgstr " 6-то ниво в списък"
#. A4QuR
#: sw/uiconfig/swriter/ui/conditionpage.ui:249
msgctxt "conditionpage|filter"
msgid " 7th List Level"
-msgstr ""
+msgstr " 7-мо ниво в списък"
#. RiFQb
#: sw/uiconfig/swriter/ui/conditionpage.ui:250
msgctxt "conditionpage|filter"
msgid " 8th List Level"
-msgstr ""
+msgstr " 8-мо ниво в списък"
#. AoCPE
#: sw/uiconfig/swriter/ui/conditionpage.ui:251
msgctxt "conditionpage|filter"
msgid " 9th List Level"
-msgstr ""
+msgstr " 9-то ниво в списък"
#. gLAFZ
#: sw/uiconfig/swriter/ui/conditionpage.ui:252
msgctxt "conditionpage|filter"
msgid "10th List Level"
-msgstr ""
+msgstr "10-то ниво в списък"
#. AniaD
#: sw/uiconfig/swriter/ui/conditionpage.ui:273
@@ -12787,13 +12848,13 @@ msgstr "Изберете елемент: "
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:40
msgctxt "dropdownfielddialog|prev"
msgid "_Previous"
-msgstr ""
+msgstr "Предишен"
#. 2Wx2B
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:53
msgctxt "dropdownfielddialog|next"
msgid "_Next"
-msgstr ""
+msgstr "Следващ"
#. USGaG
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59
@@ -13889,7 +13950,7 @@ msgstr "Вмъква поле на текущата позиция на курс
#: sw/uiconfig/swriter/ui/findentrydialog.ui:24
msgctxt "findentrydialog|find"
msgid "_Find"
-msgstr ""
+msgstr "Търсене"
#. yfE3P
#: sw/uiconfig/swriter/ui/findentrydialog.ui:33
@@ -14573,7 +14634,7 @@ msgstr "Таблица"
#: sw/uiconfig/swriter/ui/floatingnavigation.ui:50
msgctxt "floatingnavigation|ST_FRM"
msgid "Frame"
-msgstr ""
+msgstr "Рамка"
#. EmyjV
#: sw/uiconfig/swriter/ui/floatingnavigation.ui:64
@@ -14969,7 +15030,7 @@ msgstr "Въведете текста, който искате да се изп
#: sw/uiconfig/swriter/ui/footnotepage.ui:230
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering scheme that you want to use."
-msgstr ""
+msgstr "Изберете желаната схема за номериране."
#. Gzv4E
#: sw/uiconfig/swriter/ui/footnotepage.ui:248
@@ -15113,7 +15174,7 @@ msgstr "_След:"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:179
msgctxt "footnotesendnotestabpage|extended_tip|ftnnumviewbox"
msgid "Select the numbering scheme for the footnotes."
-msgstr ""
+msgstr "Изберете схемата за номериране на бележките под линия."
#. 7RJB2
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:198
@@ -15209,7 +15270,7 @@ msgstr "_След:"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:454
msgctxt "footnotesendnotestabpage|extended_tip|endnumviewbox"
msgid "Select the numbering scheme for the endnotes."
-msgstr ""
+msgstr "Изберете схемата за номериране на бележките в края."
#. kWheg
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:473
@@ -15905,7 +15966,7 @@ msgstr "Закотвяне"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:486
msgctxt "frmtypepage|lbPreview"
msgid "Preview"
-msgstr ""
+msgstr "Мостра"
#. 7RCJH
#: sw/uiconfig/swriter/ui/frmtypepage.ui:523
@@ -16349,13 +16410,13 @@ msgstr "Преглеждане на полетата"
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:31
msgctxt "inputfielddialog|next"
msgid "_Previous"
-msgstr ""
+msgstr "Предишен"
#. iwh9e
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:45
msgctxt "inputfielddialog|next"
msgid "_Next"
-msgstr ""
+msgstr "Следващ"
#. YpSqb
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:52
@@ -18029,13 +18090,13 @@ msgstr "Интервал:"
#: sw/uiconfig/swriter/ui/linenumbering.ui:217
msgctxt "linenumbering|extended_tip|styledropdown"
msgid "Select the character style that you want to use for the line numbers."
-msgstr ""
+msgstr "Изберете знаковия стил, който искате да използвате за номерата на редове."
#. MBZ7K
#: sw/uiconfig/swriter/ui/linenumbering.ui:233
msgctxt "linenumbering|extended_tip|formatdropdown"
msgid "Select the numbering scheme that you want to use."
-msgstr ""
+msgstr "Изберете желаната схема за номериране."
#. ntwJw
#: sw/uiconfig/swriter/ui/linenumbering.ui:248
@@ -18527,7 +18588,7 @@ msgstr "Като отделни документи"
#: sw/uiconfig/swriter/ui/mailmerge.ui:783
msgctxt "mailmerge|extended_tip|individualdocuments"
msgid "Create one document for each data record."
-msgstr ""
+msgstr "Създава се по един документ за всеки запис от данните."
#. bAuH5
#: sw/uiconfig/swriter/ui/mailmerge.ui:801
@@ -18599,7 +18660,7 @@ msgstr "Отхвърляне - всички"
#: sw/uiconfig/swriter/ui/managechangessidebar.ui:115
msgctxt "managechangessidebar|undo"
msgid "_Undo"
-msgstr ""
+msgstr "Отмяна"
#. kGwFD
#: sw/uiconfig/swriter/ui/managechangessidebar.ui:162
@@ -20204,289 +20265,289 @@ msgid "Text"
msgstr "Текст"
#. xuEPo
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:264
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:267
msgctxt "navigatorpanel|contenttoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Превключване на изгледа Образец"
#. bavit
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:268
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|extended_tip|contenttoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Превключва между изглед Главен документ и нормален изглед, когато е отворен главен документ."
#. aVJn7
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:374
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:380
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
msgstr "Преминаване към страница"
#. avLGA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:381
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:387
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
msgstr "Въведете номер на страница и натиснете Enter. Използвайте стрелките, за да преминете към предишната или следващата страница."
#. DgvFE
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:414
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|root|tooltip_text"
msgid "Content Navigation View"
msgstr "Изглед за навигация в съдържанието"
#. RCE5p
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:418
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:424
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
msgstr "Превключва между показване на всички категории в Навигатора и показване само на избраната категория."
#. Ngjxu
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:441
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:447
msgctxt "navigatorpanel|header|tooltip_text"
msgid "Header"
msgstr "Горен колонтитул"
#. yZHED
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:445
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:451
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
msgstr "Премества курсора от текстовата област на документа в горния колонтитул или обратно."
#. dfTJU
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:464
msgctxt "navigatorpanel|footer|tooltip_text"
msgid "Footer"
msgstr "Долен колонтитул"
#. 5BVYB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:468
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
msgstr "Премества курсора от текстовата област на документа в долния колонтитул или обратно."
#. EefnL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:475
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:481
msgctxt "navigatorpanel|anchor|tooltip_text"
msgid "Anchor<->Text"
msgstr "Котва<->Текст"
#. vwcpF
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:479
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:485
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
msgstr "Служи за преминаване между текста и котвата на бележка под линия."
#. GbEFs
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:492
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:498
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
msgstr "Задаване на напомняне"
#. d2Bnv
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:496
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:502
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
msgstr "Щракнете тук за да зададете напомняне за текущата позиция на курсора. Може да се зададат до пет напомняния. За да се прехвърлите към напомняне, натиснете иконата Навигация, от прозореца Навигация натиснете иконата Напомняне, и натиснете бутона Предишно или Следващо."
#. PjUEP
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:519
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:525
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
msgstr "Показани нива на заглавия"
#. dJcmy
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:523
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:529
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
msgstr "Щракнете върху тази икона, след което изберете нивото на заглавията от плана, които искате да виждате в Навигатора."
#. sxyvw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:554
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
msgstr "Списъчно поле - вкл./изкл."
#. y7YBB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:552
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:558
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
msgstr "Показва или скрива списъка в прозореца Навигатор."
#. ijAjg
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:575
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:581
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote Level"
msgstr "Повишаване на ниво"
#. dvQYH
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:579
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:585
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Повишава с единица нивото от плана на избраното заглавие и неговите подзаглавия. За да повишите нивото само на заглавието, без подзаглавията, задръжте Ctrl и щракнете върху иконата."
#. A7vWQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:592
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:598
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote Level"
msgstr "Понижаване на ниво"
#. NHBAZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:596
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
msgstr "Понижава с единица нивото от плана на избраното заглавие и подзаглавията му. За да се понижи нивото само на заглавието без подзаглавията му, задръжте Ctrl и щракнете върху иконата."
#. SndsZ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:609
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:615
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Promote Chapter"
msgstr "Повишаване на глава"
#. mwCBQ
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:613
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:619
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Премества избраното заглавие и текста под него с една позиция нагоре в Навигатора и в документа. За да преместите само избраното заглавие без текста му, задръжте Ctrl и щракнете върху тази икона."
#. MRuAa
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:626
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:632
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Demote Chapter"
msgstr "Понижаване на глава"
#. sGNbn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:630
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:636
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
msgstr "Премества избраното заглавие и текста под него с една позиция надолу в Навигатора и в документа. За да преместите само избраното заглавие без текста му, задръжте Ctrl и щракнете върху тази икона."
#. mHVom
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:653
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:659
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Режим при плъзгане"
#. 9cuar
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:657
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:663
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
msgstr "Задава настройките за вмъкване на елементи от Навигатора в документа с плъзгане и пускане, например като хипервръзка. Щракнете върху тази икона и изберете желаната настройка."
#. 3rY8r
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:689
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:695
msgctxt "navigatorpanel|documents|tooltip_text"
msgid "Document"
msgstr "Документ"
#. wavgT
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:692
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:698
msgctxt "navigatorpanel|documents-atkobject"
msgid "Active Window"
msgstr "Активен прозорец"
#. 3yk2y
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:777
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:783
msgctxt "navigatorpanel|globaltoggle|tooltip_text"
msgid "Toggle Master View"
msgstr "Превключване на изгледа Образец"
#. AoCVA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:781
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:787
msgctxt "navigatorpanel|extended_tip|globaltoggle"
msgid "Switches between master view and normal view if a master document is open."
msgstr "Превключва между изглед Главен документ и нормален изглед, когато е отворен главен документ."
#. HS3W2
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:804
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:810
msgctxt "navigatorpanel|edit|tooltip_text"
msgid "Edit"
msgstr "Редактиране"
#. phQFB
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:808
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:814
msgctxt "navigatorpanel|extended_tip|edit"
msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened."
msgstr "Редактирайте съдържанието на компонента, избран в списъка на прозореца Навигатор. Ако селекцията е файл, той ще бъде отворен за редактиране. Ако селекцията е указател, ще се отвори диалоговият прозорец Указател."
#. svmCG
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:821
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:827
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
msgstr "Обновяване"
#. FEEGn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:825
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:831
msgctxt "navigatorpanel|extended_tip|update"
msgid "Click and choose the contents that you want to update."
msgstr "Щракнете и изберете съдържанието, което желаете да се обнови."
#. tu94A
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:838
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:844
msgctxt "navigatorpanel|insert|tooltip_text"
msgid "Insert"
msgstr "Вмъкване"
#. 9kmNw
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:842
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:848
msgctxt "navigatorpanel|extended_tip|insert"
msgid "Inserts a file, an index, or a new document into the master document."
msgstr "Вмъква файл, указател или нов документ в главния документ."
#. MvgHM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:865
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:871
msgctxt "navigatorpanel|save|tooltip_text"
msgid "Save Contents as well"
msgstr "Записване и на съдържанието"
#. KBDdA
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:869
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:875
msgctxt "navigatorpanel|extended_tip|save"
msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed."
msgstr "Записва копие от съдържанието на свързаните файлове в главния документ. Така е сигурно, че текущото съдържание ще бъде налично дори ако свързаните файлове са недостъпни."
#. yEETn
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:892
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:898
msgctxt "navigatorpanel|moveup|tooltip_text"
msgid "Move Up"
msgstr "Преместване нагоре"
#. rEFCS
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:896
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:902
msgctxt "navigatorpanel|extended_tip|moveup"
msgid "Moves the selection up one position in the Navigator list."
msgstr "Премества селекцията с една позиция нагоре в списъка на навигатора."
#. KN3mN
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:909
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:915
msgctxt "navigatorpanel|movedown|tooltip_text"
msgid "Move Down"
msgstr "Преместване надолу"
#. Cs7D9
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:913
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:919
msgctxt "navigatorpanel|extended_tip|movedown"
msgid "Moves the selection down one position in the Navigator list."
msgstr "Премества селекцията с една позиция надолу в списъка на навигатора."
#. 3RwmV
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1011
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Selection"
msgstr "Селекция"
#. v2iCL
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1019
msgctxt "navigatorpanel|STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Индекси"
#. fvFtM
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1021
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1027
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
msgstr "Връзки"
#. Njw6i
-#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1029
+#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1035
msgctxt "navigatorpanel|STR_UPDATE_ALL"
msgid "All"
msgstr "Всичко"
@@ -20528,181 +20589,181 @@ msgid "~File"
msgstr "Файл"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4609
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4526
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4697
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4614
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5877
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5794
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5985
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5902
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7079
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6996
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Оформление"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7165
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7082
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Оформление"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7896
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7813
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Препратки"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7981
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7898
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Препратки"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8918
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8835
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9004
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8921
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9874
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9791
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9960
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9877
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11140
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11057
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11225
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11142
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12400
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12317
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12499
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12416
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13863
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13780
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13973
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13890
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14868
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14785
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14954
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14871
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Обект"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15760
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15677
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15867
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15784
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16229
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печат"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16395
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16312
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печат"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17147
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17315
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17232
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17372
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17289
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17446
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17363
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18426
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18343
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18511
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18428
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -21746,20 +21807,32 @@ msgctxt "numberingnamedialog|NumberingNameDialog"
msgid "Save As"
msgstr "Записване като"
-#. GuCPt
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:137
+#. xAo2K
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
+msgctxt "numberingnamedialog|grid1"
+msgid "Names of saved formats."
+msgstr "Имена на записаните формати."
+
+#. 62pRF
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "Щракнете върху стил за номериране в списъка, после въведете име за стила. Числата съответстват на нивото от плана, на което се приписват стиловете."
+msgid "Shows the current saved format names."
+msgstr "Показва имената на текущите записани формати."
+
+#. AbLwh
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
+msgctxt "numberingnamedialog|entry"
+msgid "Enter name to identify the format to be saved."
+msgstr "Въведете име за обозначаване на записвания формат."
-#. YeQcD
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:156
+#. F662A
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
msgctxt "numberingnamedialog|extended_tip|entry"
-msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to."
-msgstr "Щракнете върху стил за номериране в списъка, после въведете име за стила. Числата съответстват на нивото от плана, на което се приписват стиловете."
+msgid "Enter a name for the format being saved. Afterwards the name appears in the list shown by the Load/Save button."
+msgstr "Въведете име за формата, който се записва. Впоследствие името ще се вижда в списъка, показван от бутона „Зареждане“/„Записване“."
#. VExwF
-#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:171
+#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:173
msgctxt "numberingnamedialog|label1"
msgid "Format"
msgstr "Формат"
@@ -21770,215 +21843,227 @@ msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Outline level:"
msgstr "Ниво в плана:"
-#. JAb95
+#. 8G5Vp
#: sw/uiconfig/swriter/ui/numparapage.ui:44
-msgctxt "numparapage|labelFT_OUTLINE_LEVEL|tooltip_text"
+msgctxt "numparapage|labelFT_OUTLINE_LEVEL"
msgid "Select or change the Outline Level applied to the selected paragraphs or Paragraph Style."
-msgstr ""
+msgstr "Изберете или променете нивото от плана, приложено върху избраните абзаци или абзацен стил."
+
+#. CHRqd
+#: sw/uiconfig/swriter/ui/numparapage.ui:56
+msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
+msgid "Assigned Outline Level"
+msgstr "Присвоено ниво от плана"
#. y9mKV
-#: sw/uiconfig/swriter/ui/numparapage.ui:57
+#: sw/uiconfig/swriter/ui/numparapage.ui:58
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
msgstr "Основен текст"
#. DcmkY
-#: sw/uiconfig/swriter/ui/numparapage.ui:58
+#: sw/uiconfig/swriter/ui/numparapage.ui:59
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 1"
msgstr "Ниво 1"
#. Ae7iR
-#: sw/uiconfig/swriter/ui/numparapage.ui:59
+#: sw/uiconfig/swriter/ui/numparapage.ui:60
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 2"
msgstr "Ниво 2"
#. ygFj9
-#: sw/uiconfig/swriter/ui/numparapage.ui:60
+#: sw/uiconfig/swriter/ui/numparapage.ui:61
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 3"
msgstr "Ниво 3"
#. NJN9p
-#: sw/uiconfig/swriter/ui/numparapage.ui:61
+#: sw/uiconfig/swriter/ui/numparapage.ui:62
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 4"
msgstr "Ниво 4"
#. cLGAT
-#: sw/uiconfig/swriter/ui/numparapage.ui:62
+#: sw/uiconfig/swriter/ui/numparapage.ui:63
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 5"
msgstr "Ниво 5"
#. iNtCJ
-#: sw/uiconfig/swriter/ui/numparapage.ui:63
+#: sw/uiconfig/swriter/ui/numparapage.ui:64
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 6"
msgstr "Ниво 6"
#. 7QbBG
-#: sw/uiconfig/swriter/ui/numparapage.ui:64
+#: sw/uiconfig/swriter/ui/numparapage.ui:65
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 7"
msgstr "Ниво 7"
#. q9rXy
-#: sw/uiconfig/swriter/ui/numparapage.ui:65
+#: sw/uiconfig/swriter/ui/numparapage.ui:66
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 8"
msgstr "Ниво 8"
#. 2BdWa
-#: sw/uiconfig/swriter/ui/numparapage.ui:66
+#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 9"
msgstr "Ниво 9"
#. PgJyA
-#: sw/uiconfig/swriter/ui/numparapage.ui:67
+#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Level 10"
msgstr "Ниво 10"
#. chMYQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:71
+#: sw/uiconfig/swriter/ui/numparapage.ui:72
msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL"
msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style."
msgstr "Приписва ниво от плана (от 1 до 10) на избраните абзаци или абзацен стил."
#. A9CrD
-#: sw/uiconfig/swriter/ui/numparapage.ui:87
+#: sw/uiconfig/swriter/ui/numparapage.ui:88
msgctxt "numparapage|labelOutline"
msgid "Outline"
msgstr "План"
#. eQZED
-#: sw/uiconfig/swriter/ui/numparapage.ui:123
+#: sw/uiconfig/swriter/ui/numparapage.ui:124
msgctxt "numparapage|labelFT_NUMBER_STYLE"
msgid "_List style:"
-msgstr ""
+msgstr "Стил за списък:"
-#. WjcNf
-#: sw/uiconfig/swriter/ui/numparapage.ui:124
-msgctxt "numparapage|labelFT_NUMBER_STYLE|tooltip_text"
-msgid "Select the List Style to apply to the paragraph."
-msgstr ""
+#. oKotj
+#: sw/uiconfig/swriter/ui/numparapage.ui:125
+msgctxt "numparapage|labelFT_NUMBER_STYLE"
+msgid "Select a List Style to apply to the paragraph."
+msgstr "Изберете стил за списъци, който да се приложи върху абзаца."
-#. ABT2q
+#. Kx7Bm
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
+msgid "Assigned List Style"
+msgstr "Присвоен стил за списъци"
+
+#. ABT2q
+#: sw/uiconfig/swriter/ui/numparapage.ui:147
+msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "None"
msgstr "Няма"
#. hRgAM
-#: sw/uiconfig/swriter/ui/numparapage.ui:149
+#: sw/uiconfig/swriter/ui/numparapage.ui:151
msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE"
msgid "Select the List Style that you want to apply to the paragraph."
-msgstr ""
+msgstr "Изберете стила за списъци, който искате да приложите върху абзаца."
#. eBkEW
-#: sw/uiconfig/swriter/ui/numparapage.ui:161
+#: sw/uiconfig/swriter/ui/numparapage.ui:163
msgctxt "numparapage|editnumstyle"
msgid "Edit Style"
msgstr "Редактиране на стил"
#. cbzvQ
-#: sw/uiconfig/swriter/ui/numparapage.ui:167
+#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
-msgstr ""
+msgstr "Редактиране свойствата на избрания стил за списъци."
#. sQw2M
-#: sw/uiconfig/swriter/ui/numparapage.ui:193
+#: sw/uiconfig/swriter/ui/numparapage.ui:195
msgctxt "numparapage|checkCB_NEW_START"
msgid "R_estart numbering at this paragraph"
-msgstr ""
+msgstr "Номериране отначало от този абзац"
-#. PP2rA
-#: sw/uiconfig/swriter/ui/numparapage.ui:196
-msgctxt "numparapage|checkCB_NEW_START|tooltip_text"
-msgid "For Numbered Lists and List Styles with numbering"
-msgstr ""
+#. Dreuk
+#: sw/uiconfig/swriter/ui/numparapage.ui:198
+msgctxt "numparapage|checkCB_NEW_START"
+msgid "For ordered lists and List Styles with numbering"
+msgstr "За подредени списъци и стилове за списъци с номерация"
#. SCaCA
-#: sw/uiconfig/swriter/ui/numparapage.ui:205
+#: sw/uiconfig/swriter/ui/numparapage.ui:207
msgctxt "numparapage|extended_tip|checkCB_NEW_START"
msgid "Restarts the numbering at the current paragraph."
msgstr "Започва номерирането отначало от текущия абзац."
#. UivrN
-#: sw/uiconfig/swriter/ui/numparapage.ui:226
+#: sw/uiconfig/swriter/ui/numparapage.ui:228
msgctxt "numparapage|checkCB_NUMBER_NEW_START"
msgid "S_tart with:"
msgstr "_Започване с:"
#. 2Vb8v
-#: sw/uiconfig/swriter/ui/numparapage.ui:239
+#: sw/uiconfig/swriter/ui/numparapage.ui:241
msgctxt "numparapage|extended_tip|checkCB_NUMBER_NEW_START"
msgid "Select this check box, and then enter the number that you want to assign to the paragraph."
msgstr "Отметнете това поле, после въведете номера, който желаете да припишете на абзаца."
#. GmF7H
-#: sw/uiconfig/swriter/ui/numparapage.ui:265
+#: sw/uiconfig/swriter/ui/numparapage.ui:267
msgctxt "numparapage|extended_tip|spinNF_NEW_START"
msgid "Enter the number that you want to assign to the paragraph."
msgstr "Въведете номер, който желаете да припишете на абзаца."
-#. b4ip6
-#: sw/uiconfig/swriter/ui/numparapage.ui:288
+#. SDdFs
+#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
-msgid "List"
-msgstr ""
+msgid "Apply List Style"
+msgstr "Прилагане на стил за списъци"
#. tBYXk
-#: sw/uiconfig/swriter/ui/numparapage.ui:317
+#: sw/uiconfig/swriter/ui/numparapage.ui:319
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
msgstr "_Включване на този абзац в номерирането на редовете"
#. mhtFH
-#: sw/uiconfig/swriter/ui/numparapage.ui:327
+#: sw/uiconfig/swriter/ui/numparapage.ui:329
msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA"
msgid "Includes the current paragraph in the line numbering."
msgstr "Включва текущия абзац в номерирането на редовете."
#. wGRPh
-#: sw/uiconfig/swriter/ui/numparapage.ui:339
+#: sw/uiconfig/swriter/ui/numparapage.ui:341
msgctxt "numparapage|checkCB_RESTART_PARACOUNT"
msgid "Rest_art at this paragraph"
msgstr "Започв_ане отначало от този абзац"
#. YhNoE
-#: sw/uiconfig/swriter/ui/numparapage.ui:349
+#: sw/uiconfig/swriter/ui/numparapage.ui:351
msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT"
msgid "Restarts the line numbering at the current paragraph, or at the number that you enter."
msgstr "Започва номерирането отначало или от зададен от вас номер от текущия абзац."
#. uuXAF
-#: sw/uiconfig/swriter/ui/numparapage.ui:376
+#: sw/uiconfig/swriter/ui/numparapage.ui:378
msgctxt "numparapage|labelFT_RESTART_NO"
msgid "_Start with:"
msgstr "Запо_чване с:"
#. CMbmy
-#: sw/uiconfig/swriter/ui/numparapage.ui:403
+#: sw/uiconfig/swriter/ui/numparapage.ui:405
msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA"
msgid "Enter the number at which to restart the line numbering"
msgstr "Въведете номера, от който да започне наново номерирането на редовете."
#. FcEtC
-#: sw/uiconfig/swriter/ui/numparapage.ui:426
+#: sw/uiconfig/swriter/ui/numparapage.ui:428
msgctxt "numparapage|labelLINE_NUMBERING"
msgid "Line Numbering"
msgstr "Номериране на редове"
#. QrTFm
-#: sw/uiconfig/swriter/ui/numparapage.ui:441
+#: sw/uiconfig/swriter/ui/numparapage.ui:443
msgctxt "numparapage|extended_tip|NumParaPage"
msgid "Adds or removes Outline Level, List Style, and line numbering from the paragraph. You can also reset the numbering in a numbered list."
-msgstr ""
+msgstr "Добавя или премахва от абзаца ниво от плана, стил за списък и номериране на редовете. Освен това в номериран списък можете да започнете номерацията отначало."
#. jHKFJ
#: sw/uiconfig/swriter/ui/objectdialog.ui:8
@@ -23378,7 +23463,7 @@ msgstr "Неозаглавено 1"
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:16
msgctxt "outlinenumbering|extended_tip|form1"
msgid "Select the predefined numbering scheme that you want to assign to the selected outline level."
-msgstr ""
+msgstr "Изберете предварително дефинираната схема за номериране, която искате да присвоите на избраното ниво от плана."
#. stM8e
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:25
@@ -23444,7 +23529,7 @@ msgstr "Отваря диалогов прозорец, в който может
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:106
msgctxt "outlinenumbering|extended_tip|form"
msgid "Click a numbering scheme in the list, and then enter a name for the scheme. The numbers correspond to the outline level that the styles are assigned to."
-msgstr ""
+msgstr "Щракнете върху схема за номериране в списъка, после въведете име за схемата. Числата съответстват на нивото от плана, на което се присвояват стиловете."
#. d2QaP
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:113
@@ -23474,7 +23559,7 @@ msgstr "Позиция"
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:334
msgctxt "outlinenumbering|extended_tip|OutlineNumberingDialog"
msgid "Specifies the numbering scheme and the hierarchy for chapter numbering in the current document."
-msgstr ""
+msgstr "Определя схемата за номериране и йерархията за номериране на глави в текущия документ."
#. soxpF
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:70
@@ -23522,13 +23607,13 @@ msgstr "Видими поднива:"
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:189
msgctxt "outlinenumberingpage|extended_tip|numbering"
msgid "Select the numbering scheme that you want to apply to the selected outline level."
-msgstr ""
+msgstr "Изберете схемата за номериране, която искате да приложите върху избраното ниво от плана."
#. BSBWE
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:205
msgctxt "outlinenumberingpage|extended_tip|charstyle"
msgid "Select the character style of the numbering character."
-msgstr ""
+msgstr "Изберете знаковия стил на знака за номериране."
#. 5A5fh
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:226
@@ -23634,11 +23719,14 @@ msgstr "Задайте подравняването на символите за
#. yHKAv
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:171
+#, fuzzy
msgctxt "outlinepositionpage|numdist"
msgid ""
"Minimum space between\n"
"+numbering and text:"
msgstr ""
+"Минимално разстояние\n"
+"+между номера и текста:"
#. qNaWE
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:193
@@ -24226,13 +24314,13 @@ msgstr "Азиатска типография"
#: sw/uiconfig/swriter/ui/paradialog.ui:346
msgctxt "paradialog|labelTP_NUMPARA"
msgid "Outline & List"
-msgstr ""
+msgstr "План и списък"
#. hZxni
#: sw/uiconfig/swriter/ui/paradialog.ui:347
msgctxt "paradialog|labelTP_NUMPARA"
msgid "Set outline level, list style and line numbering for paragraph."
-msgstr ""
+msgstr "Задаване на ниво от плана, стил на списък и номериране на редовете за абзац."
#. BzbWJ
#: sw/uiconfig/swriter/ui/paradialog.ui:395
@@ -24466,13 +24554,13 @@ msgstr "Ъгъл на завъртане"
#: sw/uiconfig/swriter/ui/picturepage.ui:409
msgctxt "picturepage|label15"
msgid "Type:"
-msgstr ""
+msgstr "Тип:"
#. DrEQF
#: sw/uiconfig/swriter/ui/picturepage.ui:443
msgctxt "picturepage|label16"
msgid "Image Information"
-msgstr ""
+msgstr "Информация за изображение"
#. UFDyD
#: sw/uiconfig/swriter/ui/picturepage.ui:458
@@ -25358,13 +25446,13 @@ msgstr "Записване на фона..."
#: sw/uiconfig/swriter/ui/readonlymenu.ui:156
msgctxt "readonlymenu|backaslink"
msgid "As Link"
-msgstr ""
+msgstr "Като връзка"
#. CwLB2
#: sw/uiconfig/swriter/ui/readonlymenu.ui:164
msgctxt "readonlymenu|backascopy"
msgid "Copy"
-msgstr ""
+msgstr "Копиране"
#. K9D4E
#: sw/uiconfig/swriter/ui/readonlymenu.ui:188
@@ -26492,25 +26580,25 @@ msgstr "Игнориране всички"
#: sw/uiconfig/swriter/ui/spellmenu.ui:20
msgctxt "spellmenu|addmenu"
msgid "Add to _Dictionary"
-msgstr ""
+msgstr "Добавяне в речника"
#. GMjgF
#: sw/uiconfig/swriter/ui/spellmenu.ui:34
msgctxt "spellmenu|add"
msgid "Add to _Dictionary"
-msgstr ""
+msgstr "Добавяне в речника"
#. i7HEY
#: sw/uiconfig/swriter/ui/spellmenu.ui:55
msgctxt "spellmenu|correctmenu"
msgid "Add selected correction as replacement for incorrect word in AutoCorrect replacement table."
-msgstr ""
+msgstr "Добавяне на избраната корекция като замяна за неправилната дума в таблицата за замяна на функцията Автокорекция."
#. jDmAi
#: sw/uiconfig/swriter/ui/spellmenu.ui:56
msgctxt "spellmenu|correctmenu"
msgid "Always AutoCorrect _to"
-msgstr ""
+msgstr "Винаги да се автокоригира на"
#. AU9d2
#: sw/uiconfig/swriter/ui/spellmenu.ui:83
@@ -27146,25 +27234,25 @@ msgstr "Знаков стил"
#: sw/uiconfig/swriter/ui/templatedialog1.ui:32
msgctxt "templatedialog1|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "Незаписаните промени в този раздел се отменят."
#. gKTob
#: sw/uiconfig/swriter/ui/templatedialog1.ui:35
msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
-msgstr ""
+msgstr "Отмяна на всички промени в показания тук раздел, в настройките, които са присъствали при отваряне на диалога."
#. MAtGi
#: sw/uiconfig/swriter/ui/templatedialog1.ui:62
msgctxt "templatedialog1|standard"
msgid "_Set to Parent"
-msgstr ""
+msgstr "Задаване от родителя"
#. sCHAR
#: sw/uiconfig/swriter/ui/templatedialog1.ui:67
msgctxt "templatedialog1|standard"
msgid "Set values shown here with the values from the style specified in “Inherit From” in Organizer."
-msgstr ""
+msgstr "Попълване на показаните тук стойности с тези от стила, зададен в „Наслядяване от“ в „Организатор“."
#. UH8Vz
#: sw/uiconfig/swriter/ui/templatedialog1.ui:174
@@ -27212,7 +27300,7 @@ msgstr "Кантове"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:8
msgctxt "templatedialog16|TemplateDialog16"
msgid "List Style"
-msgstr ""
+msgstr "Стил за списък"
#. tA5vb
#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
@@ -27224,19 +27312,19 @@ msgstr "Организатор"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:214
msgctxt "templatedialog16|bullets"
msgid "Unordered"
-msgstr ""
+msgstr "Неподреден"
#. uCBn4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:262
msgctxt "templatedialog16|numbering"
msgid "Ordered"
-msgstr ""
+msgstr "Подреден"
#. 799yE
#: sw/uiconfig/swriter/ui/templatedialog16.ui:263
msgctxt "templatedialog16|numbering|tooltip_text"
msgid "Numbering schemes for ordered lists"
-msgstr ""
+msgstr "Схеми за номериране на подредени списъци"
#. D9oKE
#: sw/uiconfig/swriter/ui/templatedialog16.ui:311
@@ -27248,7 +27336,7 @@ msgstr "План"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:312
msgctxt "templatedialog16|outline|tooltip_text"
msgid "Numbering schemes for hierarchical lists"
-msgstr ""
+msgstr "Схеми за номериране на йерархични списъци"
#. Dp6La
#: sw/uiconfig/swriter/ui/templatedialog16.ui:360
@@ -27260,7 +27348,7 @@ msgstr "Изображение"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:361
msgctxt "templatedialog16|graphics|tooltip_text"
msgid "Graphic bullet symbols"
-msgstr ""
+msgstr "Графични водещи символи"
#. K55K4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:409
@@ -27272,7 +27360,7 @@ msgstr "Позиция"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:410
msgctxt "templatedialog16|position|tooltip_text"
msgid "Indent, spacing, and alignment options for ordered and unordered lists"
-msgstr ""
+msgstr "Настройки за отстъп, разстояния и подравняване на подредени и неподредени списъци"
#. g5NQF
#: sw/uiconfig/swriter/ui/templatedialog16.ui:458
@@ -27284,7 +27372,7 @@ msgstr "Настройки"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:459
msgctxt "templatedialog16|customize|tooltip_text"
msgid "Design your own bullet or numbering scheme"
-msgstr ""
+msgstr "Конструиране на ваша собствена схема за водещи символи или номериране"
#. 6ozqU
#: sw/uiconfig/swriter/ui/templatedialog2.ui:8
@@ -27392,13 +27480,13 @@ msgstr "Условие"
#: sw/uiconfig/swriter/ui/templatedialog2.ui:934
msgctxt "templatedialog2|outline"
msgid "Outline & List"
-msgstr ""
+msgstr "План и списък"
#. xT7hc
#: sw/uiconfig/swriter/ui/templatedialog2.ui:935
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
-msgstr ""
+msgstr "Задаване на ниво от плана, стил на списък и номериране на редовете за стил на абзац."
#. q8oC5
#: sw/uiconfig/swriter/ui/templatedialog4.ui:8
@@ -27548,13 +27636,13 @@ msgstr "Тест на настройките за регистрация"
#: sw/uiconfig/swriter/ui/testmailsettings.ui:24
msgctxt "testmailsettings|stop"
msgid "_Stop"
-msgstr ""
+msgstr "Спиране"
#. pBore
#: sw/uiconfig/swriter/ui/testmailsettings.ui:33
msgctxt "extended_tip|stop"
msgid "Click the Stop button to stop a test session manually."
-msgstr "Натиснете бутона Стоп, за да спрете теста ръчно."
+msgstr "Натиснете бутона „Спиране“, за да спрете теста ръчно."
#. 4Bcop
#: sw/uiconfig/swriter/ui/testmailsettings.ui:103
@@ -27970,11 +28058,11 @@ msgctxt "tocentriespage|extended_tip|edit"
msgid "Opens a dialog where you can edit the selected character style."
msgstr "Отваря диалогов прозорец, в който можете да редактирате избрания знаков стил."
-#. uEp6N
+#. iLCCF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:290
msgctxt "tocentriespage|extended_tip|charstyle"
-msgid "Specify the formatting style for the selected part on the Structure line."
-msgstr "Определя форматиращия стил за избраната част от реда Структура."
+msgid "Specify the character style for the selected part on the Structure line."
+msgstr "Определя знаковия стил за избраната част от реда „Структура“."
#. 5nWPi
#: sw/uiconfig/swriter/ui/tocentriespage.ui:303
@@ -28228,11 +28316,11 @@ msgctxt "tocentriespage|mainstyleft"
msgid "Character style for main entries:"
msgstr "Знаков стил за главните елементи:"
-#. PGu5D
+#. uyrYX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:824
msgctxt "tocentriespage|extended_tip|mainstyle"
-msgid "Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
-msgstr "Определя стила за форматиране на главните елементи в азбучния указател. За да превърнете елемент от указателя в главен, щракнете пред полето на елемента в документа и изберете Редактиране - Елемент от указател."
+msgid "Specify the character style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose Edit - Index Entry."
+msgstr "Определя знаковия стил за главните елементи в азбучния указател. За да превърнете елемент от указателя в главен, щракнете пред полето на елемента в документа и изберете Редактиране - Елемент от указател."
#. r33aA
#: sw/uiconfig/swriter/ui/tocentriespage.ui:839
@@ -29211,7 +29299,7 @@ msgstr "Показване на бутон за видимост на съдър
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
msgctxt "viewoptionspage|suboutlinelevelscontent"
msgid "Include sub _levels"
-msgstr ""
+msgstr "Включване на поднивата"
#. jQBeb
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
diff --git a/source/bg/uui/messages.po b/source/bg/uui/messages.po
index e71a3e283a1..3f70b967a4c 100644
--- a/source/bg/uui/messages.po
+++ b/source/bg/uui/messages.po
@@ -3,45 +3,45 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-25 14:56+0100\n"
-"PO-Revision-Date: 2019-01-18 11:10+0000\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547809811.000000\n"
#. DLY8p
-#: uui/inc/ids.hrc:33
+#: uui/inc/ids.hrc:32
msgctxt "RID_UUI_ERRHDL"
msgid "The operation executed on $(ARG1) was aborted."
msgstr "Операцията, изпълнявана върху $(ARG1), бе прекратена."
#. Q448y
-#: uui/inc/ids.hrc:35
+#: uui/inc/ids.hrc:34
msgctxt "RID_UUI_ERRHDL"
msgid "Access to $(ARG1) was denied."
msgstr "Достъпът до $(ARG1) бе отказан."
#. w6rpp
-#: uui/inc/ids.hrc:37
+#: uui/inc/ids.hrc:36
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) already exists."
msgstr "$(ARG1) вече съществува."
#. a6BBm
-#: uui/inc/ids.hrc:39
+#: uui/inc/ids.hrc:38
msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Целта вече съществува."
#. KgnBz
-#: uui/inc/ids.hrc:41
+#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
"You are about to save/export a password protected basic library containing module(s) \n"
@@ -53,7 +53,7 @@ msgstr ""
"Библиотеката е прекалено голяма за съхраняване в двоичен формат. Ако желаете потребителите, които нямат достъп до паролата на библиотеката, да могат да стартират макроси от модулите в нея, трябва да ги разделите в няколко по-малки модула. Да продължи ли записването/експортирането на библиотеката?"
#. 3rNDF
-#: uui/inc/ids.hrc:43
+#: uui/inc/ids.hrc:42
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Beware!\n"
@@ -73,289 +73,289 @@ msgstr ""
"Сигурни ли сте, че този файл е наследен документ, създаден преди много години?"
#. v6bPE
-#: uui/inc/ids.hrc:45
+#: uui/inc/ids.hrc:44
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an incorrect checksum."
msgstr "Данните от $(ARG1) имат некоректна контролна сума."
#. AGF5W
-#: uui/inc/ids.hrc:47
+#: uui/inc/ids.hrc:46
msgctxt "RID_UUI_ERRHDL"
msgid "The object $(ARG1) cannot be created in directory $(ARG2)."
msgstr "Обектът $(ARG1) не може да бъде създаден в директорията $(ARG2)."
#. Dw4Ff
-#: uui/inc/ids.hrc:49
+#: uui/inc/ids.hrc:48
msgctxt "RID_UUI_ERRHDL"
msgid "Data of $(ARG1) could not be read."
msgstr "Данните на $(ARG1) не могат да бъдат прочетени."
#. Qc4E9
-#: uui/inc/ids.hrc:51
+#: uui/inc/ids.hrc:50
msgctxt "RID_UUI_ERRHDL"
msgid "The seek operation on $(ARG1) could not be performed."
msgstr "Позиционирането в $(ARG1) не може да бъде изпълнено."
#. CD7zU
-#: uui/inc/ids.hrc:53
+#: uui/inc/ids.hrc:52
msgctxt "RID_UUI_ERRHDL"
msgid "The tell operation on $(ARG1) could not be performed."
msgstr "Операцията tell не може да бъде изпълнена върху $(ARG1)."
#. AkGXL
-#: uui/inc/ids.hrc:55
+#: uui/inc/ids.hrc:54
msgctxt "RID_UUI_ERRHDL"
msgid "Data for $(ARG1) could not be written."
msgstr "Данните за $(ARG1) не могат да бъдат записани."
#. ndib2
-#: uui/inc/ids.hrc:57
+#: uui/inc/ids.hrc:56
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) is the current directory."
msgstr "Действието е невъзможно: текущата директория е $(ARG1)."
#. wWVF2
-#: uui/inc/ids.hrc:59
+#: uui/inc/ids.hrc:58
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready."
msgstr "$(ARG1) не е готов."
#. C7iGB
-#: uui/inc/ids.hrc:61
+#: uui/inc/ids.hrc:60
msgctxt "RID_UUI_ERRHDL"
msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)."
msgstr "Действието е невъзможно: $(ARG1) и $(ARG2) са различни устройства."
#. ic2pB
-#: uui/inc/ids.hrc:63
+#: uui/inc/ids.hrc:62
msgctxt "RID_UUI_ERRHDL"
msgid "General input/output error while accessing $(ARG1)."
msgstr "Обща входно/изходна грешка при опит за достъп до $(ARG1)."
#. r6GVi
-#: uui/inc/ids.hrc:65
+#: uui/inc/ids.hrc:64
msgctxt "RID_UUI_ERRHDL"
msgid "An attempt was made to access $(ARG1) in an invalid way."
msgstr "Извършен е опит за достъп до $(ARG1) по неправилен начин."
#. Y6bwq
-#: uui/inc/ids.hrc:67
+#: uui/inc/ids.hrc:66
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains invalid characters."
msgstr "$(ARG1) съдържа невалидни знаци."
#. 5HEak
-#: uui/inc/ids.hrc:69
+#: uui/inc/ids.hrc:68
msgctxt "RID_UUI_ERRHDL"
msgid "The device (drive) $(ARG1) is invalid."
msgstr "Устройството $(ARG1) е невалидно."
#. Ykhp2
-#: uui/inc/ids.hrc:71
+#: uui/inc/ids.hrc:70
msgctxt "RID_UUI_ERRHDL"
msgid "The data from $(ARG1) has an invalid length."
msgstr "Данните от $(ARG1) имат невалидна дължина."
#. CbZfa
-#: uui/inc/ids.hrc:73
+#: uui/inc/ids.hrc:72
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) was started with an invalid parameter."
msgstr "Операцията на $(ARG1) бе стартирана с невалиден параметър."
#. fEQmj
-#: uui/inc/ids.hrc:75
+#: uui/inc/ids.hrc:74
msgctxt "RID_UUI_ERRHDL"
msgid "The operation cannot be performed because $(ARG1) contains wildcards."
msgstr "Операцията не може да бъде изпълнена, защото $(ARG1) съдържа заместващи знаци."
#. v2dLh
-#: uui/inc/ids.hrc:77
+#: uui/inc/ids.hrc:76
msgctxt "RID_UUI_ERRHDL"
msgid "Error during shared access to $(ARG1)."
msgstr "Грешка при споделен достъп до $(ARG1)."
#. AEtU6
-#: uui/inc/ids.hrc:79
+#: uui/inc/ids.hrc:78
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) contains misplaced characters."
msgstr "$(ARG1) съдържа неуместни знаци."
#. fD986
-#: uui/inc/ids.hrc:81
+#: uui/inc/ids.hrc:80
msgctxt "RID_UUI_ERRHDL"
msgid "The name $(ARG1) contains too many characters."
msgstr "Името $(ARG1) съдържа твърде много знаци."
#. U3tMN
-#: uui/inc/ids.hrc:83
+#: uui/inc/ids.hrc:82
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) does not exist."
msgstr "$(ARG1) не съществува."
#. nB6UA
-#: uui/inc/ids.hrc:85
+#: uui/inc/ids.hrc:84
msgctxt "RID_UUI_ERRHDL"
msgid "The path $(ARG1) does not exist."
msgstr "Пътят $(ARG1) не съществува."
#. FMV9Y
-#: uui/inc/ids.hrc:87
+#: uui/inc/ids.hrc:86
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) is not supported on this operating system."
msgstr "Операцията върху $(ARG1) не се поддържа от операционната система."
#. zzACo
-#: uui/inc/ids.hrc:89
+#: uui/inc/ids.hrc:88
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a directory."
msgstr "$(ARG1) не е директория."
#. YW5vM
-#: uui/inc/ids.hrc:91
+#: uui/inc/ids.hrc:90
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not a file."
msgstr "$(ARG1) не е файл."
#. khxN3
-#: uui/inc/ids.hrc:93
+#: uui/inc/ids.hrc:92
msgctxt "RID_UUI_ERRHDL"
msgid "There is no space left on device $(ARG1)."
msgstr "Не е останало свободно място на устройството $(ARG1)."
#. zehX6
-#: uui/inc/ids.hrc:95
+#: uui/inc/ids.hrc:94
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because too many files are already open."
msgstr "Операцията върху $(ARG1) не може да бъде изпълнена, защото има твърде много отворени файлове."
#. ctFbB
-#: uui/inc/ids.hrc:97
+#: uui/inc/ids.hrc:96
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot be performed because there is no more memory available."
msgstr "Операцията върху $(ARG1) не може да бъде изпълнена, защото няма повече свободна памет."
#. jpzJG
-#: uui/inc/ids.hrc:99
+#: uui/inc/ids.hrc:98
msgctxt "RID_UUI_ERRHDL"
msgid "The operation on $(ARG1) cannot continue because more data is pending."
msgstr "Операцията върху $(ARG1) не може да продължи, защото предстоят още данни."
#. 6DVTU
-#: uui/inc/ids.hrc:101
+#: uui/inc/ids.hrc:100
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) cannot be copied into itself."
msgstr "$(ARG1) не може да бъде копиран върху себе си."
#. zyCVE
-#: uui/inc/ids.hrc:103
+#: uui/inc/ids.hrc:102
msgctxt "RID_UUI_ERRHDL"
msgid "Unknown input/output error while accessing $(ARG1)."
msgstr "Непозната входно/изходна грешка при опит за достъп до $(ARG1)."
#. cVa9F
-#: uui/inc/ids.hrc:105
+#: uui/inc/ids.hrc:104
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is write protected."
msgstr "$(ARG1) е защитен срещу запис."
#. JARZx
-#: uui/inc/ids.hrc:107
+#: uui/inc/ids.hrc:106
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not in the correct format."
msgstr "$(ARG1) е в неправилен формат."
#. NJNyn
-#: uui/inc/ids.hrc:109
+#: uui/inc/ids.hrc:108
msgctxt "RID_UUI_ERRHDL"
msgid "The version of $(ARG1) is not correct."
msgstr "Версията на $(ARG1) не е правилна."
#. uBqiR
-#: uui/inc/ids.hrc:111
+#: uui/inc/ids.hrc:110
msgctxt "RID_UUI_ERRHDL"
msgid "Drive $(ARG1) does not exist."
msgstr "Устройство $(ARG1) не съществува."
#. zemAv
-#: uui/inc/ids.hrc:113
+#: uui/inc/ids.hrc:112
msgctxt "RID_UUI_ERRHDL"
msgid "Folder $(ARG1) does not exist."
msgstr "Папка $(ARG1) не съществува."
#. aRCFc
-#: uui/inc/ids.hrc:115
+#: uui/inc/ids.hrc:114
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported."
msgstr "Инсталираната версия на Java не се поддържа."
#. DbH3p
-#: uui/inc/ids.hrc:117
+#: uui/inc/ids.hrc:116
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported."
msgstr "Инсталираната версия на Java, $(ARG1), не се поддържа."
#. 7NCGk
-#: uui/inc/ids.hrc:119
+#: uui/inc/ids.hrc:118
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version is not supported, at least version $(ARG1) is required."
msgstr "Инсталираната версия на Java не се поддържа, необходима е поне версия $(ARG1)."
#. bNWmn
-#: uui/inc/ids.hrc:121
+#: uui/inc/ids.hrc:120
msgctxt "RID_UUI_ERRHDL"
msgid "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required."
msgstr "Инсталираната версия на Java, $(ARG1), не се поддържа, необходима е поне версия $(ARG2)."
#. 5MfGQ
-#: uui/inc/ids.hrc:123
+#: uui/inc/ids.hrc:122
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership is corrupted."
msgstr "Данните, асоциирани със съучастието, са повредени."
#. fKMdA
-#: uui/inc/ids.hrc:125
+#: uui/inc/ids.hrc:124
msgctxt "RID_UUI_ERRHDL"
msgid "The data associated with the partnership $(ARG1) is corrupted."
msgstr "Данните, асоциирани със съучастието $(ARG1), са повредени."
#. sBGBF
-#: uui/inc/ids.hrc:127
+#: uui/inc/ids.hrc:126
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready."
msgstr "Томът $(ARG1) не е готов."
#. yKKd9
-#: uui/inc/ids.hrc:129
+#: uui/inc/ids.hrc:128
msgctxt "RID_UUI_ERRHDL"
msgid "$(ARG1) is not ready; please insert a storage medium."
msgstr "$(ARG1) не е готово; моля, поставете носител."
#. RogFv
-#: uui/inc/ids.hrc:131
+#: uui/inc/ids.hrc:130
msgctxt "RID_UUI_ERRHDL"
msgid "Volume $(ARG1) is not ready; please insert a storage medium."
msgstr "Томът $(ARG1) не е готов; моля, поставете носител."
#. AqFh4
-#: uui/inc/ids.hrc:133
+#: uui/inc/ids.hrc:132
msgctxt "RID_UUI_ERRHDL"
msgid "Please insert disk $(ARG1)."
msgstr "Моля, поставете диск $(ARG1)."
#. WbB7f
-#: uui/inc/ids.hrc:135
+#: uui/inc/ids.hrc:134
msgctxt "RID_UUI_ERRHDL"
msgid "The object cannot be created in directory $(ARG1)."
msgstr "Обектът не може да бъде създаден в директорията $(ARG1)."
#. cSCj6
-#: uui/inc/ids.hrc:137
+#: uui/inc/ids.hrc:136
msgctxt "RID_UUI_ERRHDL"
msgid "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?"
msgstr "Когато се ползва избраният протокол на предаване, %PRODUCTNAME не може да предотврати презапис на файловете. Желаете ли да продължите въпреки това?"
#. CUbSR
-#: uui/inc/ids.hrc:139
+#: uui/inc/ids.hrc:138
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n"
@@ -377,13 +377,13 @@ msgstr ""
"Да се опита ли %PRODUCTNAME да поправи файла?\n"
#. KeFss
-#: uui/inc/ids.hrc:141
+#: uui/inc/ids.hrc:140
msgctxt "RID_UUI_ERRHDL"
msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened."
msgstr "Файлът \"$(ARG1)\" не може да бъде поправен и затова не може да бъде отворен."
#. JCpTn
-#: uui/inc/ids.hrc:143
+#: uui/inc/ids.hrc:142
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n"
@@ -393,7 +393,7 @@ msgstr ""
"Желаете ли да продължите стартирането на %PRODUCTNAME без тези повредени конфигурационни данни?"
#. QCACp
-#: uui/inc/ids.hrc:145
+#: uui/inc/ids.hrc:144
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n"
@@ -403,13 +403,13 @@ msgstr ""
"Желаете ли да продължите със стартирането на %PRODUCTNAME без повредените конфигурационни данни?"
#. e5Rft
-#: uui/inc/ids.hrc:147
+#: uui/inc/ids.hrc:146
msgctxt "RID_UUI_ERRHDL"
msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly."
msgstr "Източникът с конфигурационни данни \"$(ARG1)\" е недостъпен. Без тази информация някои функции може да не работят правилно."
#. 4gRCA
-#: uui/inc/ids.hrc:149
+#: uui/inc/ids.hrc:148
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n"
@@ -419,31 +419,31 @@ msgstr ""
"Желаете ли да продължите със стартирането на %PRODUCTNAME без повредените конфигурационни данни?"
#. DAUhe
-#: uui/inc/ids.hrc:151
+#: uui/inc/ids.hrc:150
msgctxt "RID_UUI_ERRHDL"
msgid "The form contains invalid data. Do you still want to continue?"
msgstr "Формулярът съдържа невалидни данни. Желаете ли да продължите?"
#. DSoD4
-#: uui/inc/ids.hrc:153
+#: uui/inc/ids.hrc:152
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted."
msgstr "Файлът $(ARG1) е заключен от друг потребител. В момента не може да бъде даден друг достъп."
#. k6aHT
-#: uui/inc/ids.hrc:155
+#: uui/inc/ids.hrc:154
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted."
msgstr "Файлът $(ARG1) е заключен от вас. В момента не може да бъде предоставен друг достъп за записване в него."
#. ZoUzb
-#: uui/inc/ids.hrc:157
+#: uui/inc/ids.hrc:156
msgctxt "RID_UUI_ERRHDL"
msgid "The file $(ARG1) is currently not locked by yourself."
msgstr "Файлът $(ARG1) не е заключен в момента от Вас."
#. L9PCQ
-#: uui/inc/ids.hrc:159
+#: uui/inc/ids.hrc:158
msgctxt "RID_UUI_ERRHDL"
msgid ""
"The previously obtained lock for file $(ARG1) has expired.\n"
@@ -453,7 +453,7 @@ msgstr ""
"Това може да се случи поради проблеми в сървъра, управляващ заключването. Възможно е записването в този файл да заличи промени, нанесени от други потребители!"
#. gZzEy
-#: uui/inc/ids.hrc:161
+#: uui/inc/ids.hrc:160
msgctxt "RID_UUI_ERRHDL"
msgid ""
"Component cannot be loaded, possibly broken or incomplete installation.\n"
@@ -467,7 +467,7 @@ msgstr ""
" $(ARG1)."
#. vHe5t
-#: uui/inc/ids.hrc:166
+#: uui/inc/ids.hrc:165
msgctxt "STR_UUI_UNKNOWNAUTH_UNTRUSTED"
msgid ""
"Unable to verify the identity of $(ARG1) site.\n"
@@ -479,7 +479,7 @@ msgstr ""
"Преди да продължите, прегледайте внимателно сертификата на сайта. Желаете ли да приемете този сертификат за идентифициране на уебсайта $(ARG1)?"
#. kBZVn
-#: uui/inc/ids.hrc:167
+#: uui/inc/ids.hrc:166
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
@@ -491,13 +491,13 @@ msgstr ""
"Уверете се, че датата и часът в компютъра ви са правилни."
#. 8GuAn
-#: uui/inc/ids.hrc:168
+#: uui/inc/ids.hrc:167
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
msgid "Security Warning: Server Certificate Invalid"
msgstr "Предупреждение за сигурността: невалиден сертификат на сървър"
#. iyR2A
-#: uui/inc/ids.hrc:169
+#: uui/inc/ids.hrc:168
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH"
msgid ""
"You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n"
@@ -513,13 +513,13 @@ msgstr ""
"Желаете ли все пак да продължите?"
#. q6DM2
-#: uui/inc/ids.hrc:170
+#: uui/inc/ids.hrc:169
msgctxt "STR_UUI_SSLWARN_DOMAINMISMATCH_TITLE"
msgid "Security Warning: Server Certificate Expired"
msgstr "Предупреждение за сигурността: изтекъл сертификат на сървър"
#. zd5oX
-#: uui/inc/ids.hrc:171
+#: uui/inc/ids.hrc:170
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
@@ -531,7 +531,7 @@ msgstr ""
"Ако показаният сертификат ви изглежда подозрителен, моля, прекратете връзката и уведомете администратора на сайта."
#. Aj227
-#: uui/inc/ids.hrc:172
+#: uui/inc/ids.hrc:171
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
msgid "Security Warning: Domain Name Mismatch"
msgstr "Предупреждение за сигурността: несъответстващо име на домейн"
@@ -539,118 +539,118 @@ msgstr "Предупреждение за сигурността: несъотв
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. RaCss
-#: uui/inc/strings.hrc:25
+#: uui/inc/strings.hrc:24
msgctxt "STR_ENTER_PASSWORD_TO_OPEN"
msgid "Enter password to open file: \n"
msgstr "Въведете парола, за да отворите файла: \n"
#. rmDwa
-#: uui/inc/strings.hrc:26
+#: uui/inc/strings.hrc:25
msgctxt "STR_ENTER_PASSWORD_TO_MODIFY"
msgid "Enter password to modify file: \n"
msgstr "Въведете парола, за да промените файла: \n"
#. BVofP
-#: uui/inc/strings.hrc:27
+#: uui/inc/strings.hrc:26
msgctxt "STR_ENTER_SIMPLE_PASSWORD"
msgid "Enter password: "
msgstr "Въведете парола: "
#. UTuR2
-#: uui/inc/strings.hrc:28
+#: uui/inc/strings.hrc:27
msgctxt "STR_CONFIRM_SIMPLE_PASSWORD"
msgid "Confirm password: "
msgstr "Потвърдете паролата: "
#. wydLC
-#: uui/inc/strings.hrc:29
+#: uui/inc/strings.hrc:28
msgctxt "STR_TITLE_CREATE_PASSWORD"
msgid "Set Password"
msgstr "Задаване на парола"
#. 8fcsq
-#: uui/inc/strings.hrc:30
+#: uui/inc/strings.hrc:29
msgctxt "STR_TITLE_ENTER_PASSWORD"
msgid "Enter Password"
msgstr "Въведете парола"
#. hggFL
-#: uui/inc/strings.hrc:31
+#: uui/inc/strings.hrc:30
msgctxt "STR_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Паролата за потвърждение не съвпада. Задайте паролата отново, като я въведете в двете полета."
#. sdbEf
-#: uui/inc/strings.hrc:33
+#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Документът се използва"
#. YCVzp
-#: uui/inc/strings.hrc:34
+#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -662,19 +662,19 @@ msgstr ""
"Отворете документа в режим само за четене или игнорирайте заключването и отворете документа за редактиране."
#. 8mKMg
-#: uui/inc/strings.hrc:35
+#: uui/inc/strings.hrc:34
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне ~само за четене"
#. ThAZk
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~Отваряне"
#. uFhJT
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -686,61 +686,61 @@ msgstr ""
"Затворете документа на другата система и отново опитайте да запишете или игнорирайте заключването и запишете текущия документ."
#. ZCJGW
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "Повторно записване"
#. EVEQx
-#: uui/inc/strings.hrc:39
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "Записване"
#. SZb7E
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:40
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "~Запомняне на паролата до края на сесията"
#. 7HtCZ
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:41
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "~Запомняне на паролата"
#. CV6Ci
-#: uui/inc/strings.hrc:43
+#: uui/inc/strings.hrc:42
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Некодирани потоци"
#. P7Bd8
-#: uui/inc/strings.hrc:45
+#: uui/inc/strings.hrc:44
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "Документът не може да бъде заключен"
#. XBEF9
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
msgstr "Не бе възможно да се създаде заключващ файл за изключителен достъп от %PRODUCTNAME, защото липсват права за създаване на заключващ файл на това местоположение или няма достатъчно дисково пространство."
#. CaBXF
-#: uui/inc/strings.hrc:47
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне само за четене"
#. u5nuY
-#: uui/inc/strings.hrc:49
+#: uui/inc/strings.hrc:48
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Документът се използва"
#. hFQZP
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:49
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -756,7 +756,7 @@ msgstr ""
"Отворете документа в режим само за четене или отворете копие за редактиране.$(ARG3)"
#. VF7vT
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -766,31 +766,31 @@ msgstr ""
"Можете също така да игнорирате заключването на файла и да отворите документа за редактиране."
#. tc7YZ
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне ~само за четене"
#. TsA54
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Отваряне на ~копие"
#. EXAAf
-#: uui/inc/strings.hrc:54
+#: uui/inc/strings.hrc:53
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Непознат потребител"
#. PFEwD
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:55
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Документът е променен от други"
#. umCKE
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:56
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -802,19 +802,19 @@ msgstr ""
"Желаете ли да го запишете въпреки това?"
#. DGYmK
-#: uui/inc/strings.hrc:58
+#: uui/inc/strings.hrc:57
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "Записване все пак"
#. YBz5F
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:59
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Документът се използва"
#. 4Fimj
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:60
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -830,7 +830,7 @@ msgstr ""
"Опитайте да запишете документа по-късно или запишете негово копие."
#. b3UBG
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:61
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -846,19 +846,19 @@ msgstr ""
"Може да опитате да игнорирате заключването на файла и да заместите съществуващия документ."
#. 8JFLZ
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "Повторно записване"
#. 6iCzM
-#: uui/inc/strings.hrc:64
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "Записване като..."
#. nqrvC
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:65
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -868,7 +868,7 @@ msgstr ""
"Изберете „Замяна“, за да бъде заместен, или въведете ново име."
#. 3bJvA
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:66
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -878,55 +878,55 @@ msgstr ""
"Моля, въведете ново име."
#. Bapqc
-#: uui/inc/strings.hrc:68
+#: uui/inc/strings.hrc:67
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Моля, въведете друго име на файл!"
#. BsaWY
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:69
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Паролата е неправилна. Файлът не може да бъде отворен."
#. WQbYF
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Паролата е неправилна. Файлът не може да бъде променян."
#. Gq9FJ
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Главната парола е неправилна."
#. pRwHM
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Паролата е неправилна."
#. DwdJn
-#: uui/inc/strings.hrc:74
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Потвърждението на паролата не съвпада."
#. dwGow
-#: uui/inc/strings.hrc:76
+#: uui/inc/strings.hrc:75
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "Заключващият файл е повреден"
#. QxsDe
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:76
msgctxt "STR_LOCKCORRUPT_MSG"
msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
msgstr "Заключващият файл е повреден и вероятно празен. За да го изтриете, отворете документа само за четене, после го затворете."
#. fKEYB
-#: uui/inc/strings.hrc:78
+#: uui/inc/strings.hrc:77
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне само за четене"
diff --git a/source/bg/vcl/messages.po b/source/bg/vcl/messages.po
index 171c6583ae4..723a1a6d0c5 100644
--- a/source/bg/vcl/messages.po
+++ b/source/bg/vcl/messages.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 16:00+0100\n"
-"PO-Revision-Date: 2020-11-04 20:46+0000\n"
+"POT-Creation-Date: 2021-03-08 14:40+0100\n"
+"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/vclmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -513,67 +513,67 @@ msgstr "16k (197 x 273)"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. CXDQa
#: vcl/inc/printaccessoryview.hrc:27
@@ -665,150 +665,138 @@ msgctxt "SV_HELPTEXT_RESTORE"
msgid "Restore"
msgstr "Възстановяване"
-#. BS7GF
-#: vcl/inc/strings.hrc:37
-msgctxt "SV_HELPTEXT_ROLLDOWN"
-msgid "Drop down"
-msgstr "Отваряне"
-
-#. 9Au5s
-#: vcl/inc/strings.hrc:38
-msgctxt "SV_HELPTEXT_ROLLUP"
-msgid "Roll up"
-msgstr "Свиване"
-
#. ryVCS
-#: vcl/inc/strings.hrc:39
+#: vcl/inc/strings.hrc:37
msgctxt "SV_HELPTEXT_HELP"
msgid "Help"
msgstr "Помощ"
#. kXsuJ
-#: vcl/inc/strings.hrc:40
+#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
msgstr "Заснемане и анотиране на екранна снимка"
#. tEF9o
-#: vcl/inc/strings.hrc:41
+#: vcl/inc/strings.hrc:39
msgctxt "SV_HELPTEXT_FADEIN"
msgid "Show"
msgstr "Показване"
#. FGDmB
-#: vcl/inc/strings.hrc:42
+#: vcl/inc/strings.hrc:40
msgctxt "SV_HELPTEXT_FADEOUT"
msgid "Hide"
msgstr "Скриване"
#. CTSjk
-#: vcl/inc/strings.hrc:43
+#: vcl/inc/strings.hrc:41
msgctxt "SV_HELPTEXT_CLOSEDOCUMENT"
msgid "Close Document"
msgstr "Затваряне на документа"
#. zpU7V
#. To translators: This is used on buttons for platforms other than Windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:46
+#: vcl/inc/strings.hrc:44
msgctxt "SV_BUTTONTEXT_OK"
msgid "~OK"
msgstr "~OK"
#. tePSP
#. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
-#: vcl/inc/strings.hrc:48
+#: vcl/inc/strings.hrc:46
msgctxt "SV_BUTTONTEXT_CANCEL"
msgid "~Cancel"
msgstr "~Отказ"
#. Td9Kr
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:50
+#: vcl/inc/strings.hrc:48
msgctxt "SV_BUTTONTEXT_OK_NOMNEMONIC"
msgid "OK"
msgstr "OK"
#. HYFxt
#. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string
-#: vcl/inc/strings.hrc:52
+#: vcl/inc/strings.hrc:50
msgctxt "SV_BUTTONTEXT_CANCEL_NOMNEMONIC"
msgid "Cancel"
msgstr "Отказ"
#. FeA4H
-#: vcl/inc/strings.hrc:53
+#: vcl/inc/strings.hrc:51
msgctxt "SV_BUTTONTEXT_YES"
msgid "~Yes"
msgstr "~Да"
#. FoaHJ
-#: vcl/inc/strings.hrc:54
+#: vcl/inc/strings.hrc:52
msgctxt "SV_BUTTONTEXT_NO"
msgid "~No"
msgstr "~Не"
#. oF4GE
-#: vcl/inc/strings.hrc:55
+#: vcl/inc/strings.hrc:53
msgctxt "SV_BUTTONTEXT_RETRY"
msgid "~Retry"
msgstr "~Повторен опит"
#. ECcBY
-#: vcl/inc/strings.hrc:56
+#: vcl/inc/strings.hrc:54
msgctxt "SV_BUTTONTEXT_HELP"
msgid "~Help"
msgstr "~Помощ"
#. vT447
-#: vcl/inc/strings.hrc:57
+#: vcl/inc/strings.hrc:55
msgctxt "SV_BUTTONTEXT_CLOSE"
msgid "~Close"
msgstr "~Затваряне"
#. HGPAB
-#: vcl/inc/strings.hrc:58
+#: vcl/inc/strings.hrc:56
msgctxt "SV_BUTTONTEXT_MORE"
msgid "~More"
msgstr "По~вече"
#. 2G82H
-#: vcl/inc/strings.hrc:59
+#: vcl/inc/strings.hrc:57
msgctxt "SV_BUTTONTEXT_IGNORE"
msgid "~Ignore"
msgstr "~Игнориране"
#. mHKZG
-#: vcl/inc/strings.hrc:60
+#: vcl/inc/strings.hrc:58
msgctxt "SV_BUTTONTEXT_ABORT"
msgid "~Abort"
msgstr "~Прекратяване"
#. xGRuS
-#: vcl/inc/strings.hrc:61
+#: vcl/inc/strings.hrc:59
msgctxt "SV_BUTTONTEXT_LESS"
msgid "~Less"
msgstr "По-~малко"
#. Y587T
-#: vcl/inc/strings.hrc:62
+#: vcl/inc/strings.hrc:60
msgctxt "SV_BUTTONTEXT_SAVE"
msgid "~Save"
msgstr "Записване"
#. LEA6Y
-#: vcl/inc/strings.hrc:63
+#: vcl/inc/strings.hrc:61
msgctxt "SV_BUTTONTEXT_OPEN"
msgid "~Open"
msgstr "~Отваряне"
#. ok7v2
-#: vcl/inc/strings.hrc:64
+#: vcl/inc/strings.hrc:62
msgctxt "SV_BUTTONTEXT_SCREENSHOT"
msgid "~Screenshot"
msgstr "Екранна снимка"
#. Ni8JA
-#: vcl/inc/strings.hrc:66
+#: vcl/inc/strings.hrc:64
msgctxt "SV_STDTEXT_SERVICENOTAVAILABLE"
msgid ""
"The component (%s) could not be loaded.\n"
@@ -818,362 +806,364 @@ msgstr ""
"Моля, стартирайте инсталатора в режим Поправка."
#. 3NRoN
-#: vcl/inc/strings.hrc:68
+#: vcl/inc/strings.hrc:66
msgctxt "SV_STDTEXT_ABOUT"
msgid "About %PRODUCTNAME"
msgstr "Относно %PRODUCTNAME"
#. HqHKV
-#: vcl/inc/strings.hrc:69
+#: vcl/inc/strings.hrc:67
msgctxt "SV_STDTEXT_PREFERENCES"
msgid "Preferences..."
msgstr "Свойства..."
#. ZLc4n
-#: vcl/inc/strings.hrc:70
+#: vcl/inc/strings.hrc:68
msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "Всеки тип"
#. FD7Bf
-#: vcl/inc/strings.hrc:72
+#: vcl/inc/strings.hrc:70
msgctxt "STR_FPICKER_AUTO_EXTENSION"
msgid "~Automatic file name extension"
msgstr "~Автоматично файлово разширение"
#. 9ECLu
-#: vcl/inc/strings.hrc:73
+#: vcl/inc/strings.hrc:71
msgctxt "STR_FPICKER_PASSWORD"
msgid "Save with pass~word"
msgstr "Записване с парола"
#. nyers
#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:75
+#: vcl/inc/strings.hrc:73
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
msgstr "Шифроване с ключ на GPG"
#. Z2MmL
-#: vcl/inc/strings.hrc:76
+#: vcl/inc/strings.hrc:74
msgctxt "STR_FPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
msgstr "Параметри на ~филтъра"
#. ZDE7y
-#: vcl/inc/strings.hrc:77
+#: vcl/inc/strings.hrc:75
msgctxt "STR_FPICKER_READONLY"
msgid "~Read-only"
msgstr "Само за ~четене"
#. EYvCH
-#: vcl/inc/strings.hrc:78
+#: vcl/inc/strings.hrc:76
msgctxt "STR_FPICKER_INSERT_AS_LINK"
msgid "Insert as ~Link"
msgstr "Вмъкване като ~връзка"
#. zpPD6
-#: vcl/inc/strings.hrc:79
+#: vcl/inc/strings.hrc:77
msgctxt "STR_FPICKER_SHOW_PREVIEW"
msgid "Pr~eview"
msgstr "~Мостра"
#. L7QTs
-#: vcl/inc/strings.hrc:80
+#: vcl/inc/strings.hrc:78
msgctxt "STR_FPICKER_PLAY"
msgid "~Play"
msgstr "Въ~зпроизвеждане"
#. rPLAU
-#: vcl/inc/strings.hrc:81
+#: vcl/inc/strings.hrc:79
msgctxt "STR_FPICKER_VERSION"
msgid "~Version:"
msgstr "В~ерсия:"
#. dMPHM
-#: vcl/inc/strings.hrc:82
+#: vcl/inc/strings.hrc:80
msgctxt "STR_FPICKER_TEMPLATES"
msgid "S~tyles:"
msgstr "С~тилове:"
#. TeuRr
-#: vcl/inc/strings.hrc:83
+#: vcl/inc/strings.hrc:81
msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
msgid "Frame Style: "
msgstr "Стил за рамки: "
#. Cq63y
-#: vcl/inc/strings.hrc:84
+#: vcl/inc/strings.hrc:82
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
msgstr "Закотвяне: "
#. 7yacA
-#: vcl/inc/strings.hrc:85
+#: vcl/inc/strings.hrc:83
msgctxt "STR_FPICKER_SELECTION"
msgid "~Selection"
msgstr "~Селекция"
#. QFCuE
-#: vcl/inc/strings.hrc:86
+#: vcl/inc/strings.hrc:84
msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
msgid "Select Path"
msgstr "Избор на път"
#. AoCzG
-#: vcl/inc/strings.hrc:87
+#: vcl/inc/strings.hrc:85
msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
msgid "Please select a folder."
msgstr "Моля, изберете папка."
#. vcC7G
-#: vcl/inc/strings.hrc:88
+#: vcl/inc/strings.hrc:86
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
msgstr "Вече съществува файл с име \"$filename$\". Искате ли да го замените?"
#. MKKjJ
-#: vcl/inc/strings.hrc:89
+#: vcl/inc/strings.hrc:87
msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
msgstr "Файлът вече съществува в \"$dirname$\". Заместването му ще заличи старото съдържание."
#. pF5CC
-#: vcl/inc/strings.hrc:90
+#: vcl/inc/strings.hrc:88
msgctxt "STR_FPICKER_ALLFORMATS"
msgid "All Formats"
msgstr "Всички формати"
#. xJLGT
-#: vcl/inc/strings.hrc:91
+#: vcl/inc/strings.hrc:89
msgctxt "STR_FPICKER_OPEN"
msgid "Open"
msgstr "Отваряне"
#. W5xGp
-#: vcl/inc/strings.hrc:92
+#: vcl/inc/strings.hrc:90
msgctxt "STR_FPICKER_SAVE"
msgid "Save"
msgstr "Записване"
#. QxrYy
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:91
msgctxt "STR_FPICKER_TYPE"
msgid "File ~type"
msgstr "~Тип на файла"
#. qfg3C
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:93
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "В системата не бяха открити шрифтове."
#. rWAuM
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:95
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "Брой страници"
#. SFF7G
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:96
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr "Мострата е изключена"
#. xMtCc
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:97
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "Печат във файл..."
#. GBDRJ
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:98
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "Подразбиран принтер"
#. 8BSG2
-#: vcl/inc/strings.hrc:101
+#: vcl/inc/strings.hrc:99
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "Моля, въведете факс номера"
#. GtHUE
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:100
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "По избор"
#. yPJTL
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:102
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "Вмъкнатият текст надвиши максималната дължина на текстовото поле. Текстът бе съкратен."
#. Dk4vc
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:104
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "Нишки в ЦП: "
#. 5DyEd
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:105
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "ОС: "
#. Yqrwo
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:106
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "Рендиране на ПИ: "
#. 8YjVN
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:107
msgctxt "SV_APP_GL"
msgid "GL"
msgstr "GL"
#. HnDDn
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:108
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr "Skia/Vulkan"
#. n2Hto
-#: vcl/inc/strings.hrc:111
+#: vcl/inc/strings.hrc:109
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr "Skia/Raster"
#. ZitRE
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:110
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "по подразбиране"
#. 4gWk5
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:112
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Информация"
#. 5gAyW
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:113
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "Предупреждение"
#. buqyG
-#: vcl/inc/strings.hrc:116
+#: vcl/inc/strings.hrc:114
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "Грешка"
#. 3CTTS
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:115
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Потвърждение"
#. drUB5
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:117
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "изтриване на ред"
#. cxFKH
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:118
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "изтриване на няколко реда"
#. 7KPRL
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:119
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "вмъкване на няколко реда"
#. R2cyr
-#: vcl/inc/strings.hrc:122
+#: vcl/inc/strings.hrc:120
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "вмъкване на „$1“"
#. 66FYV
-#: vcl/inc/strings.hrc:123
+#: vcl/inc/strings.hrc:121
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "изтриване на „$1“"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:126
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ред: %1, Колона: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:125
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Празно поле"
#. TcNJT
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:127
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "Ден"
#. DhSTi
-#: vcl/inc/strings.hrc:130
+#: vcl/inc/strings.hrc:128
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "Седмица"
#. 5Eyy3
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:129
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Днес"
#. rSVhV
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:131
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Стъпки"
#. wEp9A
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:132
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Готово"
#. ygXBw
-#: vcl/inc/strings.hrc:135
+#: vcl/inc/strings.hrc:133
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Напред >"
#. 5MSDe
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:134
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Назад"
#. urFMt
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:136
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Разделител"
#. EkzSW
-#: vcl/inc/strings.hrc:140
+#: vcl/inc/strings.hrc:138
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
"as some are at a higher level!"
msgstr ""
+"Предупреждение: не всички импортирани EPS графики могат да се запишат на ниво 1,\n"
+"защото някои са от по-високо ниво!"
#. V2EuY
#. To translators: This is the first entry of a sequence of measurement unit names
diff --git a/source/bg/wizards/messages.po b/source/bg/wizards/messages.po
index abf7ccf075e..2ce192fd8cd 100644
--- a/source/bg/wizards/messages.po
+++ b/source/bg/wizards/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2019-04-30 09:44+0000\n"
+"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1556617476.000000\n"
#. gbiMx
@@ -1615,64 +1615,64 @@ msgstr "Прост"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
diff --git a/source/bg/writerperfect/messages.po b/source/bg/writerperfect/messages.po
index acc5e4c7c7e..5591c49c752 100644
--- a/source/bg/writerperfect/messages.po
+++ b/source/bg/writerperfect/messages.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2020-01-17 18:13+0000\n"
+"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,49 +17,49 @@ msgstr ""
"X-POOTLE-MTIME: 1525787156.000000\n"
#. DXXuk
-#: writerperfect/inc/strings.hrc:15
+#: writerperfect/inc/strings.hrc:14
msgctxt "STR_ENCODING_DIALOG_TITLE"
msgid "Import file"
msgstr "Импортиране на файл"
#. NCpDZ
-#: writerperfect/inc/strings.hrc:16
+#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
msgstr "Импортиране файл на MS Multiplan за DOS"
#. 9QaFD
-#: writerperfect/inc/strings.hrc:17
+#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
msgid "Import MS Works file"
msgstr "Импортиране файл на MS Works"
#. AGNp8
-#: writerperfect/inc/strings.hrc:18
+#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWRITE"
msgid "Import MS Write file"
msgstr "Импортиране файл на MS Write"
#. YFuS7
-#: writerperfect/inc/strings.hrc:19
+#: writerperfect/inc/strings.hrc:18
msgctxt "STR_ENCODING_DIALOG_TITLE_DOSWORD"
msgid "Import MS Word for DOS file"
msgstr "Импортиране файл на MS Word за DOS"
#. A3kjQ
-#: writerperfect/inc/strings.hrc:20
+#: writerperfect/inc/strings.hrc:19
msgctxt "STR_ENCODING_DIALOG_TITLE_LOTUS"
msgid "Import Lotus file"
msgstr "Импортиране файл на Lotus"
#. 7ngKL
-#: writerperfect/inc/strings.hrc:21
+#: writerperfect/inc/strings.hrc:20
msgctxt "STR_ENCODING_DIALOG_TITLE_SYMPHONY"
msgid "Import Symphony file"
msgstr "Импортиране файл на Symphony"
#. Dp6Zj
-#: writerperfect/inc/strings.hrc:22
+#: writerperfect/inc/strings.hrc:21
msgctxt "STR_ENCODING_DIALOG_TITLE_QUATTROPRO"
msgid "Import Quattro Pro file"
msgstr "Импортиране файл на Quattro Pro"
@@ -67,67 +67,67 @@ msgstr "Импортиране файл на Quattro Pro"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. MZYvQ
#: writerperfect/uiconfig/ui/exportepub.ui:9
diff --git a/source/bg/xmlsecurity/messages.po b/source/bg/xmlsecurity/messages.po
index 44d8ef13be9..63aad3d266f 100644
--- a/source/bg/xmlsecurity/messages.po
+++ b/source/bg/xmlsecurity/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-30 15:38+0100\n"
-"PO-Revision-Date: 2020-09-11 22:13+0000\n"
+"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4\n"
"X-POOTLE-MTIME: 1554813133.000000\n"
#. EyJrF
@@ -231,67 +231,67 @@ msgstr ""
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "Добавяне"
#. S9dsC
msgctxt "stock"
msgid "_Apply"
-msgstr ""
+msgstr "Прилагане"
#. TMo6G
msgctxt "stock"
msgid "_Cancel"
-msgstr ""
+msgstr "Отказ"
#. MRCkv
msgctxt "stock"
msgid "_Close"
-msgstr ""
+msgstr "Затваряне"
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "Изтриване"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "Редактиране"
#. imQxr
msgctxt "stock"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "Създаване"
#. dx2yy
msgctxt "stock"
msgid "_No"
-msgstr ""
+msgstr "Не"
#. M9DsL
msgctxt "stock"
msgid "_OK"
-msgstr ""
+msgstr "OK"
#. VtJS9
msgctxt "stock"
msgid "_Remove"
-msgstr ""
+msgstr "Премахване"
#. C69Fy
msgctxt "stock"
msgid "_Reset"
-msgstr ""
+msgstr "Нулиране"
#. mgpxh
msgctxt "stock"
msgid "_Yes"
-msgstr ""
+msgstr "Да"
#. uTxas
#: xmlsecurity/uiconfig/ui/certdetails.ui:49
@@ -739,7 +739,7 @@ msgstr "Надеждни местоположения за файлове"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:24
msgctxt "selectcertificatedialog|SelectCertificateDialog"
msgid "Select X.509 Certificate"
-msgstr ""
+msgstr "Избор на сертификат X.509"
#. 5iWSE
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:102
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 25eb0c4a231..b8110cdc6b6 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: 2021-02-22 17:16+0100\n"
+"POT-Creation-Date: 2021-03-23 11:44+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"
@@ -1915,249 +1915,177 @@ msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr ""
-#. zvqUJ
-#: cui/inc/strings.hrc:352
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "কোন সীমানা নয়"
-
-#. ABKEK
-#: cui/inc/strings.hrc:353
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "শুধুমাত্র বহিঃস্থ সীমানা নির্ধারণ"
-
-#. ygU8P
-#: cui/inc/strings.hrc:354
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "বহিঃস্থ সীমানা ও অনুভূমিক রেখা নির্ধারণ"
-
-#. q5KJ8
-#: cui/inc/strings.hrc:355
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "বহিঃস্থ সীমানা ও সব অন্তঃস্থ রেখা নির্ধারণ"
-
-#. H5s9X
-#: cui/inc/strings.hrc:356
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "অন্তঃস্থ রেখা পরিবর্তন না করে বহিঃস্থ সীমানা নির্ধারণ"
-
-#. T5crG
-#: cui/inc/strings.hrc:357
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "শুধুমাত্র তির্যক রেখা নির্ধারণ"
-
-#. S6AAA
-#: cui/inc/strings.hrc:358
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "চারটি সীমানার প্রতিটি নির্ধারণ"
-
-#. tknFJ
-#: cui/inc/strings.hrc:359
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "শুধুমাত্র বাম ও ডান সীমানা নির্ধারণ"
-
-#. hSmnW
-#: cui/inc/strings.hrc:360
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "শুধুমাত্র শীর্ষ ও নিম্ন সীমানা নির্ধারণ"
-
-#. Dy2UG
-#: cui/inc/strings.hrc:361
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "শুধুমাত্র বাম সীমানা নির্ধারণ"
-
-#. nCjXG
-#: cui/inc/strings.hrc:362
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "শীর্ষ ও নিম্ন সীমানা এবং সব অভ্যন্তরীণ রেখা নির্ধারণ"
-
-#. 46Fq7
-#: cui/inc/strings.hrc:363
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "বাম ও ডান সীমানা এবং সব অভ্যন্তরীণ রেখা নির্ধারণ"
-
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "কোন ছায়া নয়"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "নিচে ডানে ছায়া ফেলা"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "উপরে ডানে ছায়া ফেলা"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "নিচে বামে ছায়া ফেলা"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "উপরে বামে ছায়া ফেলা"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr ""
#. WHVhx
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2021 LibreOffice contributors."
msgstr ""
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:366
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:367
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "এই প্রকাশনা সরবরাহ করেছে %OOOVENDOR।"
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:368
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "OpenOffice.org-এর উপরে ভিত্তি করে LibreOffice গঠিত।"
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:369
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:370
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:372
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "পাথ সম্পাদনা: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr ""
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr ""
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr ""
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr ""
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr ""
#. FjQQ5
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr ""
#. 2GUFq
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr ""
#. TmK5f
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr ""
#. izdAK
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr ""
#. HYT6K
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr ""
#. 88Ect
-#: cui/inc/strings.hrc:399
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr ""
#. KTtQE
-#: cui/inc/strings.hrc:401
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr ""
@@ -2334,14 +2262,15 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show the contents of another document within your document? Use Insert ▸ Section and select Link."
msgstr ""
-#. VvEKg
+#. 6uYph
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_insert.html#par_id3153404
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "To automatically number table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
+msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style."
msgstr ""
#. AzNEm
+#. no local help URI
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
@@ -2523,1071 +2452,1065 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
msgstr ""
-#. FnWjD
+#. SNTbc
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
-
-#. SNTbc
-#: cui/inc/tipoftheday.hrc:111
-msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
msgstr ""
#. wZDsJ
-#: cui/inc/tipoftheday.hrc:112
+#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"
msgstr ""
#. JDGDc
-#: cui/inc/tipoftheday.hrc:113
+#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."
msgstr ""
#. 5Anfg
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html
-#: cui/inc/tipoftheday.hrc:114
+#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions."
msgstr ""
#. 7dDjc
-#: cui/inc/tipoftheday.hrc:115
+#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
#. aJtLS
-#: cui/inc/tipoftheday.hrc:116
+#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
msgstr ""
#. iXjDF
-#: cui/inc/tipoftheday.hrc:117
+#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
#. TD8Ux
-#: cui/inc/tipoftheday.hrc:118
+#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
msgstr ""
#. muc5F
-#: cui/inc/tipoftheday.hrc:119
+#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers."
msgstr ""
#. ZZZZo
-#: cui/inc/tipoftheday.hrc:120
+#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style."
msgstr ""
#. oTX4L
-#: cui/inc/tipoftheday.hrc:121
+#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialog’s %PRODUCTNAME Writer tab."
msgstr ""
#. YVF2y
-#: cui/inc/tipoftheday.hrc:122
+#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
msgstr ""
#. pZZxV
-#: cui/inc/tipoftheday.hrc:123
+#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
msgstr ""
#. WZi38
-#: cui/inc/tipoftheday.hrc:124
+#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
msgstr ""
#. FhocH
-#: cui/inc/tipoftheday.hrc:125
+#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:"
msgstr ""
#. n3b6P
-#: cui/inc/tipoftheday.hrc:126
+#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells."
msgstr ""
#. h7afF
-#: cui/inc/tipoftheday.hrc:127
+#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
msgstr ""
#. DmbfV
-#: cui/inc/tipoftheday.hrc:128
+#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
msgstr ""
#. cVaQ3
-#: cui/inc/tipoftheday.hrc:129
+#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, %MOD1+click the target sheet’s tab and use Sheet ▸ Fill Cells ▸ Fill Sheets."
msgstr ""
#. QDmWG
-#: cui/inc/tipoftheday.hrc:130
+#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface."
msgstr ""
#. J853i
-#: cui/inc/tipoftheday.hrc:131
+#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
msgstr ""
#. BcK3A
-#: cui/inc/tipoftheday.hrc:132
+#: cui/inc/tipoftheday.hrc:131
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 ""
#. bY8ve
-#: cui/inc/tipoftheday.hrc:133
+#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
msgstr ""
#. GEJXj
-#: cui/inc/tipoftheday.hrc:134
+#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left."
msgstr ""
#. Bs9w9
-#: cui/inc/tipoftheday.hrc:135
+#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
msgstr ""
#. UVRgV
-#: cui/inc/tipoftheday.hrc:136
+#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Date/time value is just a number of days since a chosen day zero; in the number, integer part represents date, and fractional part is time (elapsed part of a day), with 0.5 representing noon."
msgstr ""
#. o2fy3
-#: cui/inc/tipoftheday.hrc:137
+#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence."
msgstr ""
#. XDhNo
-#: cui/inc/tipoftheday.hrc:138
+#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
msgstr ""
#. E7GZz
-#: cui/inc/tipoftheday.hrc:139
+#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Annoyed by the “marching ants” around cells in Calc? Press escape to stop them; the copied content will remain available for pasting."
msgstr ""
#. fsDVc
-#: cui/inc/tipoftheday.hrc:140
+#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
msgstr ""
#. VWNyB
-#: cui/inc/tipoftheday.hrc:141
+#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
msgstr ""
#. eRzRG
-#: cui/inc/tipoftheday.hrc:142
+#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click on the special character icon in the toolbar to get quick access to favorite and recent characters to insert."
msgstr ""
#. 7UE7V
-#: cui/inc/tipoftheday.hrc:143
+#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles."
msgstr ""
#. FKfZB
-#: cui/inc/tipoftheday.hrc:144
+#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat."
msgstr ""
#. UuBRE
-#: cui/inc/tipoftheday.hrc:145
+#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”."
msgstr ""
#. cCnpG
-#: cui/inc/tipoftheday.hrc:146
+#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You would like to view the calculation of individual elements of a formula, select the respective elements and press F9."
msgstr ""
#. 9HtDt
-#: cui/inc/tipoftheday.hrc:147
+#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet."
msgstr ""
#. L6brZ
#. local help missing
-#: cui/inc/tipoftheday.hrc:148
+#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork."
msgstr ""
#. ZE6D5
-#: cui/inc/tipoftheday.hrc:149
+#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”."
msgstr ""
#. wAQLx
-#: cui/inc/tipoftheday.hrc:150
+#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents (or right-click and Edit the previously inserted index). In the Entries tab delete the page number (#) from Structure line."
msgstr ""
#. JPu6C
-#: cui/inc/tipoftheday.hrc:151
+#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
msgstr ""
#. 8qYrk
-#: cui/inc/tipoftheday.hrc:152
+#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text."
msgstr ""
#. Zj7NA
-#: cui/inc/tipoftheday.hrc:153
+#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions."
msgstr ""
#. 7kaMQ
-#: cui/inc/tipoftheday.hrc:154
+#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
#. GSVYQ
-#: cui/inc/tipoftheday.hrc:155
+#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
-#: cui/inc/tipoftheday.hrc:156
+#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name."
msgstr ""
#. udDRb
-#: cui/inc/tipoftheday.hrc:157
+#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
msgstr ""
#. ALczh
-#: cui/inc/tipoftheday.hrc:158
+#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down %MOD1 key and click their tabs before entering."
msgstr ""
#. XsdGx
-#: cui/inc/tipoftheday.hrc:159
+#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”."
msgstr ""
#. WMnj2
#. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675
-#: cui/inc/tipoftheday.hrc:160
+#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button."
msgstr ""
#. qQsXD
-#: cui/inc/tipoftheday.hrc:161
+#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”."
msgstr ""
#. GmBZk
-#: cui/inc/tipoftheday.hrc:162
+#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)."
msgstr ""
#. Eb85a
-#: cui/inc/tipoftheday.hrc:163
+#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
msgstr ""
#. T3RSB
-#: cui/inc/tipoftheday.hrc:164
+#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
msgstr ""
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
-#: cui/inc/tipoftheday.hrc:165
+#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button."
msgstr ""
#. Xrnns
-#: cui/inc/tipoftheday.hrc:166
+#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME Calc does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction."
msgstr ""
#. heb7V
-#: cui/inc/tipoftheday.hrc:167
+#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
msgstr ""
#. T6uNP
-#: cui/inc/tipoftheday.hrc:168
+#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit ▸ Find and Replace: Search = [<>], Replace = blank and check “Regular expressions” under Other options."
msgstr ""
#. e3dfT
#. local help missing
-#: cui/inc/tipoftheday.hrc:169
+#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slideshow from the outline."
msgstr ""
#. ZdyGi
-#: cui/inc/tipoftheday.hrc:170
+#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
msgstr ""
#. qyyJ4
#. local help missing
-#: cui/inc/tipoftheday.hrc:171
+#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronize sheets” so that each sheet in Calc has its own zoom factor."
msgstr ""
#. qK7Xz
-#: cui/inc/tipoftheday.hrc:172
+#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color."
msgstr ""
#. YGUAo
-#: cui/inc/tipoftheday.hrc:173
+#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
msgstr ""
#. mJ6Gu
#. local help missing
-#: cui/inc/tipoftheday.hrc:174
+#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
msgstr ""
#. 8rA8u
-#: cui/inc/tipoftheday.hrc:175
+#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
msgstr ""
#. Bqtz5
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html
-#: cui/inc/tipoftheday.hrc:176
+#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
msgstr ""
#. GgzTh
#. local help missing
-#: cui/inc/tipoftheday.hrc:177
+#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
msgstr ""
#. z72JP
-#: cui/inc/tipoftheday.hrc:178
+#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
msgstr ""
#. REoF7
-#: cui/inc/tipoftheday.hrc:179
+#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL."
msgstr ""
#. zAqfX
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html
-#: cui/inc/tipoftheday.hrc:180
+#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
msgstr ""
#. Uq3tZ
-#: cui/inc/tipoftheday.hrc:181
+#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
msgstr ""
#. V2QjS
-#: cui/inc/tipoftheday.hrc:182
+#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
msgstr ""
#. uYpVp
#. local help missing
-#: cui/inc/tipoftheday.hrc:183
+#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)."
msgstr ""
#. u4FZP
-#: cui/inc/tipoftheday.hrc:184
+#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern."
msgstr ""
#. MZyXB
-#: cui/inc/tipoftheday.hrc:185
+#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to export formulas to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulas” in the next dialog."
msgstr ""
#. XLN9z
-#: cui/inc/tipoftheday.hrc:186
+#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
msgstr ""
#. PFGhM
#. local help missing
-#: cui/inc/tipoftheday.hrc:187
+#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment."
msgstr ""
#. SMLUg
-#: cui/inc/tipoftheday.hrc:188
+#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
msgstr ""
#. UwBoZ
-#: cui/inc/tipoftheday.hrc:189
+#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter."
msgstr ""
#. Tc7Nf
-#: cui/inc/tipoftheday.hrc:190
+#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
msgstr ""
#. pmP5i
#. local help missing
-#: cui/inc/tipoftheday.hrc:191
+#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode."
msgstr ""
-#. AFuSB
-#: cui/inc/tipoftheday.hrc:192
+#. KPLPC
+#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
+msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
msgstr ""
#. ZacQo
-#: cui/inc/tipoftheday.hrc:193
+#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation."
msgstr ""
#. Vi6L8
-#: cui/inc/tipoftheday.hrc:194
+#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
msgstr ""
#. Fcnsr
-#: cui/inc/tipoftheday.hrc:195
+#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
msgstr ""
#. 3xJeA
-#: cui/inc/tipoftheday.hrc:196
+#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
#. BnMpb
#. local help missing
-#: cui/inc/tipoftheday.hrc:197
+#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
-#: cui/inc/tipoftheday.hrc:198
+#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
msgstr ""
#. 6GtGH
-#: cui/inc/tipoftheday.hrc:199
+#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it."
msgstr ""
#. 63noP
-#: cui/inc/tipoftheday.hrc:200
+#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption."
msgstr ""
#. 8kpGG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html
-#: cui/inc/tipoftheday.hrc:201
+#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email."
msgstr ""
#. 87ozj
#. local help missing
-#: cui/inc/tipoftheday.hrc:202
+#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
msgstr ""
#. mCfdK
-#: cui/inc/tipoftheday.hrc:203
+#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros."
msgstr ""
#. 5fYgo
-#: cui/inc/tipoftheday.hrc:204
+#: cui/inc/tipoftheday.hrc:203
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 ""
#. DA82R
-#: cui/inc/tipoftheday.hrc:205
+#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content."
msgstr ""
#. naXEz
-#: cui/inc/tipoftheday.hrc:206
+#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S."
msgstr ""
#. vNBR3
-#: cui/inc/tipoftheday.hrc:207
+#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
#. 9TnEA
-#: cui/inc/tipoftheday.hrc:208
+#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
msgstr ""
#. CGQaY
-#: cui/inc/tipoftheday.hrc:209
+#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date."
msgstr ""
#. vGKBe
-#: cui/inc/tipoftheday.hrc:210
+#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts."
msgstr ""
#. Y85ij
-#: cui/inc/tipoftheday.hrc:211
+#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions."
msgstr ""
#. Y24mZ
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html
-#: cui/inc/tipoftheday.hrc:212
+#: cui/inc/tipoftheday.hrc:211
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
msgstr ""
#. JBgEb
-#: cui/inc/tipoftheday.hrc:213
+#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Chapter numbering dialog lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”"
msgstr ""
#. z3rPd
-#: cui/inc/tipoftheday.hrc:214
+#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer."
msgstr ""
#. DKBCg
-#: cui/inc/tipoftheday.hrc:215
+#: cui/inc/tipoftheday.hrc:214
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
msgstr ""
#. mmG7g
-#: cui/inc/tipoftheday.hrc:216
+#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal."
msgstr ""
#. FDNiA
-#: cui/inc/tipoftheday.hrc:217
+#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
msgstr ""
#. hDiRV
#. local help missing
-#: cui/inc/tipoftheday.hrc:218
+#: cui/inc/tipoftheday.hrc:217
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Often create one document from another? Consider using a template."
msgstr ""
#. nESeG
-#: cui/inc/tipoftheday.hrc:219
+#: cui/inc/tipoftheday.hrc:218
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting."
msgstr ""
#. tWQPD
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html
-#: cui/inc/tipoftheday.hrc:220
+#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
msgstr ""
#. 4V4Vw
#. local help missing
-#: cui/inc/tipoftheday.hrc:221
+#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font."
msgstr ""
#. 9Uy9Q
-#: cui/inc/tipoftheday.hrc:222
+#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value."
msgstr ""
#. rxKUR
-#: cui/inc/tipoftheday.hrc:223
+#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”."
msgstr ""
#. 3masz
-#: cui/inc/tipoftheday.hrc:224
+#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting."
msgstr ""
#. zD57W
-#: cui/inc/tipoftheday.hrc:225
+#: cui/inc/tipoftheday.hrc:224
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original."
msgstr ""
#. fkvVZ
-#: cui/inc/tipoftheday.hrc:226
+#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When you have created a Style based on another, you can enter a percentage value or a point value (e.g. 110% or −2pt or +5pt)."
msgstr ""
#. PBjFr
-#: cui/inc/tipoftheday.hrc:227
+#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialog. Use Operations “Add” to not override existing content."
msgstr ""
#. Mu27G
-#: cui/inc/tipoftheday.hrc:228
+#: cui/inc/tipoftheday.hrc:227
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter."
msgstr ""
#. WMueE
-#: cui/inc/tipoftheday.hrc:229
+#: cui/inc/tipoftheday.hrc:228
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc."
msgstr ""
#. qAVmk
-#: cui/inc/tipoftheday.hrc:230
+#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want."
msgstr ""
#. TmaSP
-#: cui/inc/tipoftheday.hrc:231
+#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import."
msgstr ""
#. kwxqQ
-#: cui/inc/tipoftheday.hrc:232
+#: cui/inc/tipoftheday.hrc:231
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
msgstr ""
#. rxTGc
-#: cui/inc/tipoftheday.hrc:233
+#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the “leading zeroes” cell format option or format the cell as text before entering the number."
msgstr ""
#. jkXFE
-#: cui/inc/tipoftheday.hrc:234
+#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
msgstr ""
#. wAFRP
-#: cui/inc/tipoftheday.hrc:235
+#: cui/inc/tipoftheday.hrc:234
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear."
msgstr ""
#. Cqtjg
-#: cui/inc/tipoftheday.hrc:236
+#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background."
msgstr ""
#. khFDu
-#: cui/inc/tipoftheday.hrc:237
+#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)."
msgstr ""
#. BtaBD
-#: cui/inc/tipoftheday.hrc:238
+#: cui/inc/tipoftheday.hrc:237
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
msgstr ""
#. U2cxc
#. local help missing
-#: cui/inc/tipoftheday.hrc:239
+#: cui/inc/tipoftheday.hrc:238
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
msgstr ""
#. LThNS
-#: cui/inc/tipoftheday.hrc:240
+#: cui/inc/tipoftheday.hrc:239
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 ""
#. t9CAf
-#: cui/inc/tipoftheday.hrc:241
+#: cui/inc/tipoftheday.hrc:240
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)."
msgstr ""
#. cPNVv
-#: cui/inc/tipoftheday.hrc:242
+#: cui/inc/tipoftheday.hrc:241
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment."
msgstr ""
#. dpyeU
-#: cui/inc/tipoftheday.hrc:243
+#: cui/inc/tipoftheday.hrc:242
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
msgstr ""
#. AjBA3
#. local help missing
-#: cui/inc/tipoftheday.hrc:244
+#: cui/inc/tipoftheday.hrc:243
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart."
msgstr ""
#. j4m6F
-#: cui/inc/tipoftheday.hrc:245
+#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed."
msgstr ""
#. 9cyVB
-#: cui/inc/tipoftheday.hrc:246
+#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit ▸ Go To Page… or press %MOD1+G."
msgstr ""
#. ULATG
-#: cui/inc/tipoftheday.hrc:247
+#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
msgstr ""
#. SLU8G
-#: cui/inc/tipoftheday.hrc:248
+#: cui/inc/tipoftheday.hrc:247
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation."
msgstr ""
#. sogyj
-#: cui/inc/tipoftheday.hrc:249
+#: cui/inc/tipoftheday.hrc:248
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 ""
#. ppAeT
#. local help missing
-#: cui/inc/tipoftheday.hrc:250
+#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort."
msgstr ""
#. 26HAu
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html
-#: cui/inc/tipoftheday.hrc:251
+#: cui/inc/tipoftheday.hrc:250
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section."
msgstr ""
#. 7dGQR
-#: cui/inc/tipoftheday.hrc:252
+#: cui/inc/tipoftheday.hrc:251
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents—check it out."
msgstr ""
#. tvpFN
-#: cui/inc/tipoftheday.hrc:253
+#: cui/inc/tipoftheday.hrc:252
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
msgstr ""
#. evDnS
#. local help missing
-#: cui/inc/tipoftheday.hrc:254
+#: cui/inc/tipoftheday.hrc:253
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!"
msgstr ""
#. ARJgA
#. local help missing
-#: cui/inc/tipoftheday.hrc:255
+#: cui/inc/tipoftheday.hrc:254
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format ▸ Columns ▸ Show."
msgstr ""
#. Wzpbw
-#: cui/inc/tipoftheday.hrc:256
+#: cui/inc/tipoftheday.hrc:255
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number."
msgstr ""
#. AgQyA
-#: cui/inc/tipoftheday.hrc:257
+#: cui/inc/tipoftheday.hrc:256
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
msgstr ""
#. mPz5B
-#: cui/inc/tipoftheday.hrc:258
+#: cui/inc/tipoftheday.hrc:257
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
msgstr ""
#. BJ5aN
#. local help missing
-#: cui/inc/tipoftheday.hrc:259
+#: cui/inc/tipoftheday.hrc:258
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
msgstr ""
#. Jx7Fr
-#: cui/inc/tipoftheday.hrc:260
+#: cui/inc/tipoftheday.hrc:259
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
msgstr ""
#. 2DrYx
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html
-#: cui/inc/tipoftheday.hrc:261
+#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
msgstr ""
#. 55Nfb
-#: cui/inc/tipoftheday.hrc:262
+#: cui/inc/tipoftheday.hrc:261
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 ""
#. BiSJM
#. local help missing
-#: cui/inc/tipoftheday.hrc:263
+#: cui/inc/tipoftheday.hrc:262
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
msgstr ""
#. QeBjt
-#: cui/inc/tipoftheday.hrc:264
+#: cui/inc/tipoftheday.hrc:263
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In the replace input field of auto correct options you can use the wildcards .*"
msgstr ""
#. G7J8m
-#: cui/inc/tipoftheday.hrc:265
+#: cui/inc/tipoftheday.hrc:264
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down."
msgstr ""
#. MG7Pu
-#: cui/inc/tipoftheday.hrc:266
+#: cui/inc/tipoftheday.hrc:265
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To search in several spreadsheets, select them before you start the search."
msgstr ""
#. Jd6KJ
-#: cui/inc/tipoftheday.hrc:267
+#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
msgstr ""
#. DgSwJ
-#: cui/inc/tipoftheday.hrc:268
+#: cui/inc/tipoftheday.hrc:267
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces."
msgstr ""
#. 3Fjtd
-#: cui/inc/tipoftheday.hrc:269
+#: cui/inc/tipoftheday.hrc:268
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
msgstr ""
#. UggLQ
-#: cui/inc/tipoftheday.hrc:270
+#: cui/inc/tipoftheday.hrc:269
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left."
msgstr ""
#. gqs9W
-#: cui/inc/tipoftheday.hrc:271
+#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
msgstr ""
#. EabEN
-#: cui/inc/tipoftheday.hrc:272
+#: cui/inc/tipoftheday.hrc:271
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!"
msgstr ""
#. cmz6r
-#: cui/inc/tipoftheday.hrc:273
+#: cui/inc/tipoftheday.hrc:272
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and XML filters?"
msgstr ""
#. C7Ya2
-#: cui/inc/tipoftheday.hrc:274
+#: cui/inc/tipoftheday.hrc:273
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 ""
#. hsZPg
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:279
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:281
+#: cui/inc/tipoftheday.hrc:280
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:281
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:282
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -3598,22 +3521,22 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
msgstr ""
-#. 8irik
+#. BoVy3
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
+msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
msgstr ""
-#. wKg2Q
+#. 8irik
#: 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."
+msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
msgstr ""
-#. BoVy3
+#. wKg2Q
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used in Microsoft Office. It organizes functions in tabs and makes the main menu obsolete."
+msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
msgstr ""
#. qXq4A
@@ -3622,16 +3545,16 @@ msgctxt "RID_CUI_TOOLBARMODES"
msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens."
msgstr ""
-#. LXAzN
+#. oZV6K
#: cui/inc/toolbarmode.hrc:27
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
+msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
msgstr ""
-#. oZV6K
+#. LXAzN
#: cui/inc/toolbarmode.hrc:28
msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others."
+msgid "The Groupedbar Compact interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -13057,10 +12980,10 @@ msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "বিভাজক"
-#. AEaYR
+#. GCjCU
#: cui/uiconfig/ui/numberingoptionspage.ui:515
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."
+msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
@@ -14850,22 +14773,46 @@ msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "অপশন"
+#. LDcDG
+#: cui/uiconfig/ui/optionsdialog.ui:54
+msgctxt "optionsdialog|revert"
+msgid "Unsaved modifications to this tab are reverted."
+msgstr ""
+
#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
+#: cui/uiconfig/ui/optionsdialog.ui:57
msgctxt "optionsdialog|extended_tip|revert"
msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
msgstr ""
-#. r2pWX
+#. xvVsW
+#: cui/uiconfig/ui/optionsdialog.ui:74
+msgctxt "optionsdialog|apply"
+msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
+msgstr ""
+
+#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
+msgctxt "optionsdialog|ok"
+msgid "Save all changes and close dialog."
+msgstr ""
+
+#. r2pWX
+#: cui/uiconfig/ui/optionsdialog.ui:94
msgctxt "optionsdialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
msgstr ""
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
+#. QVDXj
+#: cui/uiconfig/ui/optionsdialog.ui:111
+msgctxt "optionsdialog|cancel"
+msgid "Discard all unsaved changes and close dialog."
+msgstr ""
+
+#. mVmUq
+#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
+msgid "Closes dialog and discards all unsaved changes."
msgstr ""
#. CgiEq
@@ -21090,13 +21037,13 @@ msgid "_Next Tip"
msgstr ""
#. 7GFVf
-#: cui/uiconfig/ui/tipofthedaydialog.ui:107
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
#. oaRzT
-#: cui/uiconfig/ui/tipofthedaydialog.ui:147
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
@@ -21108,79 +21055,79 @@ msgid "Select Your Preferred User Interface"
msgstr ""
#. rSnx7
-#: cui/uiconfig/ui/toolbarmodedialog.ui:30
+#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
msgstr ""
#. kPZub
-#: cui/uiconfig/ui/toolbarmodedialog.ui:46
+#: cui/uiconfig/ui/toolbarmodedialog.ui:49
msgctxt "ToolbarmodeDialog|applymodule"
msgid "A_pply to %MODULE"
msgstr ""
#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:107
+#: cui/uiconfig/ui/toolbarmodedialog.ui:110
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
msgstr ""
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:124
-msgctxt "ToolbarmodeDialog|radiobutton4"
+#. Vsppg
+#: cui/uiconfig/ui/toolbarmodedialog.ui:127
+msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
msgstr ""
+#. DZLbS
+#: cui/uiconfig/ui/toolbarmodedialog.ui:156
+msgctxt "ToolbarmodeDialog|radiobutton3"
+msgid "Single Toolbar"
+msgstr ""
+
+#. KDJfx
+#: cui/uiconfig/ui/toolbarmodedialog.ui:174
+msgctxt "ToolbarmodeDialog|radiobutton4"
+msgid "Sidebar"
+msgstr ""
+
#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:142
+#: cui/uiconfig/ui/toolbarmodedialog.ui:192
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
msgstr ""
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:160
-msgctxt "ToolbarmodeDialog|radiobutton7"
+#. AipCL
+#: cui/uiconfig/ui/toolbarmodedialog.ui:210
+msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
msgstr ""
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:178
-msgctxt "ToolbarmodeDialog|radiobutton6"
+#. qwCAA
+#: cui/uiconfig/ui/toolbarmodedialog.ui:228
+msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
msgstr ""
#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:196
+#: cui/uiconfig/ui/toolbarmodedialog.ui:246
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
msgstr ""
#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:214
+#: cui/uiconfig/ui/toolbarmodedialog.ui:264
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
msgstr ""
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:232
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:250
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:272
+#: cui/uiconfig/ui/toolbarmodedialog.ui:286
msgctxt "ToolbarmodeDialog|leftframe"
msgid "UI variants"
msgstr ""
#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:356
+#: cui/uiconfig/ui/toolbarmodedialog.ui:370
msgctxt "ToolbarmodeDialog|rightframe"
msgid "Preview"
msgstr ""
diff --git a/source/bn-IN/dbaccess/messages.po b/source/bn-IN/dbaccess/messages.po
index 56a456bfd8f..baca7df2033 100644
--- a/source/bn-IN/dbaccess/messages.po
+++ b/source/bn-IN/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-17 15:58+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2018-11-11 07:30+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3369,13 +3369,13 @@ msgid "Select the type of database to which you want to establish a connection."
msgstr "অাপনি যে ধরনের ডেটাবেসে সংযোগ করতে চান তা নির্বাচন করুন।"
#. YBtFA
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:32
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:34
msgctxt "generalpagedialog|datasourceTypeLabel"
msgid "Database _type:"
msgstr "ডাটাবেসের ধরন (_t):"
#. CBhUu
-#: dbaccess/uiconfig/ui/generalpagedialog.ui:60
+#: dbaccess/uiconfig/ui/generalpagedialog.ui:62
msgctxt "generalpagedialog|datasourceTypeHelp"
msgid ""
"On the following pages, you can make detailed settings for the connection.\n"
diff --git a/source/bn-IN/framework/messages.po b/source/bn-IN/framework/messages.po
index 0ec9d8726f4..3ac10b0a52f 100644
--- a/source/bn-IN/framework/messages.po
+++ b/source/bn-IN/framework/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-01-19 13:13+0100\n"
+"POT-Creation-Date: 2021-03-08 14:39+0100\n"
"PO-Revision-Date: 2018-11-11 05:27+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -223,6 +223,126 @@ msgctxt "STR_LANGSTATUS_HINT"
msgid "Text Language. Right-click to set character or paragraph language"
msgstr "পাঠ্য ভাষা। অক্ষর বা অনুচ্ছেদ ভাষা সেট করতে ডান-ক্লিক করুন"
+#. ZGDAr
+#: framework/inc/strings.hrc:57
+msgctxt "RID_STR_PROPTITLE_EDIT"
+msgid "Text Box"
+msgstr ""
+
+#. CBmAL
+#: framework/inc/strings.hrc:58
+msgctxt "RID_STR_PROPTITLE_CHECKBOX"
+msgid "Check Box"
+msgstr ""
+
+#. xwuJF
+#: framework/inc/strings.hrc:59
+msgctxt "RID_STR_PROPTITLE_COMBOBOX"
+msgid "Combo Box"
+msgstr ""
+
+#. WiNUf
+#: framework/inc/strings.hrc:60
+msgctxt "RID_STR_PROPTITLE_LISTBOX"
+msgid "List Box"
+msgstr ""
+
+#. a7gAj
+#: framework/inc/strings.hrc:61
+msgctxt "RID_STR_PROPTITLE_DATEFIELD"
+msgid "Date Field"
+msgstr ""
+
+#. EaBTj
+#: framework/inc/strings.hrc:62
+msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
+msgid "Time Field"
+msgstr ""
+
+#. DWfsm
+#: framework/inc/strings.hrc:63
+msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
+msgid "Numeric Field"
+msgstr ""
+
+#. TYjnr
+#: framework/inc/strings.hrc:64
+msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
+msgid "Currency Field"
+msgstr ""
+
+#. B6MEP
+#: framework/inc/strings.hrc:65
+msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
+msgid "Pattern Field"
+msgstr ""
+
+#. DEn9D
+#: framework/inc/strings.hrc:66
+msgctxt "RID_STR_PROPTITLE_FORMATTED"
+msgid "Formatted Field"
+msgstr ""
+
+#. V4iMu
+#: framework/inc/strings.hrc:68
+msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
+msgid "Push Button"
+msgstr ""
+
+#. TreFC
+#: framework/inc/strings.hrc:69
+msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
+msgid "Option Button"
+msgstr ""
+
+#. NFysA
+#: framework/inc/strings.hrc:70
+msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
+msgid "Label Field"
+msgstr ""
+
+#. E5mMK
+#: framework/inc/strings.hrc:71
+msgctxt "RID_STR_PROPTITLE_GROUPBOX"
+msgid "Group Box"
+msgstr ""
+
+#. 5474w
+#: framework/inc/strings.hrc:72
+msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
+msgid "Image Button"
+msgstr ""
+
+#. qT2Ed
+#: framework/inc/strings.hrc:73
+msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
+msgid "Image Control"
+msgstr ""
+
+#. 6Qvho
+#: framework/inc/strings.hrc:74
+msgctxt "RID_STR_PROPTITLE_FILECONTROL"
+msgid "File Selection"
+msgstr ""
+
+#. 3SUEn
+#: framework/inc/strings.hrc:75
+msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
+msgid "Scrollbar"
+msgstr ""
+
+#. VtEN6
+#: framework/inc/strings.hrc:76
+msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
+msgid "Spin Button"
+msgstr ""
+
+#. eGgm4
+#: framework/inc/strings.hrc:77
+msgctxt "RID_STR_PROPTITLE_NAVBAR"
+msgid "Navigation Bar"
+msgstr ""
+
#. wH3TZ
msgctxt "stock"
msgid "_Add"
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/python.po b/source/bn-IN/helpcontent2/source/text/sbasic/python.po
index a4575334b60..b21d45bbe95 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/python.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-02-22 17:17+0100\n"
+"POT-Creation-Date: 2021-03-19 17:31+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"
@@ -166,13 +166,13 @@ msgctxt ""
msgid "It is recommended to have knowledge of Python standard modules and %PRODUCTNAME API features prior to perform inter-language calls from Python to Basic, JavaScript or any other script engine."
msgstr ""
-#. yXTrk
+#. Sffwq
#: python_2_basic.xhp
msgctxt ""
"python_2_basic.xhp\n"
"N0338\n"
"help.text"
-msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME nested Basic engine may be absent. Avoid Python to %PRODUCTNAME Basic calls in such context. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
+msgid "When running Python scripts from an Integrated Development Environment (IDE), the %PRODUCTNAME-embedded Basic engine may be absent. Avoid Python-to-%PRODUCTNAME Basic calls in such contexts. However Python environment and Universal Networks Objects (UNO) are fully available. Refer to <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">Setting Up an Integrated IDE for Python</link> for more information."
msgstr ""
#. NcuDF
@@ -445,13 +445,13 @@ msgctxt ""
msgid "My Macros or %PRODUCTNAME Macros dialogs"
msgstr ""
-#. jCE4m
+#. pcUEy
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0339\n"
"help.text"
-msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. ChW9B
@@ -463,13 +463,13 @@ msgctxt ""
msgid "Document embedded dialogs"
msgstr ""
-#. SsPGJ
+#. uHH6H
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0365\n"
"help.text"
-msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools - Macros - Run Macro</menuitem> menu:"
msgstr ""
#. mMo7w
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
index 4c2484a5eab..292d3e3188a 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po